Merged in fix/SW-3095-state-ui-booking-widget (pull request #2559)

Fix/SW-3095 state ui booking widget

* fix(SW-3095): remove active color on mobile for guest picker

* fix: SW-3095 Fixed hover state visible after click outside


Approved-by: Erik Tiekstra
This commit is contained in:
Hrishikesh Vaipurkar
2025-07-16 09:22:10 +00:00
parent 1d785a40a5
commit a18e736cc4

View File

@@ -30,7 +30,7 @@
color: var(--Text-Accent-Primary); color: var(--Text-Accent-Primary);
} }
.when:has([data-isopen="true"]) .label, .when:has([data-isopen="true"]) .label,
.rooms:has([data-focused="true"], [data-pressed="true"]) .label { .rooms:has([data-pressed="true"]) .label {
color: var(--Text-Interactive-Focus); color: var(--Text-Interactive-Focus);
} }
@@ -114,9 +114,10 @@
background-color: var(--Surface-Primary-Hover); background-color: var(--Surface-Primary-Hover);
} }
.when:has([data-isopen="true"]), .when:has([data-isopen="true"]),
.rooms:has([data-focused="true"], [data-pressed="true"]) { .rooms:has([data-focus-visible="true"], [data-pressed="true"]) {
background-color: var(--Surface-Primary-Hover); background-color: var(--Surface-Primary-Hover);
border: 1px solid var(--Border-Interactive-Focus); border: 1px solid var(--Border-Interactive-Focus);
color: var(--Text-Interactive-Focus);
} }
.where { .where {