forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
96 lines
2.1 KiB
SCSS
96 lines
2.1 KiB
SCSS
.ui-dialog {
|
|
.ui-corner-all.ui-dialog-titlebar-close {
|
|
position: absolute;
|
|
width: 20px;
|
|
}
|
|
.ui-widget-content.ui-dialog-content {
|
|
overflow: auto;
|
|
padding: 1em;
|
|
background: #fff;
|
|
}
|
|
font-family: Inter, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1em;
|
|
&:not(.ui-dialog-off-canvas) {
|
|
overflow: visible;
|
|
}
|
|
.ui-icon-closethick {
|
|
background-color: #ffffff !important;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
p {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
&-titlebar {
|
|
background: #1b1b1d !important;
|
|
height: $offcanvasTitleHeight !important;
|
|
position: relative !important;
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
&-title {
|
|
padding-right: 20px;
|
|
color: #ffffff !important;
|
|
font-weight: 500 !important;
|
|
margin-top: 1em !important;
|
|
margin-bottom: 1em !important;
|
|
text-shadow: none !important;
|
|
font-size: 1.231em !important;
|
|
}
|
|
|
|
z-index: 101;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
height: 100%;
|
|
background: var(--gin-bg-layer);
|
|
-webkit-box-shadow: 0 0 48px rgba(0, 0, 0, 0.075);
|
|
box-shadow: 0 0 48px rgba(0, 0, 0, 0.075);
|
|
border-left: 1px solid var(--gin-border-color-layer);
|
|
}
|
|
|
|
.ui-dialog-content,
|
|
.ui-dialog-off-canvas .ui-dialog-titlebar {
|
|
background: var(--gin-bg-layer) !important;
|
|
color: var(--gin-color-text) !important;
|
|
}
|
|
|
|
.ui-dialog-off-canvas {
|
|
|
|
.ui-dialog-title {
|
|
color: var(--gin-color-title) !important;
|
|
}
|
|
.ui-icon-closethick {
|
|
background-color: var(--gin-color-text) !important;
|
|
}
|
|
}
|
|
|
|
#drupal-off-canvas.ui-dialog-content div {
|
|
color: var(--gin-color-text);
|
|
}
|
|
|
|
#drupal-off-canvas {
|
|
width: calc(100%) !important;
|
|
height: calc(100% - #{$offcanvasTitleHeight}) !important;
|
|
padding-left: $offcanvasPadding !important;
|
|
padding-right: $offcanvasPadding !important;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ui-dialog-off-canvas #drupal-off-canvas {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0 20px 0px !important;
|
|
}
|
|
|
|
#drupal-modal form > .form-actions {
|
|
display: none;
|
|
}
|