mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-01-07 00:02:50 +00:00
72 lines
1.1 KiB
SCSS
72 lines
1.1 KiB
SCSS
window#applauncher .window-content {
|
|
@include floating_widget;
|
|
|
|
entry {
|
|
@include button;
|
|
padding: $padding;
|
|
margin-bottom: $spacing;
|
|
|
|
label,
|
|
image {
|
|
color: $fg-color;
|
|
}
|
|
}
|
|
|
|
separator {
|
|
min-height: 1px;
|
|
background-color: $hover;
|
|
}
|
|
|
|
scrolledwindow {
|
|
@include scrollable;
|
|
min-width: $applauncher-width;
|
|
min-height: $applauncher-height;
|
|
}
|
|
|
|
button.app-item {
|
|
@include button($flat: true, $reactive: false);
|
|
> box {
|
|
@include spacing(0.5);
|
|
}
|
|
transition: $transition;
|
|
padding: $padding;
|
|
|
|
label {
|
|
transition: $transition;
|
|
|
|
&.title {
|
|
color: $fg-color;
|
|
}
|
|
|
|
&.description {
|
|
color: transparentize($fg-color, 0.3);
|
|
}
|
|
}
|
|
|
|
image {
|
|
transition: $transition;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.title {
|
|
color: $accent;
|
|
}
|
|
|
|
image {
|
|
-gtk-icon-shadow: 2px 2px $accent;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
background-color: transparentize($accent, 0.5);
|
|
border-radius: $radii;
|
|
box-shadow: inset 0 0 0 $border-width $border-color;
|
|
|
|
.title {
|
|
color: $fg-color;
|
|
}
|
|
}
|
|
}
|
|
}
|