@freshworks/crayons
Version:
Crayons Web Components library
144 lines (136 loc) • 3.09 kB
CSS
/* Need to check with designer */
/* Need to check with designer */
:host {
font-family: var(--fw-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
/* stylelint-disable a11y/media-prefers-reduced-motion */
.modal-overlay {
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
z-index: 990;
background-color: rgba(18, 52, 77, 0.5);
align-items: center;
justify-content: center;
transition: all 0.3s linear;
}
.modal {
position: relative;
display: flex;
max-height: 70vh;
background: #fff;
box-shadow: 0px 2px 18px rgba(18, 52, 77, 0.2);
border-radius: 4px;
z-index: 999;
animation: "modal-entry" 0.5s 1;
overflow-wrap: anywhere;
word-break: break-word;
white-space: normal;
}
.modal .modal-container {
position: relative;
width: 100%;
display: flex;
flex-direction: column;
}
.modal .modal-container .content {
padding: 0px 32px 32px;
overflow: visible;
box-sizing: border-box;
}
.modal .close-btn {
background-color: transparent;
background-image: none;
border: 1px solid transparent;
color: #264966;
padding: 4px 6px;
min-width: 16px;
height: 24px;
position: absolute;
top: 8px;
right: 8px;
transition: all 0.3s;
z-index: 1;
}
.modal .close-btn:hover, .modal .close-btn:focus {
background-color: #ebeff3;
border-radius: 4px;
border-color: #ebeff3;
cursor: pointer;
}
.standard {
width: 512px;
}
.small {
width: 424px;
}
.large {
width: 800px;
}
.modal-overlay.slider {
justify-content: flex-end;
}
.modal-overlay.slider .modal {
height: 100vh;
max-height: 100vh;
border-radius: 0px;
width: 600px;
animation: "modal-entry-right" 0.5s 1;
}
.modal-overlay.slider .modal .close-btn {
height: 24px;
width: 24px;
box-sizing: border-box;
top: 0px;
right: 600px;
background-color: #12344d;
border-radius: 2px 0px 0px 2px;
padding: 0px;
margin: 0px;
line-height: 24px;
text-align: center;
}
.modal-overlay.slider .modal .close-btn:hover, .modal-overlay.slider .modal .close-btn:focus, .modal-overlay.slider .modal .close-btn:focus-visible {
background-color: #12344d;
border-radius: 2px 0px 0px 2px;
border-color: #12344d;
outline: 0px;
}
.modal-overlay.slider .modal .close-btn:focus, .modal-overlay.slider .modal .close-btn:focus-visible {
border: 1px solid #2c5cc5;
box-shadow: #2c5cc5 0px 0px 0px 1px;
}
.modal-overlay.slider .modal .close-btn fw-icon {
height: 12px;
width: 12px;
}
.modal-overlay.slider .modal.small, .modal-overlay.slider .modal.standard, .modal-overlay.slider .modal.large {
width: 600px;
}
.visible {
display: flex;
}
@keyframes modal-entry {
0% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
@keyframes modal-entry-right {
0% {
transform: translateX(calc(100% - 520px));
}
100% {
transform: translateX(0);
}
}