diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-02 21:04:39 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-08 15:25:23 -0400 |
commit | 5457a4ce32f02991551e69fb68e7aaf49b445d87 (patch) | |
tree | f43246d4382c3ae22c0ba596d261e94b7e89e2c4 /ext/css | |
parent | 881170cf5a2a5923460e6b14b59daa3ca011a469 (diff) |
Add "Move to" menu option for moving dictionary options to a specific location (#1651)
* Add "Move to" option
* Fix IDs
Diffstat (limited to 'ext/css')
-rw-r--r-- | ext/css/settings.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/css/settings.css b/ext/css/settings.css index f0070a1f..588a5f90 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -2124,11 +2124,14 @@ button.hotkey-list-item-enabled-button[data-scope-count='0'] { .dictionary-list { width: 100%; display: grid; - grid-template-columns: auto 1fr auto auto; + grid-template-columns: auto auto 1fr auto auto; grid-template-rows: auto; place-items: center start; margin-top: 0.5em; } +.dictionary-list-index { + margin-right: 0.5em; +} .dictionary-list[data-count='0']>.dictionary-item-top { display: none; } |