Stikked v0.8.4

This commit is contained in:
Claude 2012-10-20 21:42:08 +02:00
parent ac965858eb
commit 443342eb02
3 changed files with 18 additions and 1 deletions

View File

@ -39,7 +39,7 @@ Changelog
* Spam trap for bots
* Bugfix: Remove\_invisible\_characters removing legitimate paste content (https://github.com/claudehohl/Stikked/issues/28)
* Possibility to manually set the paste's displayed URL (used with mod\_rewrite configurations)
* TODO: Print layout for pastes
* Print layout for pastes
* Updated to CodeIgniter version 2.1.3
### Version 0.8.3:

View File

@ -28,6 +28,7 @@ $this->carabiner->config(array(
$this->carabiner->css('reset.css');
$this->carabiner->css('fonts.css');
$this->carabiner->css('main.css');
$this->carabiner->css('print.css', 'print');
$this->carabiner->css('codemirror.css');
$this->carabiner->css('diff.css');

View File

@ -0,0 +1,16 @@
@media print {
html, body {
background: #fff;
color: #222;
font-size: 8pt;
font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
}
#container, .replies, .footer {
display: none;
}
}