2016-04-15 03:36:00 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2016-2020 Yomichan Authors
|
2016-04-15 03:36:00 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2017-03-04 04:25:14 +00:00
|
|
|
* it under the entrys of the GNU General Public License as published by
|
2016-04-15 03:36:00 +00:00
|
|
|
* 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/>.
|
2016-04-15 03:36:00 +00:00
|
|
|
*/
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
/*
|
|
|
|
* Variables
|
|
|
|
*/
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--background-color: #ffffff;
|
|
|
|
--glossary-image-background-color: #eeeeee;
|
|
|
|
|
|
|
|
--dark-text-color: #000000;
|
|
|
|
--default-text-color: #333333;
|
|
|
|
--light-text-color: #777777;
|
|
|
|
--very-light-text-color: #999999;
|
2020-05-24 17:37:23 +00:00
|
|
|
--popuplar-kanji-text-color: #0275d8;
|
2020-05-10 18:07:25 +00:00
|
|
|
|
|
|
|
--light-border-color: #eeeeee;
|
|
|
|
--medium-border-color: #dddddd;
|
|
|
|
--dark-border-color: #777777;
|
|
|
|
|
|
|
|
--pitch-accent-annotation-color: #000000;
|
|
|
|
|
|
|
|
--tag-text-color: #ffffff;
|
|
|
|
--tag-default-background-color: #8a8a91;
|
|
|
|
--tag-name-background-color: #5cb85c;
|
|
|
|
--tag-expression-background-color: #f0ad4e;
|
|
|
|
--tag-popular-background-color: #0275d8;
|
|
|
|
--tag-frequent-background-color: #5bc0de;
|
|
|
|
--tag-archaism-background-color: #d9534f;
|
|
|
|
--tag-dictionary-background-color: #aa66cc;
|
|
|
|
--tag-frequency-background-color: #5cb85c;
|
|
|
|
--tag-part-of-speech-background-color: #565656;
|
|
|
|
--tag-search-background-color: #8a8a91;
|
|
|
|
--tag-pitch-accent-dictionary-background-color: #6640be;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-yomichan-theme=dark] {
|
|
|
|
--background-color: #1e1e1e;
|
|
|
|
--glossary-image-background-color: #2f2f2f;
|
|
|
|
|
|
|
|
--dark-text-color: #d8d8d8;
|
|
|
|
--default-text-color: #d4d4d4;
|
|
|
|
--light-text-color: #888888;
|
|
|
|
--very-light-text-color: #666666;
|
2020-05-24 17:37:23 +00:00
|
|
|
--popuplar-kanji-text-color: #0275d8;
|
2020-05-10 18:07:25 +00:00
|
|
|
|
|
|
|
--light-border-color: #2f2f2f;
|
|
|
|
--medium-border-color: #3f3f3f;
|
|
|
|
--dark-border-color: #888888;
|
|
|
|
|
|
|
|
--pitch-accent-annotation-color: #ffffff;
|
|
|
|
|
|
|
|
--tag-text-color: #e1e1e1;
|
|
|
|
--tag-default-background-color: #69696e;
|
|
|
|
--tag-name-background-color: #489148;
|
|
|
|
--tag-expression-background-color: #b07f39;
|
|
|
|
--tag-popular-background-color: #025caa;
|
|
|
|
--tag-frequent-background-color: #4490a7;
|
|
|
|
--tag-archaism-background-color: #b04340;
|
|
|
|
--tag-dictionary-background-color: #9057ad;
|
|
|
|
--tag-frequency-background-color: #489148;
|
|
|
|
--tag-part-of-speech-background-color: #565656;
|
|
|
|
--tag-search-background-color: #69696e;
|
|
|
|
--tag-pitch-accent-dictionary-background-color: #6640be;
|
|
|
|
}
|
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fonts
|
|
|
|
*/
|
2016-04-29 03:36:55 +00:00
|
|
|
|
2017-01-07 20:21:47 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: kanji-stroke-orders;
|
2017-03-04 20:27:05 +00:00
|
|
|
src: url('/mixed/ttf/kanji-stroke-orders.ttf');
|
2017-01-07 20:21:47 +00:00
|
|
|
}
|
2017-03-04 04:25:14 +00:00
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
/*
|
|
|
|
* General
|
|
|
|
*/
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=float]:not([data-yomichan-theme]),
|
|
|
|
:root[data-yomichan-page=float]:not([data-yomichan-theme]) body {
|
2019-10-12 21:06:03 +00:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-12-23 15:53:47 +00:00
|
|
|
:root {
|
2019-10-12 20:27:49 +00:00
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
font-size: 14px;
|
2019-12-25 02:45:57 +00:00
|
|
|
line-height: 1.42857143; /* 14px => 20px */
|
2019-12-23 15:53:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2019-10-12 20:27:49 +00:00
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
2019-12-27 23:15:16 +00:00
|
|
|
overflow-y: scroll; /* always show scroll bar */
|
2020-05-10 18:07:25 +00:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--default-text-color);
|
2019-10-12 20:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ol, ul {
|
|
|
|
margin-top: 0;
|
2019-12-25 02:45:57 +00:00
|
|
|
margin-bottom: 0.72em;
|
2016-04-15 03:36:00 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 19:53:55 +00:00
|
|
|
#spinner {
|
2017-03-04 04:25:14 +00:00
|
|
|
position: fixed;
|
2019-12-25 02:45:57 +00:00
|
|
|
z-index: 1;
|
|
|
|
right: 0.36em;
|
|
|
|
bottom: 0.36em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#spinner>img {
|
|
|
|
width: 2.28571428em; /* 14px => 32px */
|
|
|
|
height: 2.28571428em; /* 14px => 32px */
|
2017-03-04 04:25:14 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 19:04:54 +00:00
|
|
|
h2 {
|
|
|
|
font-size: 1.25em;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0.25em 0 0;
|
2020-05-10 18:07:25 +00:00
|
|
|
border-bottom: 0.05714285714285714em solid var(--light-border-color); /* 14px * 1.25em => 1px */
|
2020-03-01 19:04:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
|
2019-11-28 16:06:24 +00:00
|
|
|
/*
|
|
|
|
* Navigation
|
|
|
|
*/
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.navigation-header {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 2.1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0.25em 0.5em;
|
2020-05-10 18:07:25 +00:00
|
|
|
border-bottom: 0.07142857em solid var(--light-border-color); /* 14px => 1px */
|
|
|
|
background-color: var(--background-color);
|
2020-03-01 16:31:19 +00:00
|
|
|
z-index: 10;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=search] .navigation-header {
|
2019-12-28 21:07:03 +00:00
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=float] .navigation-header {
|
2019-11-28 16:06:24 +00:00
|
|
|
position: fixed;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=float] .navigation-header:not([hidden])~.navigation-header-spacer {
|
2019-12-25 02:45:57 +00:00
|
|
|
height: 2.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-header-actions {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.navigation-header:not([data-has-previous=true]) .navigation-header-actions .action-button.action-previous:before,
|
|
|
|
.navigation-header:not([data-has-next=true]) .navigation-header-actions .action-button.action-next:before {
|
2019-12-25 02:45:57 +00:00
|
|
|
opacity: 0.25;
|
|
|
|
-webkit-filter: grayscale(100%);
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.action-button.action-next:before {
|
2019-12-25 02:45:57 +00:00
|
|
|
transform: scaleX(-1);
|
2019-11-28 16:06:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
|
2019-11-10 01:15:55 +00:00
|
|
|
/*
|
|
|
|
* Search page
|
|
|
|
*/
|
|
|
|
|
|
|
|
.icon-checkbox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.icon-checkbox+label {
|
2019-11-10 01:15:55 +00:00
|
|
|
cursor: pointer;
|
2019-12-25 02:45:57 +00:00
|
|
|
font-size: 1.6em;
|
|
|
|
padding: 0.1em;
|
2019-11-10 01:15:55 +00:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
.icon-checkbox:checked+label {
|
|
|
|
/* Invert colors */
|
|
|
|
background-color: var(--default-text-color);
|
|
|
|
color: var(--background-color);
|
|
|
|
}
|
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
#query-parser-content {
|
2019-12-25 02:45:57 +00:00
|
|
|
margin-top: 0.5em;
|
|
|
|
font-size: 2em;
|
2019-10-29 21:49:36 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
#query-parser-content[data-term-spacing=true] .query-parser-term {
|
2019-12-25 02:45:57 +00:00
|
|
|
margin-right: 0.2em;
|
2019-10-30 10:06:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=search][data-search-mode=popup] .search-input {
|
2020-02-02 14:08:19 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-11-10 01:15:55 +00:00
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
/*
|
|
|
|
* Entries
|
|
|
|
*/
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.entry {
|
|
|
|
padding-top: 0.72em;
|
|
|
|
padding-bottom: 0.72em;
|
2017-03-19 00:40:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root[data-yomichan-page=float] .entry {
|
2019-12-25 02:45:57 +00:00
|
|
|
padding-left: 0.72em;
|
|
|
|
padding-right: 0.72em;
|
2019-10-12 20:27:49 +00:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.action-button.disabled {
|
2016-05-05 02:10:28 +00:00
|
|
|
pointer-events: none;
|
2017-03-04 04:25:14 +00:00
|
|
|
cursor: default;
|
2016-05-05 02:10:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.action-button.disabled:before {
|
2016-05-04 05:07:05 +00:00
|
|
|
-webkit-filter: grayscale(100%);
|
2019-10-12 20:27:49 +00:00
|
|
|
filter: grayscale(100%);
|
2017-03-04 04:25:14 +00:00
|
|
|
opacity: 0.25;
|
2016-05-04 05:07:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.action-button.pending {
|
2017-01-04 06:17:53 +00:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
.actions {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: flex;
|
2017-03-04 04:25:14 +00:00
|
|
|
float: right;
|
2019-12-25 02:45:57 +00:00
|
|
|
margin: -0.25em;
|
2017-01-09 03:03:48 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 04:25:14 +00:00
|
|
|
.actions:after {
|
|
|
|
clear: both;
|
|
|
|
content: '';
|
|
|
|
display: block;
|
2017-02-06 00:39:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.action-button {
|
2017-03-04 04:25:14 +00:00
|
|
|
display: inline-block;
|
2019-12-25 02:45:57 +00:00
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
2020-01-18 15:52:14 +00:00
|
|
|
padding: 0.3em;
|
2019-12-25 02:45:57 +00:00
|
|
|
background: transparent;
|
2020-01-18 15:52:14 +00:00
|
|
|
font-size: inherit;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button.action-button {
|
|
|
|
cursor: pointer;
|
2016-04-29 03:36:55 +00:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.action-button[data-icon]:before {
|
|
|
|
content: "";
|
2019-12-25 02:45:57 +00:00
|
|
|
width: 1.14285714em; /* 14px => 16px */
|
|
|
|
height: 1.14285714em; /* 14px => 16px */
|
|
|
|
display: block;
|
2020-05-24 17:37:23 +00:00
|
|
|
background-color: transparent;
|
|
|
|
background-repeat: no-repeat;
|
2020-06-06 21:08:20 +00:00
|
|
|
background-size: contain;
|
2020-05-24 17:37:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-button[data-icon=entry-current]:before {
|
|
|
|
background-image: url("/mixed/img/entry-current.svg");
|
|
|
|
}
|
|
|
|
.action-button[data-icon=view-note]:before {
|
|
|
|
background-image: url("/mixed/img/view-note.svg");
|
|
|
|
}
|
|
|
|
.action-button[data-icon=add-term-kanji]:before {
|
|
|
|
background-image: url("/mixed/img/add-term-kanji.svg");
|
|
|
|
}
|
|
|
|
.action-button[data-icon=add-term-kana]:before {
|
|
|
|
background-image: url("/mixed/img/add-term-kana.svg");
|
|
|
|
}
|
|
|
|
.action-button[data-icon=play-audio]:before {
|
|
|
|
background-image: url("/mixed/img/play-audio.svg");
|
|
|
|
}
|
|
|
|
.action-button[data-icon=source-term]:before {
|
|
|
|
background-image: url("/mixed/img/source-term.svg");
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression .kanji-link {
|
2020-05-10 18:07:25 +00:00
|
|
|
border-bottom: 0.03571428em dashed var(--dark-border-color); /* 28px => 1px */
|
|
|
|
color: var(--default-text-color);
|
2016-04-29 03:36:55 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
.term-expression[data-frequency=popular]>.term-expression-text,
|
|
|
|
.term-expression[data-frequency=popular]>.term-expression-text .kanji-link {
|
|
|
|
color: var(--popuplar-kanji-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression[data-frequency=rare]>.term-expression-text,
|
|
|
|
.term-expression[data-frequency=rare]>.term-expression-text .kanji-link {
|
|
|
|
color: var(--very-light-text-color);
|
|
|
|
}
|
|
|
|
|
2020-06-06 21:08:46 +00:00
|
|
|
.entry:not(.entry-current) .action-current-indicator {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
2020-01-30 00:52:24 +00:00
|
|
|
display: inline-block;
|
2019-12-25 02:45:57 +00:00
|
|
|
padding: 0.2em 0.6em 0.3em;
|
|
|
|
font-size: 75%;
|
|
|
|
font-weight: 700;
|
2020-01-30 00:52:24 +00:00
|
|
|
line-height: 1.25;
|
2019-12-25 02:45:57 +00:00
|
|
|
text-align: center;
|
2017-10-07 04:02:50 +00:00
|
|
|
white-space: nowrap;
|
2019-12-25 02:45:57 +00:00
|
|
|
vertical-align: baseline;
|
|
|
|
border-radius: 0.25em;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--tag-text-color);
|
|
|
|
background-color: var(--tag-default-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=name] {
|
|
|
|
background-color: var(--tag-name-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=expression] {
|
|
|
|
background-color: var(--tag-expression-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=popular] {
|
|
|
|
background-color: var(--tag-popular-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=frequent] {
|
|
|
|
background-color: var(--tag-frequent-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=archaism] {
|
|
|
|
background-color: var(--tag-archaism-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=dictionary] {
|
|
|
|
background-color: var(--tag-dictionary-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=frequency] {
|
|
|
|
background-color: var(--tag-frequency-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=partOfSpeech] {
|
|
|
|
background-color: var(--tag-part-of-speech-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=search] {
|
|
|
|
background-color: var(--tag-search-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag[data-category=pitch-accent-dictionary] {
|
|
|
|
background-color: var(--tag-pitch-accent-dictionary-background-color);
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 00:52:24 +00:00
|
|
|
.tag-inner {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:37:23 +00:00
|
|
|
.tag-list>.tag {
|
2020-02-11 02:38:11 +00:00
|
|
|
margin-right: 0.375em;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-26 00:38:52 +00:00
|
|
|
:root:not([data-enable-search-tags=true]) .tag[data-category=search] {
|
2020-01-26 19:00:19 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.entry-header2,
|
|
|
|
.entry-header3 {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-frequency-separator::before {
|
|
|
|
content: ":";
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry+.entry {
|
2020-05-10 18:07:25 +00:00
|
|
|
border-top: 0.07142857em solid var(--light-border-color); /* 14px => 1px */
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 00:34:05 +00:00
|
|
|
.entry[data-type=term][data-expression-multi=true] .actions>.action-play-audio {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-reasons {
|
|
|
|
display: inline-block;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 01:47:24 +00:00
|
|
|
.term-reasons>.term-reason+.term-reason-separator+.term-reason:before {
|
2019-12-25 02:45:57 +00:00
|
|
|
content: " \00AB "; /* The two spaces is not a typo */
|
2020-01-30 23:59:32 +00:00
|
|
|
white-space: pre-wrap;
|
2019-12-25 02:45:57 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-list {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-text {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-details {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-details>.tags {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-details>.frequencies {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-expression-list>.term-expression:not(:last-of-type):after {
|
|
|
|
font-size: 2em;
|
|
|
|
content: "\3001";
|
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression-list>.term-expression:last-of-type:after {
|
2020-01-17 02:50:39 +00:00
|
|
|
font-size: 2em;
|
|
|
|
content: "\3000";
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression-list .term-expression-details {
|
2017-10-07 04:02:50 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2019-12-25 02:45:57 +00:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2017-10-07 04:02:50 +00:00
|
|
|
visibility: hidden;
|
2020-03-28 16:01:55 +00:00
|
|
|
z-index: 1;
|
2017-10-07 04:02:50 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression:hover .term-expression-details {
|
2019-12-25 02:45:57 +00:00
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression-list .term-expression-details>.action-play-audio {
|
2017-10-09 21:56:47 +00:00
|
|
|
position: absolute;
|
2019-12-25 02:45:57 +00:00
|
|
|
left: 0;
|
|
|
|
bottom: 0.5em;
|
2017-10-09 21:56:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry:not([data-expression-multi=true]) .term-expression-list .term-expression-details>.action-play-audio {
|
2020-03-01 19:45:57 +00:00
|
|
|
display: none;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression-list .term-expression-details>.tags {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: block;
|
2017-10-09 21:56:47 +00:00
|
|
|
position: absolute;
|
2019-12-25 02:45:57 +00:00
|
|
|
left: 0;
|
|
|
|
bottom: -0.5em;
|
|
|
|
white-space: nowrap;
|
2017-10-09 21:56:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 01:56:00 +00:00
|
|
|
.entry[data-expression-multi=true] .term-expression-list .term-expression-details>.frequencies {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: block;
|
2017-10-09 21:56:47 +00:00
|
|
|
position: absolute;
|
2019-12-25 02:45:57 +00:00
|
|
|
left: 0;
|
|
|
|
bottom: -1.9em;
|
|
|
|
white-space: nowrap;
|
2017-10-09 21:56:47 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.term-definition-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2017-10-07 04:02:50 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.term-definition-list:not([data-count="0"]):not([data-count="1"]) {
|
|
|
|
padding-left: 1.4em;
|
|
|
|
list-style-type: decimal;
|
2016-04-29 03:36:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.term-glossary-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2017-10-24 20:30:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.term-glossary-list:not([data-count="0"]):not([data-count="1"]) {
|
2016-08-08 02:56:50 +00:00
|
|
|
padding-left: 1.4em;
|
2019-12-25 02:45:57 +00:00
|
|
|
list-style-type: circle;
|
|
|
|
}
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
.term-glossary {
|
|
|
|
color: var(--dark-text-color);
|
|
|
|
}
|
|
|
|
|
2020-04-10 02:19:58 +00:00
|
|
|
.term-definition-disambiguation-list[data-count="0"] {
|
2019-12-25 02:45:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-04-10 02:19:58 +00:00
|
|
|
.term-definition-disambiguation-list:before {
|
2019-12-25 02:45:57 +00:00
|
|
|
content: "(";
|
|
|
|
}
|
|
|
|
|
2020-04-10 02:19:58 +00:00
|
|
|
.term-definition-disambiguation-list:after {
|
2020-05-24 17:37:23 +00:00
|
|
|
content: " only) ";
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 02:19:58 +00:00
|
|
|
.term-definition-disambiguation+.term-definition-disambiguation:before {
|
2019-12-25 02:45:57 +00:00
|
|
|
content: ", ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.debug-info {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-debug=true] .debug-info {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-anki-enabled=false] .action-view-note,
|
|
|
|
:root[data-anki-enabled=false] .action-add-note {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-audio-enabled=false] .action-play-audio {
|
|
|
|
display: none;
|
2016-04-15 03:36:00 +00:00
|
|
|
}
|
2016-04-16 05:33:13 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
:root[data-compact-glossaries=true] .term-definition-tag-list,
|
2020-04-10 02:19:58 +00:00
|
|
|
:root[data-compact-glossaries=true] .term-definition-disambiguation-list:not([data-count="0"]) {
|
2020-02-11 02:38:11 +00:00
|
|
|
display: inline;
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-compact-glossaries=true] .term-glossary-list {
|
2017-10-15 06:45:00 +00:00
|
|
|
display: inline;
|
|
|
|
list-style: none;
|
2019-12-25 02:45:57 +00:00
|
|
|
padding-left: 0;
|
2017-10-15 06:45:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
:root[data-compact-glossaries=true] .term-glossary-list>li {
|
2017-10-15 06:45:00 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
:root[data-compact-glossaries=true] .term-glossary-list>li:not(:first-child):before {
|
2020-01-30 23:59:32 +00:00
|
|
|
white-space: pre-wrap;
|
2017-10-15 06:45:00 +00:00
|
|
|
content: " | ";
|
2020-01-30 23:59:32 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-separator,
|
|
|
|
.term-reason-separator {
|
|
|
|
display: inline;
|
|
|
|
font-size: 0;
|
|
|
|
opacity: 0;
|
2020-02-02 01:20:32 +00:00
|
|
|
white-space: pre-wrap;
|
2017-10-15 06:45:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 02:38:11 +00:00
|
|
|
.term-special-tags>.frequencies {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2020-03-01 19:04:54 +00:00
|
|
|
.term-entry-body[data-section-count="0"] .term-entry-body-section-header,
|
|
|
|
.term-entry-body[data-section-count="1"] .term-entry-body-section-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-02-11 02:38:11 +00:00
|
|
|
|
2020-03-01 19:15:28 +00:00
|
|
|
/*
|
|
|
|
* Pitch accent styles
|
|
|
|
*/
|
|
|
|
|
2020-03-28 16:31:41 +00:00
|
|
|
.entry[data-pitch-accent-count='0'] .term-pitch-accent-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-container {
|
2020-05-10 18:07:25 +00:00
|
|
|
border-bottom: 0.05714285714285714em solid var(--light-border-color); /* 14px * 1.25em => 1px */
|
2020-03-28 16:31:41 +00:00
|
|
|
padding-bottom: 0.25em;
|
|
|
|
margin-bottom: 0.25em;
|
|
|
|
}
|
|
|
|
|
2020-03-01 19:15:28 +00:00
|
|
|
.term-pitch-accent-group-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2020-03-01 19:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-group-list:not([data-count="0"]):not([data-count="1"]) {
|
|
|
|
padding-left: 1.4em;
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-list:not([data-count="0"]):not([data-count="1"]) {
|
|
|
|
padding-left: 1.4em;
|
|
|
|
list-style-type: circle;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent {
|
|
|
|
display: inline;
|
|
|
|
line-height: 1.5em;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--dark-text-color);
|
2020-03-01 19:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-list:not([data-count="0"]):not([data-count="1"])>.term-pitch-accent {
|
|
|
|
display: list-item;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-group-tag-list {
|
|
|
|
margin-right: 0.375em;
|
|
|
|
}
|
2020-03-28 18:52:44 +00:00
|
|
|
|
2020-03-29 15:19:43 +00:00
|
|
|
.term-pitch-accent-disambiguation-list {
|
2020-03-28 18:52:44 +00:00
|
|
|
padding-right: 0.25em;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2020-03-28 18:52:44 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 15:19:43 +00:00
|
|
|
.term-pitch-accent-disambiguation-list:before {
|
2020-03-28 18:52:44 +00:00
|
|
|
content: "(";
|
2020-03-01 19:15:28 +00:00
|
|
|
}
|
2020-03-28 18:52:44 +00:00
|
|
|
|
2020-03-29 15:19:43 +00:00
|
|
|
.term-pitch-accent-disambiguation-list:after {
|
2020-03-28 18:52:44 +00:00
|
|
|
content: " only)";
|
|
|
|
}
|
|
|
|
|
2020-03-29 15:19:43 +00:00
|
|
|
.term-pitch-accent-disambiguation+.term-pitch-accent-disambiguation:before {
|
2020-03-28 18:52:44 +00:00
|
|
|
content: ", ";
|
2020-03-01 19:15:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 15:27:35 +00:00
|
|
|
.term-pitch-accent-disambiguation-list[data-count="0"],
|
|
|
|
:root[data-show-pitch-accent-downstep-notation=true] .term-pitch-accent-disambiguation-list[data-expression-count="0"],
|
|
|
|
:root[data-show-pitch-accent-downstep-notation=true] .term-pitch-accent-disambiguation[data-type=reading] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-03-01 19:15:28 +00:00
|
|
|
.term-pitch-accent-tag-list:not([data-count="0"]) {
|
|
|
|
margin-right: 0.375em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-special-tags>.pitches {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-character {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-05-10 18:07:25 +00:00
|
|
|
.term-pitch-accent-character:before {
|
|
|
|
border-color: var(--pitch-accent-annotation-color);
|
|
|
|
}
|
2020-03-01 19:15:28 +00:00
|
|
|
.term-pitch-accent-character[data-pitch='high']:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
user-select: none;
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 0.1em;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 0;
|
|
|
|
border-top-width: 0.1em;
|
|
|
|
border-top-style: solid;
|
|
|
|
}
|
|
|
|
.term-pitch-accent-character[data-pitch='high'][data-pitch-next='low']:before {
|
|
|
|
right: -0.1em;
|
|
|
|
height: 0.4em;
|
|
|
|
border-right-width: 0.1em;
|
|
|
|
border-right-style: solid;
|
|
|
|
}
|
|
|
|
.term-pitch-accent-character[data-pitch='high'][data-pitch-next='low'] {
|
|
|
|
padding-right: 0.1em;
|
|
|
|
margin-right: 0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-position:before {
|
|
|
|
content: " [";
|
|
|
|
}
|
|
|
|
.term-pitch-accent-position:after {
|
|
|
|
content: "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-pitch-accent-details {
|
|
|
|
display: inline-block;
|
|
|
|
height: 0;
|
|
|
|
padding: 0 0.25em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-01 19:38:16 +00:00
|
|
|
:root[data-show-pitch-accent-downstep-notation=false] .term-pitch-accent-characters {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-show-pitch-accent-position-notation=false] .term-pitch-accent-position {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-show-pitch-accent-graph=false] .term-pitch-accent-details {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-01 19:20:11 +00:00
|
|
|
/*
|
|
|
|
* Pitch accent graph styles
|
|
|
|
*/
|
|
|
|
|
|
|
|
.term-pitch-accent-graph {
|
|
|
|
display: block;
|
|
|
|
height: 1.5em;
|
|
|
|
transform: translateY(-0.875em);
|
|
|
|
}
|
|
|
|
.term-pitch-accent-graph-line,
|
|
|
|
.term-pitch-accent-graph-line-tail {
|
|
|
|
fill: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
stroke: var(--pitch-accent-annotation-color);
|
2020-03-01 19:20:11 +00:00
|
|
|
stroke-width: 5;
|
|
|
|
}
|
|
|
|
.term-pitch-accent-graph-line-tail {
|
|
|
|
stroke-dasharray: 5 5;
|
|
|
|
}
|
|
|
|
#term-pitch-accent-graph-dot {
|
2020-05-10 18:07:25 +00:00
|
|
|
fill: var(--pitch-accent-annotation-color);
|
|
|
|
stroke: var(--pitch-accent-annotation-color);
|
2020-03-01 19:20:11 +00:00
|
|
|
stroke-width: 5;
|
|
|
|
}
|
|
|
|
#term-pitch-accent-graph-dot-downstep {
|
|
|
|
fill: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
stroke: var(--pitch-accent-annotation-color);
|
2020-03-01 19:20:11 +00:00
|
|
|
stroke-width: 5;
|
|
|
|
}
|
|
|
|
#term-pitch-accent-graph-dot-downstep>circle:last-of-type {
|
2020-05-10 18:07:25 +00:00
|
|
|
fill: var(--pitch-accent-annotation-color);
|
2020-03-01 19:20:11 +00:00
|
|
|
}
|
|
|
|
#term-pitch-accent-graph-triangle {
|
|
|
|
fill: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
stroke: var(--pitch-accent-annotation-color);
|
2020-03-01 19:20:11 +00:00
|
|
|
stroke-width: 5;
|
|
|
|
}
|
|
|
|
|
2020-05-10 18:07:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Glossary images
|
|
|
|
*/
|
|
|
|
|
2020-04-11 18:23:49 +00:00
|
|
|
.term-glossary-image-container {
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 100%;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
|
|
|
line-height: 0;
|
|
|
|
font-size: 0.07142857em; /* 14px => 1px */
|
|
|
|
overflow: hidden;
|
2020-05-10 18:07:25 +00:00
|
|
|
background-color: var(--glossary-image-background-color);
|
2020-04-11 18:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-link {
|
|
|
|
cursor: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-link[href]:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-container-overlay {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 14em; /* 1px => 14px; */
|
|
|
|
line-height: 1.42857143; /* 14px => 20px */
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
white-space: normal;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2020-04-11 18:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-item[data-has-image=true][data-image-load-state=load-error] .term-glossary-image-container-overlay:after {
|
|
|
|
content: "Image failed to load";
|
|
|
|
display: table-cell;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: top;
|
|
|
|
object-fit: contain;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image:not([src]) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image[data-pixelated=true] {
|
|
|
|
image-rendering: auto;
|
|
|
|
image-rendering: -moz-crisp-edges;
|
|
|
|
image-rendering: -webkit-optimize-contrast;
|
|
|
|
image-rendering: pixelated;
|
|
|
|
image-rendering: crisp-edges;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-aspect-ratio-sizer {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
vertical-align: top;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-link-text:before {
|
|
|
|
content: "[";
|
|
|
|
}
|
|
|
|
|
|
|
|
.term-glossary-image-link-text:after {
|
|
|
|
content: "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-compact-glossaries=true] .term-glossary-image-container {
|
|
|
|
display: none;
|
2020-04-17 23:15:47 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-compact-glossaries=true] .entry:nth-last-of-type(1):not(:nth-of-type(1)) .term-glossary-image-container {
|
|
|
|
bottom: 100%;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-compact-glossaries=true] .term-glossary-image-link {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[data-compact-glossaries=true] .term-glossary-image-link:hover .term-glossary-image-container,
|
|
|
|
:root[data-compact-glossaries=true] .term-glossary-image-link:focus .term-glossary-image-container {
|
|
|
|
display: block;
|
2020-04-11 18:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:root:not([data-compact-glossaries=true]) .term-glossary-image-link-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root:not([data-compact-glossaries=true]) .term-glossary-image-description {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-03-01 19:20:11 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
/*
|
|
|
|
* Kanji
|
|
|
|
*/
|
2017-10-15 06:45:00 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-glyph {
|
2017-03-04 04:25:14 +00:00
|
|
|
font-family: kanji-stroke-orders;
|
2019-12-25 02:45:57 +00:00
|
|
|
font-size: 8.5em;
|
|
|
|
line-height: 1;
|
2017-03-04 04:25:14 +00:00
|
|
|
padding: 0.01em;
|
2016-08-08 02:56:50 +00:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2017-09-15 21:03:05 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-glyph-data {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kanji-glyph-data>tbody>tr>* {
|
2020-05-10 18:07:25 +00:00
|
|
|
border-top: 0.07142857em solid var(--medium-border-color); /* 14px => 1px */
|
2019-12-25 02:45:57 +00:00
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 0.36em;
|
|
|
|
margin: 0;
|
2017-09-15 21:03:05 +00:00
|
|
|
}
|
2017-09-18 02:16:08 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-info-table {
|
2017-09-18 02:16:08 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-info-table>tbody>tr>th,
|
|
|
|
.kanji-info-table>tbody>tr>td {
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kanji-info-table>tbody>tr>td {
|
2017-09-18 02:16:08 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
2019-09-15 22:44:49 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-glyph-data dl {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 1.4em;
|
2019-09-15 22:44:49 +00:00
|
|
|
}
|
2019-10-12 20:27:49 +00:00
|
|
|
|
2019-12-25 02:45:57 +00:00
|
|
|
.kanji-glyph-data dd {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kanji-glossary-list {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2020-05-10 18:07:25 +00:00
|
|
|
color: var(--light-text-color);
|
2019-12-25 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.kanji-glossary-list:not([data-count="0"]):not([data-count="1"]) {
|
|
|
|
padding-left: 1.4em;
|
|
|
|
list-style-type: decimal;
|
2019-10-12 20:27:49 +00:00
|
|
|
}
|
2020-05-10 18:07:25 +00:00
|
|
|
|
|
|
|
.kanji-glossary {
|
|
|
|
color: var(--dark-text-color);
|
|
|
|
}
|