Commit 9c7c3a56 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Merge branch 'remove-important-clauses-from-disabled-button-styles' into 'master'

Remove !important clauses from button disabled styles

See merge request gitlab-org/gitlab!34955
parents 038953d2 f65a2a73
......@@ -171,7 +171,7 @@
@include btn-green;
}
&.btn-inverted {
&.btn-inverted:not(.disabled):not(:disabled) {
&.btn-success {
@include btn-outline($white, $green-600, $green-500, $green-100, $green-700, $green-500, $green-200, $green-600, $green-800);
}
......@@ -501,18 +501,19 @@
// All disabled buttons, regardless of color, type, etc
%disabled {
background-color: $gray-light !important;
border-color: $gray-200 !important;
color: $gl-text-color-disabled !important;
opacity: 1 !important;
cursor: default !important;
background-color: $gray-light;
border-color: $gray-200;
color: $gl-text-color-disabled;
opacity: 1;
text-decoration: none;
cursor: default;
&.cursor-not-allowed {
cursor: not-allowed !important;
cursor: not-allowed;
}
i {
color: $gl-text-color-disabled !important;
color: $gl-text-color-disabled;
}
}
......@@ -526,6 +527,10 @@ fieldset[disabled] .btn,
&:hover {
@extend %disabled;
}
&.btn-link {
background-color: transparent;
}
}
[readonly] {
......
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