diff options
Diffstat (limited to 'themes/default/css/style.css')
-rwxr-xr-x | themes/default/css/style.css | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/themes/default/css/style.css b/themes/default/css/style.css index e536ac6b..e58ef81a 100755 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css | |||
@@ -331,7 +331,8 @@ a.email span, | |||
331 | a.delete span, | 331 | a.delete span, |
332 | a.link span, | 332 | a.link span, |
333 | a.bad-display span, | 333 | a.bad-display span, |
334 | a.reading-time span { | 334 | a.reading-time span, |
335 | a.print span { | ||
335 | background-repeat: no-repeat; | 336 | background-repeat: no-repeat; |
336 | } | 337 | } |
337 | 338 | ||
@@ -383,8 +384,8 @@ a#bagit-form-close { | |||
383 | background-color: #000; | 384 | background-color: #000; |
384 | color: #fff; | 385 | color: #fff; |
385 | padding: 0 4px 1px 3px; | 386 | padding: 0 4px 1px 3px; |
386 | font-weight: bold; | 387 | font-weight: bold; |
387 | font-size: 0.7em; | 388 | font-size: 0.7em; |
388 | border-radius: 4px; | 389 | border-radius: 4px; |
389 | } | 390 | } |
390 | .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 { |
@@ -393,6 +394,23 @@ a#bagit-form-close { | |||
393 | .add-to-wallabag-link-after:visited { | 394 | .add-to-wallabag-link-after:visited { |
394 | color: #999; | 395 | color: #999; |
395 | } | 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 | |||
396 | 414 | ||
397 | #add-link-result { | 415 | #add-link-result { |
398 | display: inline; | 416 | display: inline; |
@@ -402,3 +420,13 @@ a#bagit-form-close { | |||
402 | .opacity03 { | 420 | .opacity03 { |
403 | /*opacity: 0.3;*/ | 421 | /*opacity: 0.3;*/ |
404 | } | 422 | } |
423 | |||
424 | #readLeftPercent { | ||
425 | display: inline-block; | ||
426 | /* Show textual content */ | ||
427 | overflow: visible; | ||
428 | text-align: left; | ||
429 | text-indent: 0; | ||
430 | color: black; | ||
431 | width: 50px; | ||
432 | } \ No newline at end of file | ||