mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* resize alerts and modals * fix log color * closes #1404 Co-authored-by: Matt Hill <matthill@Matt-M1.local>
103 lines
1.8 KiB
SCSS
103 lines
1.8 KiB
SCSS
$wide-modal: 900px;
|
|
|
|
ion-input {
|
|
caret-color: gray;
|
|
}
|
|
|
|
ion-alert {
|
|
.alert-wrapper {
|
|
--min-width: 320px;
|
|
}
|
|
}
|
|
|
|
ion-modal::part(content) {
|
|
position: absolute;
|
|
height: 90% !important;
|
|
top: 5%;
|
|
width: 90% !important;
|
|
left: 5%;
|
|
display: block;
|
|
|
|
border-radius: 6px;
|
|
border: 2px solid rgba(255, 255, 255, 0.03);
|
|
box-shadow: 0 0 70px 70px black;
|
|
}
|
|
|
|
.alertlike-modal {
|
|
&::part(content) {
|
|
max-height: 380px !important;
|
|
top: 25% !important;
|
|
width: 90% !important;
|
|
left: 5% !important;
|
|
--box-shadow: none !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
ion-modal::part(content) {
|
|
position: absolute;
|
|
height: 80% !important;
|
|
top: 10%;
|
|
width: $wide-modal !important;
|
|
left: calc((100vw - $wide-modal) / 2) !important;
|
|
}
|
|
|
|
.alertlike-modal {
|
|
&::part(content) {
|
|
width: $wide-modal !important;
|
|
left: calc((100vw - $wide-modal) / 2) !important;
|
|
}
|
|
}
|
|
|
|
ion-alert {
|
|
.alert-wrapper {
|
|
--width: 50%;
|
|
--max-width: 500px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.item-interactive {
|
|
--highlight-background: var(--ion-color-light) !important;
|
|
}
|
|
|
|
.hidden-scrollbar {
|
|
overflow: auto;
|
|
white-space: nowrap;
|
|
height: 60px;
|
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
&::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
.divider {
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--ion-color-light) 0,
|
|
var(--ion-color-dark) 50%,
|
|
var(--ion-color-light) 100%
|
|
);
|
|
height: 1px;
|
|
}
|
|
|
|
.loading-dots:after {
|
|
content: '...';
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
animation: ellipsis-dot 1s infinite 0.3s;
|
|
animation-fill-mode: forwards;
|
|
width: 1em;
|
|
}
|
|
|
|
.montserrat {
|
|
font-family: 'Montserrat', sans-serif!important;
|
|
}
|