mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
Fix: Old reviewer css
This commit is contained in:
parent
1b3c918a97
commit
9011cf87ff
3 changed files with 94 additions and 78 deletions
84
qt/aqt/data/web/css/reviewer-bottom.scss
Normal file
84
qt/aqt/data/web/css/reviewer-bottom.scss
Normal file
|
|
@ -0,0 +1,84 @@
|
||||||
|
/* Copyright: Ankitects Pty Ltd and contributors
|
||||||
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
||||||
|
|
||||||
|
@use "../../../../../ts/lib/sass/root-vars";
|
||||||
|
@use "../../../../../ts/lib/sass/vars" as *;
|
||||||
|
@use "../../../../../ts/lib/sass/card-counts";
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--focus-color: #{palette-of(border-focus)};
|
||||||
|
|
||||||
|
.isMac {
|
||||||
|
--focus-color: rgba(0 103 244 / 0.247);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#middle td[align="center"] {
|
||||||
|
padding-top: 10px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
min-width: 60px;
|
||||||
|
white-space: nowrap;
|
||||||
|
margin: 9px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hitem {
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat {
|
||||||
|
padding-top: 10px;
|
||||||
|
|
||||||
|
@media (max-width: 583px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat2 {
|
||||||
|
padding-top: 10px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
:focus {
|
||||||
|
border-color: color(border-focus);
|
||||||
|
}
|
||||||
|
|
||||||
|
.nobold,
|
||||||
|
.stattxt {
|
||||||
|
position: absolute;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-size: small;
|
||||||
|
top: -3px;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -100%);
|
||||||
|
font-weight: normal;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spacer {
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spacer2 {
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outer {
|
||||||
|
border-top: 1px solid color(border);
|
||||||
|
/* Better compatibility with graphics pad/touchscreen */
|
||||||
|
-webkit-user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nightMode {
|
||||||
|
#outer {
|
||||||
|
border-top-color: color(border-subtle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -60,6 +60,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
grid-auto-flow: column;
|
grid-auto-flow: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#outer {
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.more,
|
.more,
|
||||||
.edit {
|
.edit {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
|
|
@ -1,87 +1,15 @@
|
||||||
/* Copyright: Ankitects Pty Ltd and contributors
|
/* Copyright: Ankitects Pty Ltd and contributors
|
||||||
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
||||||
|
|
||||||
@use "../../../lib/sass/root-vars";
|
@use "../../../../qt/aqt/data/web/css/reviewer-bottom.scss";
|
||||||
@use "../../../lib/sass/vars" as *;
|
@use "../../../../qt/aqt/data/web/css/toolbar.scss";
|
||||||
@use "../../../lib/sass/card-counts";
|
|
||||||
@use "../../../lib/sass/buttons";
|
@use "../../../lib/sass/buttons";
|
||||||
|
|
||||||
:root {
|
html body {
|
||||||
--focus-color: #{palette-of(border-focus)};
|
|
||||||
|
|
||||||
.isMac {
|
|
||||||
--focus-color: rgba(0 103 244 / 0.247);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
height: 72px;
|
height: 72px;
|
||||||
}
|
|
||||||
|
|
||||||
#middle td[align="center"] {
|
button {
|
||||||
padding-top: 10px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
white-space: nowrap;
|
|
||||||
margin: 9px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hitem {
|
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat {
|
|
||||||
padding-top: 10px;
|
|
||||||
|
|
||||||
@media (max-width: 583px) {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat2 {
|
|
||||||
padding-top: 10px;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
:focus {
|
|
||||||
border-color: color(border-focus);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nobold,
|
|
||||||
.stattxt {
|
|
||||||
position: absolute;
|
|
||||||
white-space: nowrap;
|
|
||||||
font-size: small;
|
|
||||||
top: -3px;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -100%);
|
|
||||||
font-weight: normal;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spacer {
|
|
||||||
height: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spacer2 {
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#outer {
|
|
||||||
border-top: 1px solid color(border);
|
|
||||||
/* Better compatibility with graphics pad/touchscreen */
|
|
||||||
-webkit-user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nightMode {
|
|
||||||
#outer {
|
|
||||||
border-top-color: color(border-subtle);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue