feat: exclude html for aria-busy

#349
This commit is contained in:
Lucas Larroche 2023-04-23 10:44:33 +07:00
parent 7e22e16910
commit 960e793bb2
10 changed files with 16 additions and 16 deletions

View file

@ -2334,7 +2334,7 @@ form[role=search], form[role=group] {
/**
* Loading ([aria-busy=true])
*/
[aria-busy=true]:not(input, select, textarea)::before {
[aria-busy=true]:not(input, select, textarea, html)::before {
display: inline-block;
width: 1em;
height: 1em;
@ -2344,11 +2344,11 @@ form[role=search], form[role=group] {
content: "";
vertical-align: -0.125em;
}
[aria-busy=true]:not(input, select, textarea):not(:empty)::before {
[aria-busy=true]:not(input, select, textarea, html):not(:empty)::before {
-webkit-margin-end: calc(var(--pico-spacing) * 0.5);
margin-inline-end: calc(var(--pico-spacing) * 0.5);
}
[aria-busy=true]:not(input, select, textarea):empty {
[aria-busy=true]:not(input, select, textarea, html):empty {
text-align: center;
}