mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 00:12:25 -04:00

Running and testing should be working on the three platforms, but there's still a fair bit that needs to be done: - Wheel building + testing in a venv still needs to be implemented. - Python requirements still need to be compiled with piptool and pinned; need to compile on all platforms then merge - Cargo deps in cargo/ and rslib/ need to be cleaned up, and ideally unified into one place - Currently using rustls to work around openssl compilation issues on Linux, but this will break corporate proxies with custom SSL authorities; need to conditionally use openssl or use https://github.com/seanmonstar/reqwest/pull/1058 - Makefiles and docs still need cleaning up - It may make sense to reparent ts/* to the top level, as we don't nest the other modules under a specific language. - rspy and pylib must always be updated in lock-step, so merging rspy into pylib as a private module would simplify things. - Merging desktop-ftl and mobile-ftl into the core ftl would make managing and updating translations easier. - Obsolete scripts need removing. - And probably more.
69 lines
No EOL
1.4 KiB
SCSS
69 lines
No EOL
1.4 KiB
SCSS
/* night-mode-specific colours */
|
|
$fusion-button-gradient-start: #555555;
|
|
$fusion-button-gradient-end: #656565;
|
|
$fusion-button-outline: #222222;
|
|
$fusion-button-hover-bg: #656565;
|
|
$fusion-button-border: #646464;
|
|
$fusion-button-base-bg: #454545;
|
|
|
|
.isWin {
|
|
button {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.isMac {
|
|
button {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
.isLin {
|
|
button {
|
|
font-size: 14px;
|
|
|
|
-webkit-appearance: none;
|
|
border-radius: 3px;
|
|
padding: 5px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
}
|
|
|
|
.nightMode {
|
|
button {
|
|
-webkit-appearance: none;
|
|
color: var(--text-fg);
|
|
|
|
/* match the fusion button gradient */
|
|
background: linear-gradient(0deg,
|
|
$fusion-button-gradient-start 0%,
|
|
$fusion-button-gradient-end 100%);
|
|
box-shadow: 0 0 3px $fusion-button-outline;
|
|
border: 1px solid $fusion-button-border;
|
|
|
|
border-radius: 2px;
|
|
padding: 10px;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
button:hover {
|
|
background: $fusion-button-hover-bg;
|
|
}
|
|
}
|
|
|
|
/* imitate standard macOS dark mode buttons */
|
|
.isMac.nightMode.macos-dark-mode button:not(.linkb) {
|
|
background: #656565;
|
|
box-shadow: 0 1px 2px #222222;
|
|
border-top-color: #848484;
|
|
border-top-width: 0.5px;
|
|
border-bottom: 0;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
color: #e5e5e5;
|
|
} |