diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-06-01 13:30:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-06-01 13:30:02 +0200 |
commit | ec6d4f8ac34e584f07606a65a911e8b2bc8554f8 (patch) | |
tree | 7b338998fb644dcd66cebb233937d080073b550c /view/theme/redbasic | |
parent | 6bf0f4225c0fc7ecc1762ed5cfe2c4861cd1bd4e (diff) | |
download | volse-hubzilla-ec6d4f8ac34e584f07606a65a911e8b2bc8554f8.tar.gz volse-hubzilla-ec6d4f8ac34e584f07606a65a911e8b2bc8554f8.tar.bz2 volse-hubzilla-ec6d4f8ac34e584f07606a65a911e8b2bc8554f8.zip |
add hover effect to dropdown caret
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/css/style.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4488dcddd..5e783c056 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1799,3 +1799,11 @@ dl.bb-dl > dd > li { .cover-photo-review { margin-bottom: 10px; } + +.hover-fx-hide { + opacity: 0; +} + +.hover-fx-show:hover .hover-fx-hide { + opacity: 1; +} |