diff options
author | tcit <tcit@tcit.fr> | 2014-05-16 15:34:13 +0200 |
---|---|---|
committer | tcit <tcit@tcit.fr> | 2014-05-16 15:34:13 +0200 |
commit | 74e09e562ba46c52da364539aa4fc0414114ca87 (patch) | |
tree | 7de35824765729a5f3c25052d47cfa25fa0be9f5 /themes/baggy/css/main.css | |
parent | 4555c38d3b857bf91ed383f379d9697ed6a79860 (diff) | |
download | wallabag-74e09e562ba46c52da364539aa4fc0414114ca87.tar.gz wallabag-74e09e562ba46c52da364539aa4fc0414114ca87.tar.zst wallabag-74e09e562ba46c52da364539aa4fc0414114ca87.zip |
better wallabag in wallabag button (see #685)
Diffstat (limited to 'themes/baggy/css/main.css')
-rwxr-xr-x | themes/baggy/css/main.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/themes/baggy/css/main.css b/themes/baggy/css/main.css index 52d8ecaa..6d3a56e1 100755 --- a/themes/baggy/css/main.css +++ b/themes/baggy/css/main.css | |||
@@ -537,7 +537,7 @@ footer a { | |||
537 | } | 537 | } |
538 | 538 | ||
539 | /* ========================================================================== | 539 | /* ========================================================================== |
540 | 2.1 = "save a link" popup div related styles | 540 | 2.1 = "save a link" related styles |
541 | ========================================================================== */ | 541 | ========================================================================== */ |
542 | 542 | ||
543 | #bagit-form, #search-form { | 543 | #bagit-form, #search-form { |
@@ -609,6 +609,25 @@ a#bagit-form-close:hover, a#search-form-close:hover { | |||
609 | padding: 0 3px 2px 3px; | 609 | padding: 0 3px 2px 3px; |
610 | } | 610 | } |
611 | 611 | ||
612 | a.add-to-wallabag-link-after { | ||
613 | visibility: hidden; | ||
614 | position: absolute; | ||
615 | opacity: 0; | ||
616 | transition-duration: 2s; | ||
617 | transition-timing-function: ease-out; | ||
618 | } | ||
619 | |||
620 | #article article a:hover + a.add-to-wallabag-link-after, a.add-to-wallabag-link-after:hover { | ||
621 | opacity: 1; | ||
622 | visibility: visible; | ||
623 | transition-duration: .3s; | ||
624 | transition-timing-function: ease-in; | ||
625 | } | ||
626 | |||
627 | a.add-to-wallabag-link-after:after { | ||
628 | content: "w"; | ||
629 | } | ||
630 | |||
612 | #add-link-result { | 631 | #add-link-result { |
613 | font-weight: bold; | 632 | font-weight: bold; |
614 | margin-top: 10px; | 633 | margin-top: 10px; |