summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-14 22:19:17 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-14 22:19:17 +0000
commitcaaf237de8e07cecf9d1bbe20e98ca5c1a957f34 (patch)
tree4c37113980bf3a4fb6482389d7dc7547c0b89e4b /lib/action.php
parente60b6c51ec3594d90b96e780049ecf2a361ff245 (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.php10
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'))) {