From f61ffec3529cb422f6703057fedcc7e23188e724 Mon Sep 17 00:00:00 2001 From: Guillaume Boudreau Date: Mon, 19 May 2014 06:59:49 -0400 Subject: Fixed Baggy theme CSS for Chrome Extension (and < 500px width layout) --- themes/baggy/css/main.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'themes') diff --git a/themes/baggy/css/main.css b/themes/baggy/css/main.css index 6d3a56e1..6d320cd2 100755 --- a/themes/baggy/css/main.css +++ b/themes/baggy/css/main.css @@ -979,8 +979,8 @@ blockquote { content: none; } .logo { - width: 1.5em; - height: 1.5em; + width: 1.25em; + height: 1.25em; left: 0; top: 0; } @@ -1030,6 +1030,7 @@ blockquote { margin-left: 1.5em; padding-right: 1.5em; position: static; + margin-top: 3em; } #article_toolbar .topPosF { display: none; -- cgit v1.2.3 From a342945b617c44748a4ca6ec583326c43c9d7319 Mon Sep 17 00:00:00 2001 From: Maryana Rozhankivska Date: Sat, 24 May 2014 11:08:39 +0300 Subject: fix of rearch form popup in default theme --- themes/default/_search-form.twig | 14 -------------- 1 file changed, 14 deletions(-) mode change 100644 => 100755 themes/default/_search-form.twig (limited to 'themes') diff --git a/themes/default/_search-form.twig b/themes/default/_search-form.twig old mode 100644 new mode 100755 index 74f420d0..33bea20d --- a/themes/default/_search-form.twig +++ b/themes/default/_search-form.twig @@ -7,17 +7,3 @@

- \ No newline at end of file -- cgit v1.2.3 From 009669360d46645d8f84f444fe0f6895811f51a3 Mon Sep 17 00:00:00 2001 From: Maryana Rozhankivska Date: Sat, 24 May 2014 11:21:43 +0300 Subject: fix of onmouseover displaying of wallbabag a link in wallabag form in default theme --- themes/default/css/style.css | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'themes') 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 { background-color: #000; color: #fff; padding: 0 4px 1px 3px; - font-weight: bold; - font-size: 0.7em; + font-weight: bold; + font-size: 0.7em; border-radius: 4px; } .add-to-wallabag-link-after:hover, .add-to-wallabag-link-after:active { @@ -394,6 +394,23 @@ a#bagit-form-close { .add-to-wallabag-link-after:visited { color: #999; } +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 { display: inline; -- cgit v1.2.3