Add widget-drop-down for Air

This commit is contained in:
Geoffrey D. Bennett
2024-01-20 19:07:16 +10:30
parent ade852163b
commit bc9d8867f3
4 changed files with 230 additions and 1 deletions

View File

@@ -50,6 +50,11 @@ button:disabled {
color: #505050;
}
/* Stop text shadows on buttons from being applied to the popup menu */
button > label > * {
text-shadow: none;
}
/* Button controls that are always disabled because they indicate status */
button.fixed {
color: #ffffff;
@@ -94,10 +99,22 @@ button.inst:checked {
text-shadow: 0 0 5px #00c000, 0 0 15px #00c000;
}
/* Air Checked (Gen 3) */
button.air:checked {
text-shadow: 0 0 5px #ffc000, 0 0 15px #ffc000;
}
/* Air Selections (Gen 4) */
button.air.selected-presence > label {
color: #ffffff;
text-shadow: 0 0 5px #00c000, 0 0 15px #00c000;
}
button.air.selected-presencedrive > label {
color: #ffffff;
text-shadow: 0 0 5px #ffc000, 0 0 15px #ffc000;
}
button.pad:checked {
text-shadow: 0 0 5px #00c000, 0 0 15px #00c000;
}