mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-19 19:09:54 +00:00
theme tweaks
This commit is contained in:
parent
81663f351a
commit
f53eb31274
@ -7,7 +7,7 @@
|
|||||||
(ngModelChange)='onFilterChange()'
|
(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(
|
a.list-group-item.list-group-item-action.d-flex.align-items-center(
|
||||||
#item,
|
#item,
|
||||||
(click)='selectOption(option)',
|
(click)='selectOption(option)',
|
||||||
|
@ -3,7 +3,7 @@ div
|
|||||||
h1.tabby-title Tabby
|
h1.tabby-title Tabby
|
||||||
sup α
|
sup α
|
||||||
|
|
||||||
.list-group
|
.list-group.list-group-light
|
||||||
a.list-group-item.list-group-item-action.d-flex(
|
a.list-group-item.list-group-item-action.d-flex(
|
||||||
*ngFor='let button of getButtons(); trackBy: buttonsTrackBy',
|
*ngFor='let button of getButtons(); trackBy: buttonsTrackBy',
|
||||||
(click)='button.click()',
|
(click)='button.click()',
|
||||||
|
@ -230,26 +230,25 @@ hotkey-input-modal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-group.list-group-flush {
|
.list-group.list-group-flush .list-group-item {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-color: rgba(0, 0, 0, 0.2);
|
border-color: rgba(0, 0, 0, 0.2);
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.list-group-item-action {
|
||||||
|
&:hover, &.active {
|
||||||
|
background: $list-group-hover-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-group-light {
|
.list-group-light {
|
||||||
.list-group-item {
|
.list-group-item {
|
||||||
background: transparent;
|
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
border-top: 1px solid rgba(0, 21, 43, .4);
|
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
border-top: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.list-group-item-action {
|
&.list-group-item-action {
|
||||||
&:hover, &.active {
|
&:hover, &.active {
|
||||||
background: $list-group-hover-bg;
|
background: $list-group-hover-bg;
|
||||||
|
@ -26,8 +26,8 @@ $purple: #613d7c !default;
|
|||||||
$content-bg: rgba(39, 49, 60, 0.65); //#1D272D;
|
$content-bg: rgba(39, 49, 60, 0.65); //#1D272D;
|
||||||
$content-bg-solid: #1D272D;
|
$content-bg-solid: #1D272D;
|
||||||
|
|
||||||
$table-bg: rgba(255,255,255,.05);
|
$table-bg: rgba(255,255,255,.025);
|
||||||
$table-bg-hover: rgba(255,255,255,.1);
|
$table-bg-hover: rgba(255,255,255,.05);
|
||||||
$table-border-color: rgba(255,255,255,.1);
|
$table-border-color: rgba(255,255,255,.1);
|
||||||
|
|
||||||
$theme-colors: (
|
$theme-colors: (
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
div(*ngIf='!sftp') Connecting
|
div(*ngIf='!sftp') Connecting
|
||||||
div(*ngIf='sftp')
|
div(*ngIf='sftp')
|
||||||
div(*ngIf='fileList === null') Loading
|
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(
|
.list-group-item.list-group-item-action.d-flex.align-items-center(
|
||||||
*ngIf='path !== "/"',
|
*ngIf='path !== "/"',
|
||||||
(click)='goUp()'
|
(click)='goUp()'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user