diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-02 19:15:01 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-09 10:41:17 -0700 |
commit | e6cbb381752fd0c13cefcd66610fb00d71868b67 (patch) | |
tree | fa3356de93990cccf8fc55eaed3b51e3edb518d1 /apps/files/css/files.scss | |
parent | 1acdb73a7d77d42f1c01c91baeb5ed46047d66d4 (diff) | |
download | nextcloud-server-e6cbb381752fd0c13cefcd66610fb00d71868b67.tar.gz nextcloud-server-e6cbb381752fd0c13cefcd66610fb00d71868b67.zip |
fix: action icon color
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files/css/files.scss')
-rw-r--r-- | apps/files/css/files.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 369e13021d0..c7bcc50b7f7 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -593,7 +593,7 @@ table td.selection { background-color: var(--color-main-background); mask: var(--icon-star-rounded-white) no-repeat; mask-size: 22px 22px; - + width: 22px; height: 22px; display: flex; @@ -655,8 +655,11 @@ a.action > img { vertical-align: text-bottom; } -a.action.action-editlocally img.icon { - filter: var(--background-invert-if-dark); +a.action.action-editlocally, +a.action.action-setreminder { + img.icon { + filter: var(--background-invert-if-dark); + } } /* Actions for selected files */ |