diff options
Diffstat (limited to 'themes/default')
-rwxr-xr-x | themes/default/css/style.css | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 11a8ea1c..e58ef81a 100755 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css | |||
@@ -384,8 +384,8 @@ a#bagit-form-close { | |||
384 | background-color: #000; | 384 | background-color: #000; |
385 | color: #fff; | 385 | color: #fff; |
386 | padding: 0 4px 1px 3px; | 386 | padding: 0 4px 1px 3px; |
387 | font-weight: bold; | 387 | font-weight: bold; |
388 | font-size: 0.7em; | 388 | font-size: 0.7em; |
389 | border-radius: 4px; | 389 | border-radius: 4px; |
390 | } | 390 | } |
391 | .add-to-wallabag-link-after:hover, .add-to-wallabag-link-after:active { | 391 | .add-to-wallabag-link-after:hover, .add-to-wallabag-link-after:active { |
@@ -394,6 +394,23 @@ a#bagit-form-close { | |||
394 | .add-to-wallabag-link-after:visited { | 394 | .add-to-wallabag-link-after:visited { |
395 | color: #999; | 395 | color: #999; |
396 | } | 396 | } |
397 | a.add-to-wallabag-link-after { | ||
398 | visibility: hidden; | ||
399 | position: absolute; | ||
400 | opacity: 0; | ||
401 | transition-duration: 2s; | ||
402 | transition-timing-function: ease-out; | ||
403 | } | ||
404 | #article article a:hover + a.add-to-wallabag-link-after, a.add-to-wallabag-link-after:hover { | ||
405 | opacity: 1; | ||
406 | visibility: visible; | ||
407 | transition-duration: .3s; | ||
408 | transition-timing-function: ease-in; | ||
409 | } | ||
410 | a.add-to-wallabag-link-after:after { | ||
411 | content: "w"; | ||
412 | } | ||
413 | |||
397 | 414 | ||
398 | #add-link-result { | 415 | #add-link-result { |
399 | display: inline; | 416 | display: inline; |