summaryrefslogtreecommitdiff
path: root/.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-10-01 08:37:56 +0300
committerThanosApollo <[email protected]>2022-10-01 08:37:56 +0300
commitaeb7f1457eb5fa0591f2f1020d83a616d9b1fcb6 (patch)
treeb5b7fd4ee1bd336d82348ff0a799f1e0c8847fdb /.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css
parenta4a7c05aaa05c267ce304697daddde6637fbd8a9 (diff)
Remove anki add ons
Diffstat (limited to '.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css')
-rw-r--r--.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css40
1 files changed, 0 insertions, 40 deletions
diff --git a/.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css b/.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css
deleted file mode 100644
index 1e07817..0000000
--- a/.local/share/Anki2/addons21/anki_reworked/files/BottomBar.css
+++ /dev/null
@@ -1,40 +0,0 @@
-body #outer button {
- color: var(--text-fg, var(--legacy-text-fg));
- border: none;
- border-radius: 15px;
- padding: 6px 24px;
- margin: 0 5px;
- cursor: pointer;
- font-weight: 500;
- font-size: 0.875rem;
- line-height: 1.75;
- letter-spacing: 0.02857em;
- text-transform: uppercase;
- min-width: 64px;
- background-color: var(--frame-bg, var(--legacy-frame-bg));
- transition: background 0.2s linear, color 0.3s ease-out;
- box-shadow: rgb(0 0 0 / 20%) 0px 3px 7px -2px,
- rgb(0 0 0 / 5%) 0px 5px 10px 0px, rgb(0 0 0 / 12%) 0px 1px 5px 0px;
-}
-body.nightMode #outer button {
- background: initial;
- background-color: var(--frame-bg, var(--legacy-frame-bg));
-}
-
-body #outer button:focus,
-body #outer button.focus {
- background-color: var(--primary-color);
- color: var(--frame-bg, var(--legacy-frame-bg));
- outline: none;
-}
-body.nightMode #outer button:focus,
-body.nightMode #outer button.focus {
- color: var(--text-fg, var(--legacy-text-fg));
-}
-
-body #outer button:hover {
- background-color: rgba(0, 0, 0, 0.05);
-}
-body.nightMode #outer button:hover {
- background-color: rgba(255, 255, 255, 0.1);
-}