diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-19 15:17:13 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-19 15:17:13 +0100 |
commit | 7785f0c75fd6db6c7db345a568093e7edb8b7573 (patch) | |
tree | 9054efb2de9d148bae289848b3023a34fb0020a7 /themes/default/css/style.css | |
parent | fb5a9666ed99abe16b8823a98aed1a6dce03bb04 (diff) | |
parent | 01cd443441c401a82ae021e08dedd6709100be2c (diff) | |
download | wallabag-7785f0c75fd6db6c7db345a568093e7edb8b7573.tar.gz wallabag-7785f0c75fd6db6c7db345a568093e7edb8b7573.tar.zst wallabag-7785f0c75fd6db6c7db345a568093e7edb8b7573.zip |
Merge pull request #467 from mariroz/dev
"save a link" added to top menu (default theme) to toggle "save link" form, issue #461
Diffstat (limited to 'themes/default/css/style.css')
-rw-r--r-- | themes/default/css/style.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 2088ee2e..28675907 100644 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css | |||
@@ -334,3 +334,16 @@ a.bad-display span, | |||
334 | a.reading-time span { | 334 | a.reading-time span { |
335 | background-repeat: no-repeat; | 335 | background-repeat: no-repeat; |
336 | } | 336 | } |
337 | |||
338 | .arrow-down { | ||
339 | width: 0px; | ||
340 | height: 0px; | ||
341 | border-style: solid; | ||
342 | border-width: 10px 10px 0 10px; | ||
343 | border-color: #000 transparent transparent transparent; | ||
344 | |||
345 | position: absolute; | ||
346 | margin-top: 1.5em; | ||
347 | margin-left: -30px; | ||
348 | } | ||
349 | |||