diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 8d0fb2634..8694bf47c 100644 --- a/lib/action.php +++ b/lib/action.php @@ -111,7 +111,15 @@ class Action extends HTMLOutputter // lawsuit { $this->element('link', array('rel' => 'stylesheet', 'type' => 'text/css', - 'href' => theme_path('display.css') . '?version=' . LACONICA_VERSION, + 'href' => theme_path('display.css', 'base') . '?version=' . LACONICA_VERSION, + 'media' => 'screen, projection, tv')); + $this->element('link', array('rel' => 'stylesheet', + 'type' => 'text/css', + 'href' => theme_path('thickbox.css', 'base') . '?version=' . LACONICA_VERSION, + 'media' => 'screen, projection, tv')); + $this->element('link', array('rel' => 'stylesheet', + 'type' => 'text/css', + 'href' => theme_path('display.css', null) . '?version=' . LACONICA_VERSION, 'media' => 'screen, projection, tv')); foreach (array(6,7) as $ver) { if (file_exists(theme_file('ie'.$ver.'.css'))) { |