Print stylesheet
This commit is contained in:
parent
cab322d21b
commit
d30590de23
|
@ -173,6 +173,10 @@ class Action extends HTMLOutputter // lawsuit
|
||||||
// TODO: "handheld" CSS for other mobile devices
|
// TODO: "handheld" CSS for other mobile devices
|
||||||
'media' => 'only screen and (max-device-width: 480px)')); // Mobile WebKit
|
'media' => 'only screen and (max-device-width: 480px)')); // Mobile WebKit
|
||||||
}
|
}
|
||||||
|
$this->element('link', array('rel' => 'stylesheet',
|
||||||
|
'type' => 'text/css',
|
||||||
|
'href' => theme_path('css/print.css', 'base') . '?version=' . LACONICA_VERSION,
|
||||||
|
'media' => 'print'));
|
||||||
Event::handle('EndShowLaconicaStyles', array($this));
|
Event::handle('EndShowLaconicaStyles', array($this));
|
||||||
}
|
}
|
||||||
if (Event::handle('StartShowUAStyles', array($this))) {
|
if (Event::handle('StartShowUAStyles', array($this))) {
|
||||||
|
|
28
theme/base/css/print.css
Normal file
28
theme/base/css/print.css
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
body { font-size:12pt; }
|
||||||
|
a:after { background-color:#fff; }
|
||||||
|
a:not([href^="#"]):after { content:" ( "attr(href)" ) "; }
|
||||||
|
a:not([href^="http:"]):after { content: " ( http://identi.ca/"attr(href)" ) "; }
|
||||||
|
a[href^="/"]:after { content: " ( http://identi.ca" attr(href) " ) "; }
|
||||||
|
|
||||||
|
img { border:none; }
|
||||||
|
p { orphans: 2; widows: 1; }
|
||||||
|
|
||||||
|
#site_nav_global_primary,
|
||||||
|
#site_nav_local_views,
|
||||||
|
#form_notice,
|
||||||
|
.pagination,
|
||||||
|
#site_nav_global_secondary,
|
||||||
|
.entity_actions,
|
||||||
|
.notice-options,
|
||||||
|
#aside_primary {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timestamp dt, .timestamp dd,
|
||||||
|
.device dt, .device dd {
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notices li {
|
||||||
|
margin-bottom:18px;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user