57 lines
920 B
SCSS
57 lines
920 B
SCSS
@import "../../library/entry.scss";
|
|
|
|
$border-gray: $border-color;
|
|
$border-primary: $color2;
|
|
|
|
$transparentBackground: rgba(30, 30, 30, 0.6);
|
|
$text-color: $foreground;
|
|
|
|
|
|
#window {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
//border: 1px solid $color2;
|
|
box#main {
|
|
background-color: transparent;
|
|
color: $text-color;
|
|
}
|
|
|
|
entry {
|
|
padding: $input-padding;
|
|
border: none;
|
|
box-shadow: none;
|
|
color: $text-color;
|
|
margin-bottom: 6px;
|
|
border: 1px solid $border-gray;
|
|
border-bottom: 1px solid $border-primary;
|
|
box-shadow: $box-shadow-inner-less;
|
|
}
|
|
|
|
entry, list#plugin {
|
|
background-color: $transparentBackground;
|
|
border-radius: $border-radius;
|
|
}
|
|
|
|
list {
|
|
}
|
|
|
|
list#main {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
list#plugin {
|
|
padding: 1rem;
|
|
margin-top: 3px;
|
|
|
|
box-shadow: $box-shadow-inner-less;
|
|
border: 1px solid $border-gray;
|
|
}
|
|
|
|
label#match-desc {
|
|
font-size: 10px;
|
|
}
|
|
|
|
label#plugin {
|
|
font-size: 14px;
|
|
}
|