mirror of
https://github.com/amir20/dozzle.git
synced 2026-01-01 18:47:25 +01:00
* WIP vue3 * WIP vue3 * WIP vue3 * Migrates to vitejs * Fixes js tests and removes not needed modules * Fixes unmount * Updates to use css instead for space * Fixes tests and rebases one more time * Uses orgua * Fixes migrations bugs with oruga and fixes scroll * Fixes v-deep * Fixes icons to prod * Fixes icons to prod * Adds favicon back * Transitions some to composition api * Updates another component to comp api * Cleans defineProps * Updates log messages * Moves more to compose api * Cleans up styles and rewrites event source * Tries to fix DOMPurify * Removes postcss * WIP typescript * Improves importing * Converts all to ts * Converts main to ts * Makes changes for tsconfig * Moves more to ts * Adds typing to store * More typing * Updates to ts * Updates the rest to ts * Fixes computes * Fixes unmount * Adds cypress with custom base fixed * Fixes jest tests * Fixes golang tests * Adds gitignore for cypress * Removes int in favor of e2e with cypress * Tries to fix int tests again * Adds title * Updates e2e tests * Uses vue for isMobile * Removes app spec * Cleans up docker * Adds drop down for settings * Fixes bug with restart * Fixes scroll up bug * Adds tests for light mode
169 lines
4.2 KiB
SCSS
169 lines
4.2 KiB
SCSS
@charset "utf-8";
|
|
@import "bulma/sass/utilities/initial-variables.sass";
|
|
|
|
$body-background-color: var(--body-background-color);
|
|
|
|
$scheme-main: var(--scheme-main);
|
|
$scheme-main-bis: var(--scheme-main-bis);
|
|
$scheme-main-ter: var(--scheme-main-ter);
|
|
|
|
$border: var(--border-color);
|
|
$border-hover: var(--border-hover-color);
|
|
|
|
$menu-item-active-background-color: var(--menu-item-active-background-color);
|
|
$menu-item-color: var(--menu-item-color);
|
|
$menu-item-hover-background-color: var(--menu-item-hover-background-color);
|
|
$menu-item-hover-color: var(--menu-item-hover-color);
|
|
|
|
$text-strong: var(--text-strong-color);
|
|
$text: var(--text-color);
|
|
|
|
$panel-heading-background-color: var(--panel-heading-background-color);
|
|
$panel-heading-color: var(--panel-heading-color);
|
|
|
|
$link: $turquoise;
|
|
$link-active: $grey-dark;
|
|
|
|
$dark-toolbar-color: rgba($black-bis, 0.7);
|
|
$light-toolbar-color: rgba($grey-darker, 0.7);
|
|
|
|
@import "bulma/bulma.sass";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/utils/all.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/autocomplete.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/button.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/modal.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/switch.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/tooltip.scss";
|
|
@import "@oruga-ui/theme-bulma/dist/scss/components/dropdown.scss";
|
|
@import "splitpanes/dist/splitpanes.css";
|
|
|
|
html {
|
|
--scheme-main: #{$black};
|
|
--scheme-main-bis: #{$black-bis};
|
|
--scheme-main-ter: #{$black-ter};
|
|
|
|
--border-color: #{$grey-darker};
|
|
--border-hover-color: var(--secondary-color);
|
|
--logo-color: var(--secondary-color);
|
|
|
|
--primary-color: #{$turquoise};
|
|
--secondary-color: #{$yellow};
|
|
|
|
--body-background-color: #{$black-bis};
|
|
--action-toolbar-background-color: #{$dark-toolbar-color};
|
|
|
|
--menu-item-active-background-color: var(--primary-color);
|
|
--menu-item-color: hsl(0, 6%, 87%);
|
|
--menu-item-hover-background-color: #{$white-ter};
|
|
--menu-item-hover-color: #{$black-ter};
|
|
|
|
--panel-heading-background-color: var(--secondary-color);
|
|
--panel-heading-color: var(--scheme-main-bis);
|
|
|
|
--text-strong-color: #{$grey-lightest};
|
|
--text-color: #{$grey-lighter};
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--scheme-main: #{$white};
|
|
--scheme-main-bis: #{$white-bis};
|
|
--scheme-main-ter: #{$white-ter};
|
|
|
|
--border-color: #{$grey-lighter};
|
|
--border-hover-color: var(--secondary-color);
|
|
--logo-color: #{$grey-darker};
|
|
|
|
--primary-color: #{$turquoise};
|
|
--secondary-color: #d8f0ca;
|
|
|
|
--body-background-color: #{$white-bis};
|
|
--action-toolbar-background-color: #{$light-toolbar-color};
|
|
--body-color: #{$grey-darker};
|
|
|
|
--menu-item-color: #{$grey-dark};
|
|
--menu-item-hover-background-color: #eee8e7;
|
|
--menu-item-hover-color: #{black-ter};
|
|
|
|
--panel-heading-background-color: var(--secondary-color);
|
|
--panel-heading-color: var(--text-strong-color);
|
|
|
|
--text-strong-color: #{$grey-dark};
|
|
--text-color: #{$grey-darker};
|
|
}
|
|
|
|
html {
|
|
overflow-x: unset;
|
|
overflow-y: unset;
|
|
scroll-snap-type: y proximity;
|
|
}
|
|
|
|
html.has-custom-scrollbars {
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
display: content;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(128, 128, 128, 0.33);
|
|
outline: 1px solid slategrey;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background-color: #777;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-track:hover {
|
|
background-color: rgba(64, 64, 64, 0.33);
|
|
}
|
|
|
|
section main {
|
|
scrollbar-color: #353535 transparent;
|
|
scrollbar-width: thin;
|
|
}
|
|
}
|
|
|
|
.is-settings-control {
|
|
background: rgba(0, 0, 0, 0.4);
|
|
color: #fff;
|
|
border-color: transparent;
|
|
&:hover {
|
|
border-color: var(--border-hover-color) !important;
|
|
background: rgba(0, 0, 0, 0.8) !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: none !important;
|
|
color: unset;
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
@media screen and (min-width: 770px) {
|
|
.splitpanes__pane {
|
|
overflow: unset;
|
|
}
|
|
}
|
|
|
|
.splitpanes__splitter {
|
|
z-index: 99;
|
|
}
|
|
|
|
.is-ellipsis {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal {
|
|
z-index: 1000;
|
|
}
|
|
|
|
.button .button-wrapper > span {
|
|
display: contents;
|
|
}
|