mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-04 16:10:03 +00:00
64f81bc316
Signed-off-by: Thomas Citharel <tcit@tcit.fr> use scss Signed-off-by: Thomas Citharel <tcit@tcit.fr> fix build, add babel, fix annotations fixes (and improvements !) for baggy add live reload & environments & eslint & theme fixes
74 lines
1 KiB
SCSS
Executable file
74 lines
1 KiB
SCSS
Executable file
@media print {
|
|
/* ### Layout ### */
|
|
|
|
body {
|
|
font-family: Serif;
|
|
background-color: #fff;
|
|
}
|
|
|
|
@page {
|
|
margin: 1cm;
|
|
}
|
|
|
|
img {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
/* ### Content ### */
|
|
|
|
/* Hide useless blocks */
|
|
body > header,
|
|
#article_toolbar,
|
|
#links,
|
|
#sort,
|
|
body > footer,
|
|
.top_link,
|
|
div.tools,
|
|
header div,
|
|
.messages,
|
|
.entry + .results,
|
|
#slide-out,
|
|
.progress,
|
|
.hide-on-large-only,
|
|
#article > aside,
|
|
#article .mbm a {
|
|
display: none !important;
|
|
}
|
|
|
|
main {
|
|
padding-left: 0 !important;
|
|
}
|
|
|
|
#article {
|
|
margin: inherit !important;
|
|
}
|
|
|
|
article {
|
|
border: none !important;
|
|
}
|
|
|
|
/* Add URL after links */
|
|
.vieworiginal a::after {
|
|
content: " (" attr(href) ")";
|
|
}
|
|
|
|
/* Add explanation after abbr */
|
|
abbr[title]::after {
|
|
content: " (" attr(title) ")";
|
|
}
|
|
|
|
/* Change border on current pager item */
|
|
.pagination span.current {
|
|
border-style: dashed;
|
|
}
|
|
|
|
#main {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#article {
|
|
width: 100%;
|
|
}
|
|
}
|