summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2017-11-02 15:08:10 -0600
committerMayra Cabrera <mcabrera@gitlab.com>2017-11-02 19:21:00 -0600
commit4585f358b923bb9b4ab36a0c3e4682b060e088a7 (patch)
treeb7ce667a4aee2ff0c09e3a0f83e18d3ba4290927 /app/assets/stylesheets
parent244bec9101ff754291e2c02d9844e0879ff5fa2f (diff)
downloadgitlab-ce-4585f358b923bb9b4ab36a0c3e4682b060e088a7.tar.gz
Add styles for branch & tags boxes
- Create a partial for limit exceeded message - Modifies specs to adjust new scenarios
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/framework/wells.scss41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/wells.scss b/app/assets/stylesheets/framework/wells.scss
index 5f9756bf58a..556485c2f3b 100644
--- a/app/assets/stylesheets/framework/wells.scss
+++ b/app/assets/stylesheets/framework/wells.scss
@@ -52,6 +52,47 @@
.label.label-gray {
background-color: $well-expand-item;
}
+
+ .limit-box-branch {
+ width: 160px;
+ }
+
+ .limit-box-tag {
+ width: 125px;
+ }
+
+ .branches {
+ display: inline;
+ }
+
+ .limit-box {
+ background: $blue-100;
+ border-radius: 3px;
+ display: inline-block;
+ margin-left: 5px;
+ padding: 1px 1px 0.5px 0;
+ text-align: center;
+ vertical-align: bottom;
+
+ &:hover {
+ background: $blue-200;
+ }
+
+ .limit-icon {
+ float: left;
+ width: 15%;
+ }
+
+ .limit-message {
+ background: $white-light;
+ border-radius: 0 3px 3px 0;
+ font-family: $regular_font;
+ font-size: 12px;
+ float: right;
+ margin-top: 1px;
+ width: 85%;
+ }
+ }
}
.light-well {