fantasia-archive/src/css/app.scss

101 lines
1.5 KiB
SCSS

// app global css in SCSS form
@import './app/customColors.scss';
* {
/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: $dark;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: lighten($dark, 40);
border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: lighten($dark, 60);
}
}
html {
background-color: #fff;
}
body {
background-color: rgba($primary, 0.025);
/* WebKit/Blink Browsers */
::selection {
background: lighten($dark, 30);
color: white;
}
/* Gecko Browsers */
::-moz-selection {
background: lighten($dark, 30);
color: white;
}
}
.q-drawer-container * {
user-select: none !important;
}
.q-tooltip {
font-size: 11px;
}
.q-toggle__inner {
width: 100%;
}
.q-toggle__thumb {
transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-toggle__inner--truthy .q-toggle__thumb {
left: calc(100% - 30px);
}
.tagSelect,
.singleSelect,
.multiSelect,
.singleRelashionshipSelect,
.multiRelashionshipSelect,
.existingDocumentSelect,
.newDocumentSelect {
&.q-field--dark .q-field__control::before {
border: 1px solid rgba(0, 0, 0, 0.24);
}
.q-field__input,
.q-field__native span {
color: #000 !important;
}
}
.q-menu .q-item {
transition: none !important;
}
.q-field__control {
background-color: #fff;
}
.q-position-engine {
overflow-y: auto !important;
}
.text-underline {
text-decoration: underline;
}