diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-25 09:56:21 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-25 09:56:21 +0200 |
commit | 0a51ea1bfa85d770f5dd2c7fd1428b785c17e125 (patch) | |
tree | c44eb87aa769020bec1707265ec8f7575fd5c51b /view/css | |
parent | c5b32032a74dfc4165b41be11b3d75ae75a45d93 (diff) | |
download | volse-hubzilla-0a51ea1bfa85d770f5dd2c7fd1428b785c17e125.tar.gz volse-hubzilla-0a51ea1bfa85d770f5dd2c7fd1428b785c17e125.tar.bz2 volse-hubzilla-0a51ea1bfa85d770f5dd2c7fd1428b785c17e125.zip |
show caret-down on item-photo hover to indicate a dropdown menu
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/conversation.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index c239a665b..c0d6712a9 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -87,6 +87,23 @@ margin-left:10px; } +.wall-item-photo-wrapper { + position: relative; +} + +.wall-item-photo-caret { + position: absolute; + left: 3px; + bottom: 0px; + color: #fff; + text-shadow: 1px 1px 3px rgba(0,0,0,0.5);; + display: none; +} + +.wall-item-photo-wrapper:hover .wall-item-photo-caret { + display: block; +} + .wall-item-divider { margin: 5px; } |