This commit is contained in:
vinceliuice
2023-10-20 11:38:11 +08:00
parent aec161ccc0
commit e8d1729b69
6 changed files with 29 additions and 7 deletions

View File

@@ -64,6 +64,9 @@ $button-close: #fd5f51;
$button-max: #38c76a; $button-max: #38c76a;
$button-min: #fdbe04; $button-min: #fdbe04;
// Link
$links: #5bd3f8;
// Theme // Theme
$default-light: $blue-light; $default-light: $blue-light;
$default-dark: $blue-dark; $default-dark: $blue-dark;

View File

@@ -64,6 +64,9 @@ $button-close: if($variant == 'light', #ed5d5d, #f44d4d);
$button-max: if($variant == 'light', #43db68, #4be772); $button-max: if($variant == 'light', #43db68, #4be772);
$button-min: if($variant == 'light', #e3d93b, #e8f467); $button-min: if($variant == 'light', #e3d93b, #e8f467);
// Link
$links: #5bbae3;
// Theme // Theme
$default-light: $purple-light; $default-light: $purple-light;
$default-dark: $purple-dark; $default-dark: $purple-dark;

View File

@@ -64,6 +64,9 @@ $button-close: #cc241d;
$button-max: #98971a; $button-max: #98971a;
$button-min: #d79921; $button-min: #d79921;
// Link
$links: #79b8c9;
// Theme // Theme
$default-light: $blue-light; $default-light: $blue-light;
$default-dark: $blue-dark; $default-dark: $blue-dark;

View File

@@ -64,6 +64,9 @@ $button-close: #bf616a;
$button-max: #a3be8c; $button-max: #a3be8c;
$button-min: #ebcb8b; $button-min: #ebcb8b;
// Link
$links: #89b7c2;
// Theme // Theme
$default-light: $blue-light; $default-light: $blue-light;
$default-dark: $blue-dark; $default-dark: $blue-dark;

View File

@@ -131,7 +131,7 @@ $entry: if($variant == 'dark', on($background, s
// Misc colors // Misc colors
// //
$link: $blue-dark; $link: $links;
$link-visited: if($variant == 'light', $purple-dark, $purple-light); $link-visited: if($variant == 'light', $purple-dark, $purple-light);
$warning: if($variant == 'light', $yellow-dark, $yellow-light); $warning: if($variant == 'light', $yellow-dark, $yellow-light);

View File

@@ -216,7 +216,7 @@ label {
color: $text-secondary; color: $text-secondary;
} }
selection { @extend %selected_items_primary; } selection { @extend %selected_items_color; }
&:disabled { &:disabled {
color: $text-disabled; color: $text-disabled;
@@ -746,7 +746,7 @@ button.color {
/********* /*********
* Links * * Links *
*********/ *********/
*:link, %links { *:link, link, %links {
color: $link; color: $link;
} }
@@ -2049,8 +2049,9 @@ notebook {
&.top, &.top,
&.bottom { &.bottom {
tabs { tabs {
// padding-left: 8px; > tab + tab {
// padding-right: 8px; margin-left: $space-size / 2;
}
&:not(:only-child) { &:not(:only-child) {
&:first-child { margin-left: 0; } &:first-child { margin-left: 0; }
@@ -2065,8 +2066,9 @@ notebook {
&.left, &.left,
&.right { &.right {
tabs { tabs {
// padding-top: 8px; > tab + tab {
// padding-bottom: 8px; margin-top: $space-size / 2;
}
&:not(:only-child) { &:not(:only-child) {
&:first-child { margin-top: 0; } &:first-child { margin-top: 0; }
@@ -2077,6 +2079,12 @@ notebook {
tab.reorderable-page { border-style: solid; } tab.reorderable-page { border-style: solid; }
} }
} }
> button.image-button {
min-height: $small-size;
min-width: $small-size;
padding: $space-size / 2;
}
} }
> stack:not(:only-child) { // the :not(:only-child) is for "hidden" notebooks > stack:not(:only-child) { // the :not(:only-child) is for "hidden" notebooks
@@ -2321,6 +2329,8 @@ radio {
background-color: rgba($text, 0.20); background-color: rgba($text, 0.20);
} }
&:focus { outline: none; }
&:disabled { &:disabled {
background-color: $fill; background-color: $fill;
} }