Skip to content
Snippets Groups Projects
Unverified Commit 5139a19e authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray
Browse files

Update styling of all disabled buttons

parent f17d7a4b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -173,13 +173,14 @@
}
 
&.user-authored {
cursor: default;
opacity: 0.65;
&:hover,
&:active {
background-color: $white-light;
border-color: $border-color;
cursor: not-allowed;
background-color: $gray-light;
border-color: $theme-gray-200;
color: $gl-text-color-disabled;
gl-emoji {
opacity: 0.4;
filter: grayscale(100%);
}
}
 
Loading
Loading
Loading
Loading
@@ -450,3 +450,20 @@
.btn-svg svg {
@include btn-svg;
}
// All disabled buttons, regardless of color
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn,
.dropdown-toggle[disabled],
[disabled].dropdown-menu-toggle {
background-color: $gray-light;
border-color: $theme-gray-200;
color: $gl-text-color-disabled;
opacity: 1;
cursor: not-allowed;
i {
color: $gl-text-color-disabled;
}
}
Loading
Loading
@@ -63,11 +63,6 @@
border-radius: $border-radius-base;
white-space: nowrap;
 
&[disabled] {
opacity: .65;
cursor: not-allowed;
}
&.no-outline {
outline: 0;
}
Loading
Loading
Loading
Loading
@@ -164,6 +164,7 @@ $gl-text-color-tertiary: #949494;
$gl-text-color-quaternary: #d6d6d6;
$gl-text-color-inverted: rgba(255, 255, 255, 1);
$gl-text-color-secondary-inverted: rgba(255, 255, 255, .85);
$gl-text-color-disabled: #919191;
$gl-text-green: $green-600;
$gl-text-green-hover: $green-700;
$gl-text-red: $red-500;
Loading
Loading
Loading
Loading
@@ -391,11 +391,17 @@
.dropdown-toggle {
float: right;
 
.toggle-icon {
i {
color: $white-light;
padding-right: 2px;
margin-top: 2px;
}
&[disabled] {
i {
color: $gl-text-color-disabled;
}
}
}
 
.dropdown-menu {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment