Работа над ночным режимом

This commit is contained in:
Book Pauk
2023-01-11 14:07:08 +07:00
parent f4ce1f337e
commit bf4f5bc88b
6 changed files with 63 additions and 26 deletions

View File

@@ -88,6 +88,6 @@ export default vueComponent(CommonHelpPage);
margin-left: 10px;
cursor: pointer;
font-size: 120%;
color: blue;
color: var(--text-anchor-color);
}
</style>

View File

@@ -1,20 +1,20 @@
<template>
<Window @close="close" style="z-index: 200">
<Window style="z-index: 200" @close="close">
<template #header>
Справка
</template>
<div class="col column" style="min-width: 600px">
<div class="bg-grey-3 row">
<div class="bg-menu-1 row">
<q-tabs
v-model="selectedTab"
active-color="black"
active-bg-color="white"
indicator-color="white"
active-color="app"
active-bg-color="app"
indicator-color="bg-app"
dense
no-caps
inline-label
class="bg-grey-4 text-grey-7"
class="bg-menu-2 text-menu"
>
<q-tab v-for="btn in buttons" :key="btn.value" :name="btn.value" :label="btn.label" />
</q-tabs>

View File

@@ -72,7 +72,7 @@ p {
}
.clickable {
color: blue;
color: var(--text-anchor-color);
text-decoration: underline;
cursor: pointer;
}

View File

@@ -2,10 +2,10 @@
<div class="table col column no-wrap">
<!-- header -->
<div class="table-row row">
<div class="desc q-pa-sm bg-blue-2">
<div class="desc q-pa-sm bg-header-3">
Команда
</div>
<div class="hotKeys col q-pa-sm bg-blue-2 row no-wrap">
<div class="hotKeys col q-pa-sm bg-header-3 row no-wrap">
<div style="width: 80px">
Сочетание клавиш
</div>
@@ -14,7 +14,7 @@
v-model="search"
class="q-ml-sm col"
outlined dense
bg-color="grey-4"
bg-color="input"
placeholder="Найти"
@click.stop
/>
@@ -234,11 +234,11 @@ export default vueComponent(UserHotKeys);
}
.table-row:nth-child(even) {
background-color: #f7f7f7;
background-color: var(--bg-menu-color1);
}
.table-row:hover {
background-color: #f0f0f0;
background-color: var(--bg-menu-color2);
}
.desc {