diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-01-29 17:42:29 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-01-29 17:42:29 +0100 |
commit | e87f29e017a75af15d228d537bc20b9fc78ace24 (patch) | |
tree | cc4a7b76192d32290b569bedbcd8fedec9d7cda2 /yomichan-user/conf.d/custom.css | |
parent | 34ea3829e7cb435a4357b43fcfff514fdd39083e (diff) |
update sentense-export to work with user.js
Diffstat (limited to 'yomichan-user/conf.d/custom.css')
-rw-r--r-- | yomichan-user/conf.d/custom.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/yomichan-user/conf.d/custom.css b/yomichan-user/conf.d/custom.css new file mode 100644 index 0000000..7ce95f8 --- /dev/null +++ b/yomichan-user/conf.d/custom.css @@ -0,0 +1,23 @@ +.search-header { margin-top: 12px; } +.search-options { display: none; } +:root[data-theme=dark] #content-body { background-color: #000000; } +:root[data-theme=light] #content-body { background-color: #ffffff; } +.tag .tag-label { background-color: unset; } +.tag { + border: 2px solid var(--tag-color); + border-radius: 6px; +} +.frequency-group-tag .tag { border: none !important; } +.tag .tag-body::before { display: none; } +.frequency-value { font-weight: bold; } +:root[data-theme=dark] .frequency-value { color: var(--tag-color); } +.search-textbox-container { + border-radius: 6px; + overflow: hidden; +} +@media (hover: none) { + .entry .actions .action-button { padding: 16px; } + .search-header .search-button { width: 48px; } +} +:root[data-theme=light] { --tag-text-color: #333; } + |