Issue ID 310:

o Fix css file order 
  o Add example

git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1141 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub 2006-04-09 13:57:51 +00:00
parent 5f59abd737
commit 9fe82e1346
4 changed files with 5 additions and 15 deletions

View file

@ -40,6 +40,3 @@ 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";

View file

@ -1,14 +1,3 @@
/* 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$ */
/* * { padding: 0 !important; margin: 0 !important; } */

View file

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CONTENT_ENCODING}">
<link rel="shortcut icon" type="image/x-icon" href="{pwg_root}template-common/favicon.ico">
<link rel="stylesheet" type="text/css" href="{pwg_root}template/{themeconf:template}/default-layout.css">
<link rel="stylesheet" type="text/css" href="{pwg_root}template/{themeconf:template}/layout.css">
<!-- the next css is used to fix khtml (Konqueror/Safari) issue
the "text/nonsense" prevents gecko based browsers to load it -->
<link rel="stylesheet" type="text/nonsense" href="{pwg_root}template/{themeconf:template}/fix-khtml.css">

View file

@ -4,3 +4,7 @@ BODY {
background-attachment:fixed;
}
#content UL.thumbnails SPAN.wrap2 {
height: 200px; /* max thumbnail height + 2px */
}