diff options
| author | 2013-08-18 02:13:59 +0200 | |
|---|---|---|
| committer | 2013-08-18 02:13:59 +0200 | |
| commit | ece62aca3e838cdc7e7d3a8c94d7e5f4265c5285 (patch) | |
| tree | ff977476e3ebac5bed96333e03f5a172a1bda230 /app | |
| parent | 2f82dbabb19be4557312709881786f1b7c296565 (diff) | |
Fix issue #110 : ajout CSS pour imprimante
Elle reste basique est dépend fortement de la feuille de style
principale, mais ça permet déjà d'imprimer les articles à peu près
correctement
Diffstat (limited to 'app')
| -rw-r--r-- | app/App_FrontController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/App_FrontController.php b/app/App_FrontController.php index 50313522f..2a2684412 100644 --- a/app/App_FrontController.php +++ b/app/App_FrontController.php @@ -53,6 +53,7 @@ class App_FrontController extends FrontController { private function loadStylesAndScripts () { $theme = $this->conf->theme(); View::appendStyle (Url::display ('/themes/' . $theme . '/style.css')); + View::appendStyle (Url::display ('/themes/printer/style.css'), 'print'); if (login_is_conf ($this->conf)) { View::appendScript ('https://login.persona.org/include.js'); } |
