diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-28 14:04:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 14:04:20 -0400 |
commit | b4d6a5d3b4b83c7c3c7f835f775d3207a4b97067 (patch) | |
tree | 6039a7c190db6e4b8a4faeb5f8e74b5027bb82c4 /ext/css | |
parent | 98994d0b6529e665863bc9f6125eb3e116e0f9d5 (diff) |
Toggle option hotkey (#1571)
* Set up toggleOption hotkey action settings
* Update styles
* Disable spell check and autocomplete
* Add OptionToggleHotkeyHandler
* Improve auto-close behaviour
Diffstat (limited to 'ext/css')
-rw-r--r-- | ext/css/material.css | 9 | ||||
-rw-r--r-- | ext/css/settings.css | 6 |
2 files changed, 9 insertions, 6 deletions
diff --git a/ext/css/material.css b/ext/css/material.css index efa5a730..703f1268 100644 --- a/ext/css/material.css +++ b/ext/css/material.css @@ -177,6 +177,15 @@ } +/* Text styles */ +.light { + color: var(--text-color-light2); +} +.danger-text { + color: var(--danger-color); +} + + /* Icons */ .icon { --icon-image: none; diff --git a/ext/css/settings.css b/ext/css/settings.css index 9701aa56..e2485925 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -158,15 +158,9 @@ pre { /* Text styles */ -.light { - color: var(--text-color-light2); -} .warning-text { color: var(--warning-color); } -.danger-text { - color: var(--danger-color); -} /* Headings */ |