Anki/qt/aqt/data/web/css/webview.scss
Damien Elmes 7d2ec8ed65 Only disable specific animations/transitions/shadows
If I've missed any, follow-up PRs would be most appreciated.

Closes #2557
2023-07-02 20:02:14 +10:00

39 lines
809 B
SCSS

/* Copyright: Ankitects Pty Ltd and contributors
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
@use "sass/root-vars";
@use "sass/scrollbar";
@use "sass/buttons";
* {
// border-box would be better, but we need to
// keep the old behaviour for now to avoid breaking
// add-ons/card templates
box-sizing: content-box;
}
body {
color: var(--fg);
background: var(--canvas);
&.fancy {
transition: opacity var(--transition-medium) ease-out;
}
margin: 2em;
overscroll-behavior: none;
&:not(.isMac),
&:not(.isMac) * {
@include scrollbar.custom;
}
&.no-blur * {
backdrop-filter: none !important;
}
}
a {
color: var(--fg-link);
text-decoration: none;
}
h1 {
margin-bottom: 0.2em;
}