Feat/SW-1368 1369 Guarantee late arrival * feat(SW-1368-SW-1369): guarantee late arrival for confirmation page and my stay * feat(SW-1368-SW-1369): guarantee late arrival updated design * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): fix merge with master * feat(SW-1368-SW-1369): add translations * feat(SW-1368-SW-1369): add redirect with refId * feat(SW-1368-SW-1369): if booking completed redirect to confirmation page * feat(SW-1368-SW-1369): fix comments pr * feat(SW-1368-SW-1369): fix comments pr * feat(SW-1368-SW-1369): fix rebase master * feat(SW-1368-SW-1369): fix duplicate flex rate check * feat(SW-1368-SW-1369): if any room is flex, card must be used * feat(SW-1368-SW-1369): move callback route * feat(SW-1368-SW-1369): top align checkbox * feat(SW-1368-SW-1369): top align checkbox Approved-by: Tobias Johansson Approved-by: Niclas Edenvin
49 lines
990 B
CSS
49 lines
990 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--text-color);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container[data-selected] .checkbox {
|
|
border: none;
|
|
background: var(--UI-Input-Controls-Fill-Selected);
|
|
}
|
|
|
|
.container[data-disabled] .checkbox {
|
|
border: 1px solid var(--UI-Input-Controls-Border-Disabled);
|
|
background: var(--UI-Input-Controls-Surface-Disabled);
|
|
}
|
|
|
|
.checkboxContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.checkbox {
|
|
width: 24px;
|
|
height: 24px;
|
|
min-width: 24px;
|
|
background: var(--UI-Input-Controls-Surface-Normal);
|
|
border: 1px solid var(--UI-Input-Controls-Border-Normal);
|
|
border-radius: 4px;
|
|
transition: all 200ms;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
forced-color-adjust: none;
|
|
}
|
|
|
|
.topAlign {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.error {
|
|
align-items: center;
|
|
color: var(--Scandic-Red-60);
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
margin: var(--Spacing-x1) 0 0;
|
|
}
|