diff options
author | rub <rub@piwigo.org> | 2006-03-19 23:04:13 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-03-19 23:04:13 +0000 |
commit | f8ec2e6370398db8ba9aae149e3beda1b20edc54 (patch) | |
tree | 67d982bdd9f92fc7d7fb3660bcf943ecfb6e921d /template | |
parent | 62b589964a5bd86b1ba74514cd9990d3078bf197 (diff) |
Improvement issue 0000310:
o Add local-layout.css files
git-svn-id: http://piwigo.org/svn/trunk@1088 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template-common/default-layout.css | 3 | ||||
-rw-r--r-- | template/yoga/default-layout.css | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/template-common/default-layout.css b/template-common/default-layout.css index 7514f94ad..5f8cf62e1 100644 --- a/template-common/default-layout.css +++ b/template-common/default-layout.css @@ -31,3 +31,6 @@ BODY#theAdminPage #content { #content UL.thumbnails SPAN.thumbLegend { display: block; /* display: none; if you don't want legend */ } + +/* Override properties with import local file */ +@import "local-layout.css"; diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index 602355530..94dc24dd3 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -1,8 +1,12 @@ +/* template css */ @import "menubar.css"; @import "content.css"; @import "image.css"; @import "popuphelp.css"; +/* Override properties with import local file */ +@import "local-layout.css"; +/* common css */ @import "../../template-common/default-layout.css"; /* $Id$ */ @@ -257,4 +261,3 @@ UL.actions A { border: none; } - |