* fix(BOOK-113): Updated hover colors after blend/mix has been removed Approved-by: Christel Westerberg
106 lines
1.8 KiB
CSS
106 lines
1.8 KiB
CSS
.buttonWrapper {
|
|
padding: var(--Space-x15) var(--Space-x2);
|
|
display: flex;
|
|
background-color: var(--Component-Button-Brand-Primary-On-fill-Default);
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.button {
|
|
display: flex;
|
|
border-width: 0;
|
|
padding: 0;
|
|
gap: var(--Space-x1);
|
|
align-items: center;
|
|
background-color: transparent;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.fakeInput {
|
|
display: grid;
|
|
justify-items: start;
|
|
padding: var(--Space-x1) var(--Space-x15);
|
|
background-color: var(--Surface-Primary-OnSurface-Default);
|
|
border-radius: var(--Corner-radius-md);
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.fakePlaceholder {
|
|
color: var(--Text-Interactive-Placeholder);
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: var(--Overlay-40);
|
|
|
|
&[data-entering] {
|
|
animation: overlay-fade 200ms;
|
|
}
|
|
|
|
&[data-exiting] {
|
|
animation: overlay-fade 150ms reverse ease-in;
|
|
}
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
border-radius: var(--Corner-radius-md) var(--Corner-radius-md) 0 0;
|
|
background-color: var(--Surface-Primary-Default);
|
|
box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
&[data-entering] {
|
|
animation: modal-anim 200ms;
|
|
}
|
|
|
|
&[data-exiting] {
|
|
animation: modal-anim 150ms reverse ease-in;
|
|
}
|
|
}
|
|
|
|
.dialog {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: var(--Space-x2);
|
|
overflow-y: auto;
|
|
height: 95dvh;
|
|
padding: var(--Space-x3) 0;
|
|
}
|
|
|
|
.closeButtonWrapper {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: var(--max-width-page);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Meeting booking widget changes design at 948px */
|
|
@media screen and (min-width: 948px) {
|
|
.overlay {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@keyframes overlay-fade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes modal-anim {
|
|
from {
|
|
transform: translateY(100%);
|
|
}
|
|
|
|
to {
|
|
transform: translateY(0);
|
|
}
|
|
}
|