summaryrefslogtreecommitdiff
path: root/theme/pigeonthoughts/css/display.css
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-03-24 14:50:12 +0100
committerSarven Capadisli <csarven@status.net>2010-03-24 14:50:12 +0100
commit647b3a1f6bff2f0c8f02ea65939ebde088742b16 (patch)
tree4b435758aea39ae8cfbbcf889ea7b817cb7a6ce3 /theme/pigeonthoughts/css/display.css
parenta3da5b24c9fc602e147304333ac059d0aae13de7 (diff)
Moved print inside base stylesheet using media rules. One less HTTP GET.
Diffstat (limited to 'theme/pigeonthoughts/css/display.css')
-rw-r--r--theme/pigeonthoughts/css/display.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/theme/pigeonthoughts/css/display.css b/theme/pigeonthoughts/css/display.css
index dfeb01b48..de5164ea8 100644
--- a/theme/pigeonthoughts/css/display.css
+++ b/theme/pigeonthoughts/css/display.css
@@ -7,8 +7,9 @@
* @link http://status.net/
*/
-@import url(base.css);
+@import url(base.css) screen, projection, tv, print;
+@media screen, projection, tv {
html {
background:url(../images/illustrations/illu_pigeons-01.png) no-repeat 0 100%;
}
@@ -496,3 +497,4 @@ background-position:90% 47%;
background-position:10% 47%;
}
+}/*end of @media screen, projection, tv*/