diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-07 10:01:08 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-07 11:01:24 +0100 |
| commit | f842640e9d0d1c10d2a23fd93929d274ebd86ad1 (patch) | |
| tree | c397909bd4b40be04b073316ee6a3166c326f3cc /client/wmap.css | |
| parent | f29b392c6b68b7db98f5d6921ea588b559435f35 (diff) | |
Improve thumbnail rendering and dialog loading, flatten CSS1.0.1
Diffstat (limited to 'client/wmap.css')
| -rw-r--r-- | client/wmap.css | 55 |
1 files changed, 24 insertions, 31 deletions
diff --git a/client/wmap.css b/client/wmap.css index 7f4cdfd..a524bcb 100644 --- a/client/wmap.css +++ b/client/wmap.css @@ -1,34 +1,27 @@ .wmap { - position: relative; - - .actions { - background-color: #fff; - opacity: 0; - transition: all 300ms; - position: absolute; - bottom: 0; - right: 0; - padding: 0 2px; - - img { - height: 18px; - width: 18px; - } - } - - menu { - list-style: none; - padding: 0; - - li { display: inline-block; } - } - - &:hover .actions { - opacity: 1; - } - - img { - width: 100%; - } +} +.wmap .actions { + background-color: #fff; + opacity: 0; + transition: all 300ms; + position: absolute; + bottom: 0; + right: 0; + padding: 0 2px; +} +.wmap .actions img { + height: 18px; + width: 18px; +} +.wmap menu { + list-style: none; + padding: 0; +} +.wmap menu li { display: inline-block; } +.wmap:hover .actions { + opacity: 1; +} +.wmap img { + width: 100%; } |