refactor: :not() selectors

This commit is contained in:
Lucas Larroche 2022-09-11 18:30:49 +07:00
parent 844a5fcf84
commit 17b3b4cead
31 changed files with 144 additions and 150 deletions

View file

@ -9,7 +9,7 @@
}
// Everyting except form elements
[aria-busy="true"]:not(input):not(select):not(textarea) {
[aria-busy="true"]:not(input, select, textarea) {
&::before {
display: inline-block;

View file

@ -5,7 +5,7 @@
[data-tooltip] {
position: relative;
&:not(a):not(button):not(input) {
&:not(a, button, input) {
border-bottom: 1px dotted;
text-decoration: none;
cursor: help;