diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-14 22:19:17 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-14 22:19:17 +0000 |
commit | caaf237de8e07cecf9d1bbe20e98ca5c1a957f34 (patch) | |
tree | 4c37113980bf3a4fb6482389d7dc7547c0b89e4b /lib/action.php | |
parent | e60b6c51ec3594d90b96e780049ecf2a361ff245 (diff) |
Base theme stylesheet includes layout, and typography information
Identica theme stylesheet includes colour and background information
Diffstat (limited to 'lib/action.php')
-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'))) { |