scss: simplify grid input selector (#73522)

This commit is contained in:
Frédéric Péters 2023-01-17 18:25:06 +01:00 committed by Gitea
parent 90ae7f3b34
commit fd3dccc629
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ div[class*=' grid-'] {
padding-right: 0;
}
}
table, textarea, select, input[type=text], input[type=password], input[type=email], input[type=url], input[type=tel], input[type=number], input[type=search], input[type=file], input[type=date], input[type=datetime-local], input[type=month], input[type=time], input[type=week] {
table, textarea, select, input:not([type=checkbox]):not([type=radio]) {
width: 100%;
}
.select2-container {