2019-09-28 16:41:24 +00:00
|
|
|
/*
|
2020-01-01 17:00:00 +00:00
|
|
|
* Copyright (C) 2019-2020 Alex Yatskov <alex@foosoft.net>
|
2019-09-28 16:41:24 +00:00
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-09-28 16:41:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-12-02 03:26:23 +00:00
|
|
|
#anki-spinner,
|
2019-11-02 18:39:37 +00:00
|
|
|
#dict-spinner, #dict-import-progress,
|
2019-10-29 20:31:27 +00:00
|
|
|
.storage-hidden, #storage-spinner {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html:root:not([data-options-anki-enable=true]) #anki-general,
|
|
|
|
html:root:not([data-options-general-debug-info=true]) .debug,
|
|
|
|
html:root:not([data-options-general-show-advanced=true]) .options-advanced,
|
|
|
|
html:root:not([data-options-general-result-output-mode=merge]) #dict-main-group {
|
2019-09-28 16:41:24 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-content {
|
|
|
|
border-bottom: 1px #ddd solid;
|
|
|
|
border-left: 1px #ddd solid;
|
|
|
|
border-right: 1px #ddd solid;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-links {
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-light {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control.is-invalid {
|
|
|
|
border-color: #f00000;
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:30:41 +00:00
|
|
|
.condition {
|
|
|
|
display: flex;
|
|
|
|
-flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.condition-input {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
.condition-line-break {
|
|
|
|
flex: 1 0 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.condition>.input-group-btn {
|
|
|
|
width: auto;
|
|
|
|
}
|
2019-09-28 16:41:24 +00:00
|
|
|
.condition>.condition-prefix:after {
|
|
|
|
content: "IF";
|
|
|
|
}
|
|
|
|
.condition:nth-child(n+2)>.condition-prefix:after {
|
|
|
|
content: "AND";
|
|
|
|
}
|
|
|
|
|
2019-09-28 17:30:41 +00:00
|
|
|
.input-group .condition-prefix {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2019-09-28 16:41:24 +00:00
|
|
|
.input-group .condition-prefix,
|
|
|
|
.input-group .condition-group-separator-label {
|
|
|
|
width: 60px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.input-group .condition-group-separator-label {
|
|
|
|
padding: 6px 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.input-group .condition-type,
|
|
|
|
.input-group .condition-operator {
|
|
|
|
width: auto;
|
|
|
|
text-align: center;
|
|
|
|
text-align-last: center;
|
|
|
|
}
|
|
|
|
|
2019-10-11 01:28:27 +00:00
|
|
|
.condition-group>.condition>*:first-child,
|
|
|
|
.audio-source-list>.audio-source>*:first-child {
|
2019-09-28 16:41:24 +00:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2019-10-11 01:28:27 +00:00
|
|
|
.condition-group>.condition:nth-child(n+2)>*:first-child,
|
|
|
|
.audio-source-list>.audio-source:nth-child(n+2)>*:first-child {
|
2019-09-28 16:41:24 +00:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2019-10-11 01:28:27 +00:00
|
|
|
.condition-group>.condition:nth-child(n+2)>div:last-child>button,
|
|
|
|
.audio-source-list>.audio-source:nth-child(n+2)>*:last-child>button {
|
2019-09-28 16:41:24 +00:00
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2019-10-11 01:28:27 +00:00
|
|
|
.condition-group>.condition:nth-last-child(n+2)>div:last-child>button,
|
|
|
|
.audio-source-list>.audio-source:nth-last-child(n+2)>*:last-child>button {
|
2019-09-28 16:41:24 +00:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2019-10-11 01:28:27 +00:00
|
|
|
.condition-group-options>.condition-add,
|
|
|
|
.audio-source-options>.audio-source-add {
|
2019-09-28 16:41:24 +00:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.condition-groups>*:last-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-10-11 01:28:27 +00:00
|
|
|
.audio-source-list {
|
|
|
|
counter-reset: audio-source-id;
|
|
|
|
}
|
|
|
|
.audio-source-list .audio-source-prefix {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: 39px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.audio-source-list .audio-source-prefix:after {
|
|
|
|
counter-increment: audio-source-id;
|
|
|
|
content: counter(audio-source-id);
|
|
|
|
}
|
|
|
|
|
2019-10-13 15:05:21 +00:00
|
|
|
#custom-popup-css,
|
2019-11-09 21:34:39 +00:00
|
|
|
#custom-popup-outer-css,
|
|
|
|
#field-templates {
|
2019-09-28 16:41:24 +00:00
|
|
|
width: 100%;
|
|
|
|
min-height: 34px;
|
2019-11-09 21:34:39 +00:00
|
|
|
line-height: 18px;
|
2019-09-28 16:41:24 +00:00
|
|
|
height: 96px;
|
|
|
|
resize: vertical;
|
|
|
|
font-family: 'Courier New', Courier, monospace;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
2019-11-09 21:34:39 +00:00
|
|
|
#field-templates {
|
|
|
|
height: 240px;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
#field-templates-reset {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2019-09-28 16:41:24 +00:00
|
|
|
|
2019-10-11 23:08:54 +00:00
|
|
|
.btn-inner-middle {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2019-10-15 23:22:30 +00:00
|
|
|
.storage-button-inner {
|
2019-10-11 23:08:54 +00:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
2019-10-15 23:22:30 +00:00
|
|
|
input[type=checkbox].storage-button-checkbox {
|
2019-10-11 23:08:54 +00:00
|
|
|
margin: 0 0.375em 0 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2019-10-12 16:59:51 +00:00
|
|
|
#settings-popup-preview-frame {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 320px;
|
|
|
|
}
|
|
|
|
|
2019-11-02 20:21:06 +00:00
|
|
|
.dict-delete-table {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.dict-delete-table>*:first-child {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
.dict-delete-table>*:nth-child(n+2) {
|
|
|
|
display: table-cell;
|
|
|
|
width: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.dict-delete-table .progress {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2019-10-13 21:32:28 +00:00
|
|
|
[data-show-for-browser],
|
|
|
|
[data-show-for-operating-system] {
|
2019-09-28 16:41:24 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-10-13 21:32:28 +00:00
|
|
|
html:root[data-browser=edge] [data-show-for-browser~=edge],
|
|
|
|
html:root[data-browser=chrome] [data-show-for-browser~=chrome],
|
|
|
|
html:root[data-browser=firefox] [data-show-for-browser~=firefox],
|
|
|
|
html:root[data-browser=firefox-mobile] [data-show-for-browser~=firefox-mobile],
|
|
|
|
html:root[data-operating-system=mac] [data-show-for-operating-system~=mac],
|
|
|
|
html:root[data-operating-system=win] [data-show-for-operating-system~=win],
|
|
|
|
html:root[data-operating-system=android] [data-show-for-operating-system~=android],
|
|
|
|
html:root[data-operating-system=cros] [data-show-for-operating-system~=cros],
|
|
|
|
html:root[data-operating-system=linux] [data-show-for-operating-system~=linux],
|
|
|
|
html:root[data-operating-system=openbsd] [data-show-for-operating-system~=openbsd] {
|
2019-09-28 16:41:24 +00:00
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 740px) {
|
|
|
|
.col-xs-6 {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.col-xs-6+.col-xs-6 {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
2019-09-28 17:30:41 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.condition {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.condition-input {
|
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
.condition-line-break {
|
|
|
|
display: block;
|
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
}
|