Merge branch 'change-dashed-border-button-color' into 'master'
Changed dashed border button color to be darker See merge request gitlab-org/gitlab-ce!14041
This commit is contained in:
commit
66773772ed
3 changed files with 8 additions and 1 deletions
|
@ -13,6 +13,7 @@ $sidebar-breakpoint: 1024px;
|
|||
$darken-normal-factor: 7%;
|
||||
$darken-dark-factor: 10%;
|
||||
$darken-border-factor: 5%;
|
||||
$darken-border-dashed-factor: 25%;
|
||||
|
||||
$white-light: #fff;
|
||||
$white-normal: #f0f0f0;
|
||||
|
@ -134,6 +135,7 @@ $border-white-normal: darken($white-normal, $darken-border-factor);
|
|||
|
||||
$border-gray-light: darken($gray-light, $darken-border-factor);
|
||||
$border-gray-normal: darken($gray-normal, $darken-border-factor);
|
||||
$border-gray-normal-dashed: darken($gray-normal, $darken-border-dashed-factor);
|
||||
$border-gray-dark: darken($white-normal, $darken-border-factor);
|
||||
|
||||
/*
|
||||
|
|
|
@ -752,7 +752,7 @@ a.deploy-project-label {
|
|||
}
|
||||
|
||||
li.missing {
|
||||
border: 1px dashed $border-gray-normal;
|
||||
border: 1px dashed $border-gray-normal-dashed;
|
||||
border-radius: $border-radius-default;
|
||||
|
||||
a {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: changed dashed border button color to be darker
|
||||
merge_request: !14041
|
||||
author:
|
||||
type: other
|
Loading…
Reference in a new issue