mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-25 09:18:51 +01: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%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:not([hidden]),
|
button,
|
||||||
.button {
|
.button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
|
@ -216,6 +216,9 @@ button:not([hidden]),
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
button[hidden] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
:is(button, .button) > * {
|
:is(button, .button) > * {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
Loading…
Reference in a new issue