ags: sync

This commit is contained in:
end-4
2024-01-22 23:08:47 +07:00
parent 502abe7648
commit 63d471c3df
5 changed files with 95 additions and 43 deletions
+34 -28
View File
@@ -166,27 +166,27 @@ $onChatgpt: $onPrimary;
padding: 0rem $rounding_medium;
}
.sidebar-navrail-btn > box > label {
.sidebar-navrail-btn>box>label {
@include full-rounding;
@include menu_decel;
}
.sidebar-navrail-btn:hover > box > label:first-child,
.sidebar-navrail-btn:focus > box > label:first-child {
.sidebar-navrail-btn:hover>box>label:first-child,
.sidebar-navrail-btn:focus>box>label:first-child {
background-color: $hovercolor;
}
.sidebar-navrail-btn:active > box > label:first-child {
.sidebar-navrail-btn:active>box>label:first-child {
background-color: $activecolor;
}
.sidebar-navrail-btn-active > box > label:first-child {
.sidebar-navrail-btn-active>box>label:first-child {
background-color: $secondaryContainer;
color: $onSecondaryContainer;
}
.sidebar-navrail-btn-active:hover > box > label:first-child,
.sidebar-navrail-btn-active:focus > box > label:first-child {
.sidebar-navrail-btn-active:hover>box>label:first-child,
.sidebar-navrail-btn-active:focus>box>label:first-child {
background-color: mix($secondaryContainer, $hovercolor, 90%);
color: mix($onSecondaryContainer, $hovercolor, 90%);
}
@@ -346,7 +346,7 @@ $onChatgpt: $onPrimary;
background-color: $activecolor;
}
.sidebar-selector-tab-active > box > label {
.sidebar-selector-tab-active>box>label {
color: $primary;
}
@@ -531,19 +531,15 @@ $onChatgpt: $onPrimary;
.sidebar-chat-send:hover,
.sidebar-chat-send:focus {
background-color: mix(
$sidebar_chat_textboxareaColor,
$t_onSecondaryContainer,
97%
);
background-color: mix($sidebar_chat_textboxareaColor,
$t_onSecondaryContainer,
97%);
}
.sidebar-chat-send:active {
background-color: mix(
$sidebar_chat_textboxareaColor,
$t_onSecondaryContainer,
80%
);
background-color: mix($sidebar_chat_textboxareaColor,
$t_onSecondaryContainer,
80%);
}
.sidebar-chat-send-available {
@@ -670,9 +666,10 @@ $onChatgpt: $onPrimary;
@include menu_decel;
min-height: 4.773rem;
min-width: 4.773rem;
font-size: 4rem;
background-color: white;
color: black;
@include icon-material;
font-size: 2.727rem;
background-color: $onBackground;
color: $background;
}
.sidebar-chat-chip {
@@ -706,10 +703,12 @@ $onChatgpt: $onPrimary;
background-color: $t_surfaceVariant;
color: $onSurfaceVariant;
}
.sidebar-chat-chip-toggle:focus,
.sidebar-chat-chip-toggle:hover {
background-color: $hovercolor;
}
.sidebar-chat-chip-toggle:active {
background-color: $activecolor;
}
@@ -733,6 +732,7 @@ $onChatgpt: $onPrimary;
.sidebar-pin-enabled {
background-color: $primary;
label {
color: $onPrimary;
}
@@ -753,13 +753,16 @@ $onChatgpt: $onPrimary;
margin-left: -0.136rem;
padding-left: 0.818rem;
}
.sidebar-waifu-content {
margin-left: 0.682rem;
}
.sidebar-waifu-txt {
@include readingfont;
margin-left: 0.682rem;
}
.sidebar-waifu-image {
margin-left: 0.682rem;
@include normal-rounding;
@@ -767,26 +770,29 @@ $onChatgpt: $onPrimary;
background-repeat: no-repeat;
background-position: center;
}
.sidebar-waifu-image-actions {
padding: 0.313rem;
}
$waifu_image_overlay_transparency: 0.7;
.sidebar-waifu-image-action {
@include full-rounding;
min-width: 1.875rem;
min-height: 1.875rem;
background-color: rgba(
0,
0,
0,
$waifu_image_overlay_transparency
); // Fixed cuz on image
background-color: rgba(0,
0,
0,
$waifu_image_overlay_transparency ); // Fixed cuz on image
color: rgba(255, 255, 255, $waifu_image_overlay_transparency);
}
.sidebar-waifu-image-action:hover,
.sidebar-waifu-image-action:focus {
background-color: rgba(30, 30, 30, $waifu_image_overlay_transparency);
}
.sidebar-waifu-image-action:active {
background-color: rgba(60, 60, 60, $waifu_image_overlay_transparency);
}
}