mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 12:31:06 -05:00
Stikked v0.8.4
This commit is contained in:
parent
ac965858eb
commit
443342eb02
@ -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:
|
||||
|
@ -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');
|
||||
|
||||
|
16
htdocs/static/styles/print.css
Normal file
16
htdocs/static/styles/print.css
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user