summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/notify.scss
diff options
context:
space:
mode:
authorSam Rose <samrose3@gmail.com>2016-11-30 08:25:25 -0500
committerSam Rose <samrose3@gmail.com>2016-12-01 20:22:51 -0500
commitd6d22a5dbd2ee04b59b2a80b3b6228575c3ea3ec (patch)
tree4a9d214e6877c9432494d12532072a0e6432ea57 /app/assets/stylesheets/notify.scss
parent994530270899ae904fbf5a77b602990b8cd79c67 (diff)
downloadgitlab-ce-d6d22a5dbd2ee04b59b2a80b3b6228575c3ea3ec.tar.gz
Enable ColorVariable in scss-lint
Diffstat (limited to 'app/assets/stylesheets/notify.scss')
-rw-r--r--app/assets/stylesheets/notify.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/stylesheets/notify.scss b/app/assets/stylesheets/notify.scss
index ced8c4a9907..ddc382362f7 100644
--- a/app/assets/stylesheets/notify.scss
+++ b/app/assets/stylesheets/notify.scss
@@ -1,3 +1,5 @@
+@import "framework/variables";
+
img {
max-width: 100%;
height: auto;
@@ -5,12 +7,12 @@ img {
p.details {
font-style: italic;
- color: #777;
+ color: $notify-details;
}
.footer > p {
font-size: small;
- color: #777;
+ color: $notify-footer;
}
pre.commit-message {
@@ -21,10 +23,10 @@ pre.commit-message {
text-decoration: none;
> .new-file {
- color: #090;
+ color: $notify-new-file;
}
> .deleted-file {
- color: #b00;
+ color: $notify-deleted-file;
}
}