diff options
author | tauriedavis <taurie@gitlab.com> | 2017-11-07 12:36:07 -0800 |
---|---|---|
committer | tauriedavis <taurie@gitlab.com> | 2017-11-07 12:36:07 -0800 |
commit | 2acfb6141e5f8f8335a62b7ce46f0383b7763765 (patch) | |
tree | 117888131b932e1b616138b093248977fa08f785 /app | |
parent | 28fcf777c84ed5204719247fc5d7499de9305986 (diff) | |
download | gitlab-ce-2acfb6141e5f8f8335a62b7ce46f0383b7763765.tar.gz |
Simplify design for no tags, branches
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/wells.scss | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/app/assets/stylesheets/framework/wells.scss b/app/assets/stylesheets/framework/wells.scss index d3c116920ce..cae10f20b7a 100644 --- a/app/assets/stylesheets/framework/wells.scss +++ b/app/assets/stylesheets/framework/wells.scss @@ -53,14 +53,6 @@ background-color: $well-expand-item; } - .limit-box-branch { - width: 160px; - } - - .limit-box-tag { - width: 125px; - } - .branches { display: inline; } @@ -72,27 +64,22 @@ .limit-box { display: inline-flex; align-items: center; - padding: 1px; - background-color: $blue-100; + background-color: $red-100; border-radius: $border-radius-default; text-align: center; &:hover { - background-color: $blue-200; + background-color: $red-200; } .limit-icon { - width: 20px; + margin: 0 8px; } .limit-message { @include str-truncated(100%); - flex: 1; line-height: 16px; - margin-right: 2px; - background-color: $white-light; - border-top-right-radius: $border-radius-default; - border-bottom-right-radius: $border-radius-default; + margin-right: 8px; font-size: 12px; } } |