Commit e633688f authored by Didem Acet's avatar Didem Acet

Fix SCSS linter errors.

parent 39754c6c
...@@ -56,25 +56,26 @@ ul.related-merge-requests > li { ...@@ -56,25 +56,26 @@ ul.related-merge-requests > li {
.merge-request-status { .merge-request-status {
font-size: 13px; font-size: 13px;
padding: 0px 5px; padding: 0 5px;
color: #FFF; color: $white-light;
height: 20px; height: 20px;
border-radius: 3px; border-radius: 3px;
line-height: 18px; line-height: 18px;
border: 1px solid;
&.merged { &.merged {
border: 1px solid #2A96CC; border-color: darken($blue-normal, 10%);
background: #2D9FD8; background: $blue-normal;
} }
&.closed { &.closed {
border: 1px solid #C5254D; border-color: darken($red-normal, 10%);
background: #D62954; background: $red-normal;
} }
&.open { &.open {
border: 1px solid #2EA65E; border: 1px solid darken($green-normal, 10%);
background: #31AF64; background: $green-normal;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment