forked from wallabag/wallabag
better wallabag in wallabag button (see #685)
This commit is contained in:
@ -537,7 +537,7 @@ footer a {
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
2.1 = "save a link" popup div related styles
|
||||
2.1 = "save a link" related styles
|
||||
========================================================================== */
|
||||
|
||||
#bagit-form, #search-form {
|
||||
@ -609,6 +609,25 @@ a#bagit-form-close:hover, a#search-form-close:hover {
|
||||
padding: 0 3px 2px 3px;
|
||||
}
|
||||
|
||||
a.add-to-wallabag-link-after {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
transition-duration: 2s;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
|
||||
#article article a:hover + a.add-to-wallabag-link-after, a.add-to-wallabag-link-after:hover {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition-duration: .3s;
|
||||
transition-timing-function: ease-in;
|
||||
}
|
||||
|
||||
a.add-to-wallabag-link-after:after {
|
||||
content: "w";
|
||||
}
|
||||
|
||||
#add-link-result {
|
||||
font-weight: bold;
|
||||
margin-top: 10px;
|
||||
|
||||
Reference in New Issue
Block a user