yomichan/ext/mixed/css/display.css

676 lines
13 KiB
CSS
Raw Normal View History

2016-04-15 03:36:00 +00:00
/*
2020-01-01 17:00:00 +00:00
* Copyright (C) 2016-2020 Alex Yatskov <alex@foosoft.net>
2016-04-15 03:36:00 +00:00
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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
*/
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
/*
* 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 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143; /* 14px => 20px */
2019-12-23 15:53:47 +00:00
}
body {
margin: 0;
border: 0;
padding: 0;
2019-12-27 23:15:16 +00:00
overflow-y: scroll; /* always show scroll bar */
}
ol, ul {
margin-top: 0;
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;
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
}
h2 {
font-size: 1.25em;
font-weight: normal;
margin: 0.25em 0 0;
border-bottom-width: 0.05714285714285714em; /* 14px * 1.25em => 1px */
border-bottom-style: solid;
}
/*
* Navigation
*/
.navigation-header {
top: 0;
left: 0;
width: 100%;
height: 2.1em;
box-sizing: border-box;
padding: 0.25em 0.5em;
border-bottom-width: 0.07142857em; /* 14px => 1px */
border-bottom-style: solid;
2020-03-01 16:31:19 +00:00
z-index: 10;
}
2020-02-26 00:38:52 +00:00
:root[data-yomichan-page=search] .navigation-header {
position: sticky;
}
2020-02-26 00:38:52 +00:00
:root[data-yomichan-page=float] .navigation-header {
position: fixed;
}
2020-02-26 00:38:52 +00:00
:root[data-yomichan-page=float] .navigation-header:not([hidden])~.navigation-header-spacer {
height: 2.1em;
}
.navigation-header-actions {
display: flex;
}
.navigation-header:not([data-has-previous=true]) .navigation-header-actions .action-previous>img,
.navigation-header:not([data-has-next=true]) .navigation-header-actions .action-next>img {
opacity: 0.25;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.action-next>img {
transform: scaleX(-1);
}
2017-03-04 04:25:14 +00:00
/*
* Search page
*/
.icon-checkbox {
display: none;
}
.icon-checkbox+label {
cursor: pointer;
font-size: 1.6em;
padding: 0.1em;
user-select: none;
}
2020-02-06 02:00:02 +00:00
#query-parser-content {
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 {
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;
}
2017-03-04 04:25:14 +00:00
/*
* Entries
*/
.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 {
padding-left: 0.72em;
padding-right: 0.72em;
}
2017-03-04 04:25:14 +00:00
.actions .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
}
2017-03-04 04:25:14 +00:00
.actions .disabled img {
2016-05-04 05:07:05 +00:00
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
2017-03-04 04:25:14 +00:00
opacity: 0.25;
2016-05-04 05:07:05 +00:00
}
2017-03-04 04:25:14 +00:00
.actions .pending {
visibility: hidden;
}
2017-03-04 04:25:14 +00:00
.actions {
display: flex;
2017-03-04 04:25:14 +00:00
float: right;
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;
}
.action-button {
2017-03-04 04:25:14 +00:00
display: inline-block;
border: 0;
margin: 0;
2020-01-18 15:52:14 +00:00
padding: 0.3em;
background: transparent;
2020-01-18 15:52:14 +00:00
font-size: inherit;
}
button.action-button {
cursor: pointer;
2016-04-29 03:36:55 +00:00
}
.icon-image {
width: 1.14285714em; /* 14px => 16px */
height: 1.14285714em; /* 14px => 16px */
display: block;
}
.term-expression .kanji-link {
border-bottom-width: 0.03571428em; /* 28px => 1px */
2019-10-12 21:06:03 +00:00
border-bottom-style: dashed;
2016-04-29 03:36:55 +00:00
text-decoration: none;
}
.entry:not(.entry-current) .current {
display: none;
}
.tag {
2020-01-30 00:52:24 +00:00
display: inline-block;
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;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25em;
}
2020-01-30 00:52:24 +00:00
.tag-inner {
display: block;
}
2020-02-11 02:38:11 +00:00
.tag-list>.tag:not(:last-child) {
margin-right: 0.375em;
}
2020-02-26 00:38:52 +00:00
:root:not([data-enable-search-tags=true]) .tag[data-category=search] {
display: none;
}
.entry-header2,
.entry-header3 {
display: inline;
}
.term-frequency-separator::before {
content: ":";
}
.entry+.entry {
border-top-width: 0.07142857em; /* 14px => 1px */
border-top-style: solid;
}
.entry[data-type=term][data-expression-multi=true] .actions>.action-play-audio {
display: none;
}
.term-reasons {
display: inline-block;
}
.term-reasons>.term-reason+.term-reason-separator+.term-reason:before {
content: " \00AB "; /* The two spaces is not a typo */
2020-01-30 23:59:32 +00:00
white-space: pre-wrap;
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";
}
.term-expression-list[data-multi=true]>.term-expression:last-of-type:after {
2020-01-17 02:50:39 +00:00
font-size: 2em;
content: "\3000";
visibility: hidden;
}
.term-expression-list[data-multi=true] .term-expression-details {
display: inline-block;
position: relative;
width: 0;
height: 0;
visibility: hidden;
2020-03-28 16:01:55 +00:00
z-index: 1;
}
.term-expression-list[data-multi=true] .term-expression:hover .term-expression-details {
visibility: visible;
}
.term-expression-list[data-multi=true] .term-expression-details>.action-play-audio {
2017-10-09 21:56:47 +00:00
position: absolute;
left: 0;
bottom: 0.5em;
2017-10-09 21:56:47 +00:00
}
.term-expression-list:not([data-multi=true]) .term-expression-details>.action-play-audio {
display: none;
}
.term-expression-list[data-multi=true] .term-expression-details>.tags {
display: block;
2017-10-09 21:56:47 +00:00
position: absolute;
left: 0;
bottom: -0.5em;
white-space: nowrap;
2017-10-09 21:56:47 +00:00
}
.term-expression-list[data-multi=true] .term-expression-details>.frequencies {
display: block;
2017-10-09 21:56:47 +00:00
position: absolute;
left: 0;
bottom: -1.9em;
white-space: nowrap;
2017-10-09 21:56:47 +00:00
}
.term-definition-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.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
}
.term-glossary-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.term-glossary-list:not([data-count="0"]):not([data-count="1"]) {
2016-08-08 02:56:50 +00:00
padding-left: 1.4em;
list-style-type: circle;
}
.term-definition-only-list[data-count="0"] {
display: none;
}
.term-definition-only-list:before {
content: "(";
}
.term-definition-only-list:after {
content: " only)";
}
.term-definition-only+.term-definition-only:before {
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
:root[data-compact-glossaries=true] .term-definition-tag-list,
:root[data-compact-glossaries=true] .term-definition-only-list:not([data-count="0"]) {
2020-02-11 02:38:11 +00:00
display: inline;
}
:root[data-compact-glossaries=true] .term-glossary-list {
display: inline;
list-style: none;
padding-left: 0;
}
:root[data-compact-glossaries=true] .term-glossary-list>li {
display: inline;
}
: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;
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;
}
2020-02-11 02:38:11 +00:00
.term-special-tags>.frequencies {
display: inline;
}
.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
/*
* 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 {
border-bottom-width: 0.05714285714285714em; /* 14px * 1.25em => 1px */
border-bottom-style: solid;
padding-bottom: 0.25em;
margin-bottom: 0.25em;
}
.term-pitch-accent-group-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.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;
}
.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-29 15:19:43 +00:00
.term-pitch-accent-disambiguation-list {
padding-right: 0.25em;
}
2020-03-29 15:19:43 +00:00
.term-pitch-accent-disambiguation-list[data-count="0"] {
display: none;
}
2020-03-29 15:19:43 +00:00
.term-pitch-accent-disambiguation-list:before {
content: "(";
}
2020-03-29 15:19:43 +00:00
.term-pitch-accent-disambiguation-list:after {
content: " only)";
}
2020-03-29 15:19:43 +00:00
.term-pitch-accent-disambiguation+.term-pitch-accent-disambiguation:before {
content: ", ";
}
.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;
}
.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;
stroke: #000000;
stroke-width: 5;
}
.term-pitch-accent-graph-line-tail {
stroke-dasharray: 5 5;
}
#term-pitch-accent-graph-dot {
fill: #000000;
stroke: #000000;
stroke-width: 5;
}
#term-pitch-accent-graph-dot-downstep {
fill: none;
stroke: #000000;
stroke-width: 5;
}
#term-pitch-accent-graph-dot-downstep>circle:last-of-type {
fill: #000000;
}
#term-pitch-accent-graph-triangle {
fill: none;
stroke: #000000;
stroke-width: 5;
}
/*
* Kanji
*/
.kanji-glyph {
2017-03-04 04:25:14 +00:00
font-family: kanji-stroke-orders;
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
.kanji-glyph-data {
margin-top: 0.75em;
border-spacing: 0;
border-collapse: collapse;
}
.kanji-glyph-data>tbody>tr>* {
border-top-width: 0.07142857em; /* 14px => 1px */
border-top-style: solid;
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
.kanji-info-table {
2017-09-18 02:16:08 +00:00
width: 100%;
}
.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
.kanji-glyph-data dl {
margin-top: 0;
margin-bottom: 1.4em;
2019-09-15 22:44:49 +00:00
}
.kanji-glyph-data dd {
margin-left: 0;
}
.kanji-glossary-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.kanji-glossary-list:not([data-count="0"]):not([data-count="1"]) {
padding-left: 1.4em;
list-style-type: decimal;
}