theme updates

This commit is contained in:
Eugene Pankov
2021-12-08 23:25:46 +01:00
parent 433c7d33d9
commit 5be4a12ee5
10 changed files with 92 additions and 45 deletions

View File

@@ -29,3 +29,4 @@
)
.title.mr-2 {{getOptionText(option)}}
.description.no-wrap.text-muted {{option.description}}
.no-wrap.badge.badge-secondary.text-muted.ml-auto(*ngIf='selectedIndex == i') Enter

View File

@@ -7,6 +7,7 @@
overflow: auto;
border-top-left-radius: 0;
border-top-right-radius: 0;
padding: 0 15px;
}
.group-header {
@@ -30,4 +31,5 @@
input {
border-radius: 0;
border: none;
}

View File

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

View File

@@ -27,6 +27,10 @@ export class HomeBaseService {
this.platform.openExternal('https://github.com/Eugeny/tabby')
}
openDiscussions (): void {
this.platform.openExternal('https://github.com/Eugeny/tabby/discussions')
}
reportBug (): void {
let body = `Version: ${this.appVersion}\n`
body += `Platform: ${this.hostApp.platform} ${process.arch} ${this.platform.getOSRelease()}\n`

View File

@@ -223,7 +223,7 @@ hotkey-input-modal {
}
.list-group-item {
transition: 0.0625s background;
// transition: 0.0625s background ease;
i + * {
margin-left: 10px;
@@ -232,7 +232,7 @@ hotkey-input-modal {
.list-group.list-group-flush .list-group-item {
background: transparent;
border-color: rgba(0, 0, 0, 0.2);
border: none;
&:not(:last-child) {
border-bottom: none;
@@ -247,11 +247,16 @@ hotkey-input-modal {
.list-group-light {
.list-group-item {
border: none;
border: none !important;
outline: none !important;
background: transparent;
border-radius: $border-radius;
margin: 0 !important;
&.list-group-item-action {
&:hover, &.active {
background: $list-group-hover-bg;
background: $component-active-bg;
color: $component-active-color;
}
}
}

View File

@@ -78,11 +78,11 @@ $link-color: $gray-400;
$link-hover-color: $white;
$link-hover-decoration: none;
$component-active-color: $white;
$component-active-bg: #2f3a42;
$component-active-color: #4fadff;
$component-active-bg: #0059a559;
$list-group-bg: $table-bg;
$list-group-border-color: $table-border-color;
$list-group-border-color: transparent;
$list-group-item-padding-y: 0.8rem;
$list-group-item-padding-x: 1rem;
@@ -197,3 +197,5 @@ $progress-height: 3px;
$alert-bg-level: 9;
$alert-border-level: 5;
$alert-color-level: -5;
$text-muted: rgba(255, 255, 255, 0.5);