summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/commit.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/pages/commit.scss
parent994530270899ae904fbf5a77b602990b8cd79c67 (diff)
downloadgitlab-ce-d6d22a5dbd2ee04b59b2a80b3b6228575c3ea3ec.tar.gz
Enable ColorVariable in scss-lint
Diffstat (limited to 'app/assets/stylesheets/pages/commit.scss')
-rw-r--r--app/assets/stylesheets/pages/commit.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/stylesheets/pages/commit.scss b/app/assets/stylesheets/pages/commit.scss
index ddc9d0e2b1a..bf656d0e28e 100644
--- a/app/assets/stylesheets/pages/commit.scss
+++ b/app/assets/stylesheets/pages/commit.scss
@@ -5,7 +5,7 @@
.commit-author,
.commit-committer {
display: block;
- color: #999;
+ color: $commit-committer-color;
font-weight: normal;
font-style: italic;
}
@@ -113,17 +113,17 @@
overflow: hidden; // See https://gitlab.com/gitlab-org/gitlab-ce/issues/13987
.max-width-marker {
width: 72ch;
- color: rgba(0, 0, 0, 0.0);
+ color: $commit-max-width-marker-color;
font-family: inherit;
left: $left;
height: 100%;
- border-right: 1px solid mix($input-border, white);
+ border-right: 1px solid mix($input-border, $white-light);
position: absolute;
z-index: 1;
}
> textarea {
- background-color: rgba(0, 0, 0, 0.0);
+ background-color: $commit-message-text-area-bg;
font-family: inherit;
padding-left: $left;
position: relative;