mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 10:15:37 +03:00
Fix button display specificity
This commit is contained in:
parent
6dd54633e0
commit
60fdd3f522
1 changed files with 4 additions and 1 deletions
|
@ -203,7 +203,7 @@ textarea {
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
button:not([hidden]),
|
||||
button,
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 8px 12px;
|
||||
|
@ -216,6 +216,9 @@ button:not([hidden]),
|
|||
text-decoration: none;
|
||||
user-select: none;
|
||||
}
|
||||
button[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
:is(button, .button) > * {
|
||||
vertical-align: middle;
|
||||
pointer-events: none;
|
||||
|
|
Loading…
Reference in a new issue