Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2017-08-15 22:43:56 +0300
committerJacob Schatz <jschatz@gitlab.com>2017-08-15 22:43:56 +0300
commit8615e78560837ec6b802c64fa81e621d5a4c0949 (patch)
treeaf692525b7742680054bb161ae58f9ece092abd8 /app/assets/stylesheets/pages/issuable.scss
parent6990c48b065bba8f6c0219383ba23558fd388be5 (diff)
parentfd84e9f0346121afbc07be473259ede7e8a43e68 (diff)
Merge branch '36134_confi_touch_up' into 'master'
Use border radius scss vars See merge request !13360
Diffstat (limited to 'app/assets/stylesheets/pages/issuable.scss')
-rw-r--r--app/assets/stylesheets/pages/issuable.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index d14b976374c..87eaf27663f 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -8,13 +8,13 @@
.is-confidential {
color: $orange-600;
background-color: $orange-50;
- border-radius: 3px;
+ border-radius: $border-radius-default;
padding: 5px;
margin: 0 3px 0 -4px;
}
.is-not-confidential {
- border-radius: 3px;
+ border-radius: $border-radius-default;
padding: 5px;
margin: 0 3px 0 -4px;
}