This commit is contained in:
2025-12-01 06:45:17 -04:00
parent f50cc9928f
commit c8d6711466
17 changed files with 298 additions and 100 deletions
+22 -17
View File
@@ -1,3 +1,4 @@
@use "sass:color";
@use "./colors";
.runner .popup-window-container {
@@ -29,16 +30,18 @@
}
}
& scrolledwindow {
margin: 6px;
}
& list {
padding: 0 12px;
& .result {
padding: 10px;
background: colors.$bg-primary;
margin: 2px 0;
border-radius: 14px;
background: linear-gradient(
135deg,
color.change($color: colors.$bg-primary, $alpha: 0.9),
color.change($color: colors.$bg-secondary, $alpha: 0.7)
);
margin: 6px 0;
border-radius: 18px;
border: 1px solid transparent;
& image {
-gtk-icon-size: 28px;
@@ -47,7 +50,7 @@
& .title {
font-weight: 500;
font-size: 16px;
font-size: 17px;
}
& .description {
@@ -57,17 +60,19 @@
}
& > *:selected .result,
& > *:active .result,
& > *:hover .result {
background: colors.$bg-secondary;
}
& > *:active .result {
background: linear-gradient(
135deg,
color.change($color: colors.$bg-secondary, $alpha: 0.95),
color.change($color: colors.$bg-tertiary, $alpha: 0.8)
);
& > *:first-child {
margin-top: 12px;
}
border-color: colors.$bg-tertiary;
box-shadow: 0 0 0 1px colors.$bg-tertiary;
&:last-child {
margin-bottom: 0;
& .title {
font-weight: 700;
}
}
}
}