Simplification css

Utiliser :is(...)  permet de factoriser
This commit is contained in:
Vincent Vandemeulebrouck 2022-11-01 23:45:17 +01:00
parent afb0f58ec1
commit 42e4f5b391
1 changed files with 7 additions and 1 deletions

View File

@ -623,7 +623,13 @@ input:is(.blessure-premiers_soins, .blessure-soins_complets) {
color: rgba(255, 255, 255, 1);
}
.window-app.sheet .window-content .sheet-header input[type="text"], .window-app.sheet .window-content .sheet-header input[type="number"], .window-app.sheet .window-content .sheet-header input[type="password"], .window-app.sheet .window-content .sheet-header input[type="date"], .window-app.sheet .window-content .sheet-header input[type="time"] {
.window-app.sheet .window-content .sheet-header :is(
input[type="text"],
input[type="number"],
input[type="password"],
input[type="datetime-local"],
input[type="date"],
input[type="time"]) {
color: rgba(255, 255, 255, 0.75);
background: rgba(255, 255, 255, 0.05);
border: 0 none;