aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/css
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-22 20:18:46 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-22 20:18:46 +0200
commitd70dd7ac698a1f9e90c97fa7eb7b113bf84304fc (patch)
tree69c330e97e3de60dd6884ded76766426a598f30e /themes/baggy/css
parentdfff18f81b04e4f66890c37dc2a7bc0537fd0b1b (diff)
parent43c7b978c31bcbf9e8e5202ecbb7b6fccba6a7fa (diff)
downloadwallabag-d70dd7ac698a1f9e90c97fa7eb7b113bf84304fc.tar.gz
wallabag-d70dd7ac698a1f9e90c97fa7eb7b113bf84304fc.tar.zst
wallabag-d70dd7ac698a1f9e90c97fa7eb7b113bf84304fc.zip
Merge pull request #653 from mariroz/dev
print view fixed in baggy; print link added; read percent added in default theme; archive and favorite re-factored to be ajax action in article view
Diffstat (limited to 'themes/baggy/css')
-rwxr-xr-xthemes/baggy/css/main.css3
-rwxr-xr-xthemes/baggy/css/print.css14
2 files changed, 17 insertions, 0 deletions
diff --git a/themes/baggy/css/main.css b/themes/baggy/css/main.css
index 0991dbed..52d8ecaa 100755
--- a/themes/baggy/css/main.css
+++ b/themes/baggy/css/main.css
@@ -746,6 +746,9 @@ margin-top:1em;
746.icon-rss:before { 746.icon-rss:before {
747 content: "\e808"; 747 content: "\e808";
748} 748}
749.icon-print:before {
750 content: "\e80d";
751}
749 752
750/* ========================================================================== 753/* ==========================================================================
751 Icon selected 754 Icon selected
diff --git a/themes/baggy/css/print.css b/themes/baggy/css/print.css
index 9aefa779..9dd6d295 100755
--- a/themes/baggy/css/print.css
+++ b/themes/baggy/css/print.css
@@ -17,6 +17,7 @@ img {
17 17
18/* Hide useless blocks */ 18/* Hide useless blocks */
19body > header, 19body > header,
20#article_toolbar,
20#links, 21#links,
21#sort, 22#sort,
22body > footer, 23body > footer,
@@ -46,3 +47,16 @@ abbr[title]:after {
46.pagination span.current { 47.pagination span.current {
47 border-style: dashed; 48 border-style: dashed;
48} 49}
50
51#main {
52 width: 100%;
53 padding: 0;
54 margin: 0;
55 margin-left: 0;
56 padding-right: 0;
57 padding-bottom: 0;
58}
59
60#article {
61 width: 100%;
62}