theme tweaks

This commit is contained in:
Eugene Pankov 2021-08-14 23:27:13 +02:00
parent 81663f351a
commit f53eb31274
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
5 changed files with 12 additions and 13 deletions

View File

@ -7,7 +7,7 @@
(ngModelChange)='onFilterChange()'
)
div(*ngIf='filteredOptions.length')
.list-group.list-group-light(*ngIf='filteredOptions.length')
a.list-group-item.list-group-item-action.d-flex.align-items-center(
#item,
(click)='selectOption(option)',

View File

@ -3,7 +3,7 @@ div
h1.tabby-title Tabby
sup α
.list-group
.list-group.list-group-light
a.list-group-item.list-group-item-action.d-flex(
*ngFor='let button of getButtons(); trackBy: buttonsTrackBy',
(click)='button.click()',

View File

@ -230,26 +230,25 @@ hotkey-input-modal {
}
}
.list-group.list-group-flush {
.list-group.list-group-flush .list-group-item {
background: transparent;
border-color: rgba(0, 0, 0, 0.2);
&:not(:last-child) {
border-bottom: none;
}
&.list-group-item-action {
&:hover, &.active {
background: $list-group-hover-bg;
}
}
}
.list-group-light {
.list-group-item {
background: transparent;
border: none;
border-top: 1px solid rgba(0, 21, 43, .4);
&:first-child {
border-top: none;
}
&.list-group-item-action {
&:hover, &.active {
background: $list-group-hover-bg;

View File

@ -26,8 +26,8 @@ $purple: #613d7c !default;
$content-bg: rgba(39, 49, 60, 0.65); //#1D272D;
$content-bg-solid: #1D272D;
$table-bg: rgba(255,255,255,.05);
$table-bg-hover: rgba(255,255,255,.1);
$table-bg: rgba(255,255,255,.025);
$table-bg-hover: rgba(255,255,255,.05);
$table-border-color: rgba(255,255,255,.1);
$theme-colors: (

View File

@ -16,7 +16,7 @@
div(*ngIf='!sftp') Connecting
div(*ngIf='sftp')
div(*ngIf='fileList === null') Loading
.list-group.list-group-light(*ngIf='fileList !== null')
.list-group.list-group-flush(*ngIf='fileList !== null')
.list-group-item.list-group-item-action.d-flex.align-items-center(
*ngIf='path !== "/"',
(click)='goUp()'