mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
ags: sync
This commit is contained in:
parent
7e73e24dd8
commit
266e3e04e9
5 changed files with 27 additions and 32 deletions
|
|
@ -18,9 +18,9 @@ $onErrorContainer: #e2e2e2;
|
||||||
$colorbarbg: #000000;
|
$colorbarbg: #000000;
|
||||||
$background: #000000;
|
$background: #000000;
|
||||||
$onBackground: #e2e2e2;
|
$onBackground: #e2e2e2;
|
||||||
$surface: #000000;
|
$surface: #161616;
|
||||||
$onSurface: #e2e2e2;
|
$onSurface: #e2e2e2;
|
||||||
$surfaceVariant: #202020;
|
$surfaceVariant: #242424;
|
||||||
$onSurfaceVariant: #e2e2e2;
|
$onSurfaceVariant: #e2e2e2;
|
||||||
$outline: #a1a1a1;
|
$outline: #a1a1a1;
|
||||||
$shadow: #000000;
|
$shadow: #000000;
|
||||||
|
|
|
||||||
|
|
@ -26,13 +26,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
|
||||||
animation-name: appear;
|
|
||||||
animation-duration: 100ms;
|
|
||||||
animation-timing-function: ease-out;
|
|
||||||
animation-iteration-count: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
menu {
|
menu {
|
||||||
@include elevation-border-softer;
|
@include elevation-border-softer;
|
||||||
padding: 0.681rem;
|
padding: 0.681rem;
|
||||||
|
|
@ -90,6 +83,10 @@ radio:checked {
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
|
animation-name: appear;
|
||||||
|
animation-duration: 100ms;
|
||||||
|
animation-timing-function: ease-out;
|
||||||
|
animation-iteration-count: 1;
|
||||||
@include normal-rounding;
|
@include normal-rounding;
|
||||||
background-color: $surfaceVariant;
|
background-color: $surfaceVariant;
|
||||||
color: $onSurfaceVariant;
|
color: $onSurfaceVariant;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
$sidebar_chat_textboxareaColor: mix($onSurfaceVariant, $surfaceVariant, 40%);
|
$sidebar_chat_textboxareaColor: mix($onSurfaceVariant, $surfaceVariant, 40%);
|
||||||
|
$textboxColor: mix($surface, $surfaceVariant, 80%);
|
||||||
$system: $secondary;
|
$system: $secondary;
|
||||||
$onSystem: $onSecondary;
|
$onSystem: $onSecondary;
|
||||||
$chatgpt: $primary;
|
$chatgpt: $primary;
|
||||||
|
|
@ -510,7 +511,8 @@ $onChatgpt: $onPrimary;
|
||||||
|
|
||||||
.sidebar-chat-textarea {
|
.sidebar-chat-textarea {
|
||||||
@include normal-rounding;
|
@include normal-rounding;
|
||||||
border: 0.068rem solid $sidebar_chat_textboxareaColor;
|
background-color: $textboxColor;
|
||||||
|
color: $onSurfaceVariant;
|
||||||
padding: 0.682rem;
|
padding: 0.682rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -526,20 +528,15 @@ $onChatgpt: $onPrimary;
|
||||||
min-width: 1.705rem;
|
min-width: 1.705rem;
|
||||||
min-height: 1.705rem;
|
min-height: 1.705rem;
|
||||||
border-radius: $rounding_medium - 0.681rem;
|
border-radius: $rounding_medium - 0.681rem;
|
||||||
background-color: $sidebar_chat_textboxareaColor;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-chat-send:hover,
|
.sidebar-chat-send:hover,
|
||||||
.sidebar-chat-send:focus {
|
.sidebar-chat-send:focus {
|
||||||
background-color: mix($sidebar_chat_textboxareaColor,
|
background-color: $surfaceVariant;
|
||||||
$t_onSecondaryContainer,
|
|
||||||
97%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-chat-send:active {
|
.sidebar-chat-send:active {
|
||||||
background-color: mix($sidebar_chat_textboxareaColor,
|
background-color: mix($surfaceVariant, $onBackground, 80%);
|
||||||
$t_onSecondaryContainer,
|
|
||||||
80%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-chat-send-available {
|
.sidebar-chat-send-available {
|
||||||
|
|
@ -679,7 +676,8 @@ $onChatgpt: $onPrimary;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-chat-chip-action {
|
.sidebar-chat-chip-action {
|
||||||
border: 0.068rem solid $sidebar_chat_textboxareaColor;
|
background-color: $textboxColor;
|
||||||
|
color: $onSurfaceVariant;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-chat-chip-action:hover,
|
.sidebar-chat-chip-action:hover,
|
||||||
|
|
@ -700,7 +698,7 @@ $onChatgpt: $onPrimary;
|
||||||
@include menu_decel;
|
@include menu_decel;
|
||||||
@include small-rounding;
|
@include small-rounding;
|
||||||
padding: 0.341rem 0.477rem;
|
padding: 0.341rem 0.477rem;
|
||||||
background-color: $t_surfaceVariant;
|
background-color: $textboxColor;
|
||||||
color: $onSurfaceVariant;
|
color: $onSurfaceVariant;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
* {
|
* {
|
||||||
all: unset;
|
all: unset;
|
||||||
}
|
}
|
||||||
|
// *:not(tooltip) { all: unset; }
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
@import './material'; // Material colors
|
@import './material'; // Material colors
|
||||||
|
|
|
||||||
|
|
@ -414,12 +414,6 @@
|
||||||
to {
|
to {
|
||||||
opacity: 1; } }
|
opacity: 1; } }
|
||||||
|
|
||||||
tooltip {
|
|
||||||
animation-name: appear;
|
|
||||||
animation-duration: 100ms;
|
|
||||||
animation-timing-function: ease-out;
|
|
||||||
animation-iteration-count: 1; }
|
|
||||||
|
|
||||||
menu {
|
menu {
|
||||||
border-top: 1px solid rgba(60, 57, 61, 0.121);
|
border-top: 1px solid rgba(60, 57, 61, 0.121);
|
||||||
border-left: 1px solid rgba(60, 57, 61, 0.121);
|
border-left: 1px solid rgba(60, 57, 61, 0.121);
|
||||||
|
|
@ -470,6 +464,10 @@ radio:checked {
|
||||||
border: 0.477rem solid #eccbff; }
|
border: 0.477rem solid #eccbff; }
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
|
animation-name: appear;
|
||||||
|
animation-duration: 100ms;
|
||||||
|
animation-timing-function: ease-out;
|
||||||
|
animation-iteration-count: 1;
|
||||||
border-radius: 1.159rem;
|
border-radius: 1.159rem;
|
||||||
-gtk-outline-radius: 1.159rem;
|
-gtk-outline-radius: 1.159rem;
|
||||||
background-color: #38343a;
|
background-color: #38343a;
|
||||||
|
|
@ -1837,7 +1835,8 @@ tooltip {
|
||||||
.sidebar-chat-textarea {
|
.sidebar-chat-textarea {
|
||||||
border-radius: 1.159rem;
|
border-radius: 1.159rem;
|
||||||
-gtk-outline-radius: 1.159rem;
|
-gtk-outline-radius: 1.159rem;
|
||||||
border: 0.068rem solid #746d75;
|
background-color: #242125;
|
||||||
|
color: #cdc3ce;
|
||||||
padding: 0.682rem; }
|
padding: 0.682rem; }
|
||||||
|
|
||||||
.sidebar-chat-entry {
|
.sidebar-chat-entry {
|
||||||
|
|
@ -1850,15 +1849,14 @@ tooltip {
|
||||||
transition: 300ms cubic-bezier(0.1, 1, 0, 1);
|
transition: 300ms cubic-bezier(0.1, 1, 0, 1);
|
||||||
min-width: 1.705rem;
|
min-width: 1.705rem;
|
||||||
min-height: 1.705rem;
|
min-height: 1.705rem;
|
||||||
border-radius: 0.478rem;
|
border-radius: 0.478rem; }
|
||||||
background-color: #746d75; }
|
|
||||||
|
|
||||||
.sidebar-chat-send:hover,
|
.sidebar-chat-send:hover,
|
||||||
.sidebar-chat-send:focus {
|
.sidebar-chat-send:focus {
|
||||||
background-color: #787079; }
|
background-color: #38343a; }
|
||||||
|
|
||||||
.sidebar-chat-send:active {
|
.sidebar-chat-send:active {
|
||||||
background-color: #8c838f; }
|
background-color: #5b565c; }
|
||||||
|
|
||||||
.sidebar-chat-send-available {
|
.sidebar-chat-send-available {
|
||||||
background-color: #eccbff;
|
background-color: #eccbff;
|
||||||
|
|
@ -1979,7 +1977,8 @@ tooltip {
|
||||||
padding: 0.341rem 0.477rem; }
|
padding: 0.341rem 0.477rem; }
|
||||||
|
|
||||||
.sidebar-chat-chip-action {
|
.sidebar-chat-chip-action {
|
||||||
border: 0.068rem solid #746d75; }
|
background-color: #242125;
|
||||||
|
color: #cdc3ce; }
|
||||||
|
|
||||||
.sidebar-chat-chip-action:hover,
|
.sidebar-chat-chip-action:hover,
|
||||||
.sidebar-chat-chip-action:focus {
|
.sidebar-chat-chip-action:focus {
|
||||||
|
|
@ -1997,7 +1996,7 @@ tooltip {
|
||||||
border-radius: 0.818rem;
|
border-radius: 0.818rem;
|
||||||
-gtk-outline-radius: 0.818rem;
|
-gtk-outline-radius: 0.818rem;
|
||||||
padding: 0.341rem 0.477rem;
|
padding: 0.341rem 0.477rem;
|
||||||
background-color: rgba(56, 52, 58, 0.31);
|
background-color: #242125;
|
||||||
color: #cdc3ce; }
|
color: #cdc3ce; }
|
||||||
|
|
||||||
.sidebar-chat-chip-toggle:focus,
|
.sidebar-chat-chip-toggle:focus,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue