mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-13 13:16:36 +02:00
[ticket/17010] Add button disabled state CSS
PHPBB3-17010
This commit is contained in:
@ -32,6 +32,20 @@
|
|||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button[disabled],
|
||||||
|
.button[disabled]:hover,
|
||||||
|
.button.disabled,
|
||||||
|
.button.disabled:hover {
|
||||||
|
background: #eee;
|
||||||
|
color: #aaa;
|
||||||
|
border-color: #aaa;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.caret {
|
.caret {
|
||||||
border-left: 1px solid;
|
border-left: 1px solid;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -697,6 +697,15 @@ dd.profile-warnings {
|
|||||||
color: #d41142;
|
color: #d41142;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button[disabled],
|
||||||
|
.button[disabled]:hover,
|
||||||
|
.button.disabled,
|
||||||
|
.button.disabled:hover {
|
||||||
|
background: #e0e0e0;
|
||||||
|
color: #9e9e9e;
|
||||||
|
border-color: #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
.button .icon,
|
.button .icon,
|
||||||
.button-secondary,
|
.button-secondary,
|
||||||
.c-button-icon {
|
.c-button-icon {
|
||||||
|
Reference in New Issue
Block a user