aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2010-12-23 22:03:35 +0000
committerrvelices <rv-github@modusoptimus.com>2010-12-23 22:03:35 +0000
commit4d9e208be1ae6311016e9c39e83b144720fbfa26 (patch)
tree22ad01199631f914961f64a0813ab0fe1ab25523 /themes/default
parent130c83652ecb198347fb79a30df1596308f18d52 (diff)
- more efficient css rules (according to pagespeed)
git-svn-id: http://piwigo.org/svn/trunk@8269 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default')
-rw-r--r--themes/default/fix-ie5-ie6.css2
-rw-r--r--themes/default/fix-khtml.css4
-rw-r--r--themes/default/theme.css36
3 files changed, 20 insertions, 22 deletions
diff --git a/themes/default/fix-ie5-ie6.css b/themes/default/fix-ie5-ie6.css
index 55c3e3444..bd0862a71 100644
--- a/themes/default/fix-ie5-ie6.css
+++ b/themes/default/fix-ie5-ie6.css
@@ -45,7 +45,7 @@ H1, #theHeader {
/* fix quickconnect layout */
-FORM#quickconnect FIELDSET {
+#quickconnect FIELDSET {
width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */
}
diff --git a/themes/default/fix-khtml.css b/themes/default/fix-khtml.css
index a0377886c..ed263ef25 100644
--- a/themes/default/fix-khtml.css
+++ b/themes/default/fix-khtml.css
@@ -1,10 +1,10 @@
/* Issue in Safari/Konqueror only */
/* If H2 has a 0 margin-top categoryActions doesn't float right but overwrites H2 */
-.content>DIV.titrePage>H2 {
+.content>.titrePage>H2 {
margin: 1px 0 0 0; /* add an arbitrary margin-top */
}
-.content>div.titrePage {
+.content>.titrePage {
position: relative;
top: -1px; /* move the container up by the same amount */
margin-bottom: 5px;
diff --git a/themes/default/theme.css b/themes/default/theme.css
index 184b895af..c8f352504 100644
--- a/themes/default/theme.css
+++ b/themes/default/theme.css
@@ -64,17 +64,17 @@
}
/* quickconnect form */
-FORM#quickconnect {
+#quickconnect {
margin: 5px;
padding: 0;
}
-FORM#quickconnect FIELDSET {
+#quickconnect FIELDSET {
margin: 0;
padding: 0; /*IE6 requires padding 0*/
}
-FORM#quickconnect FIELDSET DIV {
+#quickconnect FIELDSET DIV {
margin: 8px 5px;
padding: 0;
}
@@ -117,7 +117,7 @@ FORM#quickconnect FIELDSET DIV {
font-size: 110%;
}
-.content DIV.titrePage {
+.content .titrePage {
padding: 0 0 3px;
}
@@ -215,7 +215,7 @@ TD.calDayHead {
}
/* Category thumbnails on main page, CSS code inspired from MOD subcatify */
-.content UL.thumbnailCategories {
+UL.thumbnailCategories {
margin: 0;
padding: 0;
list-style: none;
@@ -223,25 +223,25 @@ TD.calDayHead {
width: 100%;
}
-.content UL.thumbnailCategories LI {
+UL.thumbnailCategories LI {
margin:0;
padding:0;
float:left;
}
-.content DIV.thumbnailCategory {
+.thumbnailCategory {
display:block;
padding: 2px 0 0 2px;
margin: 5px;
}
-.content DIV.thumbnailCategory DIV.description {
+.thumbnailCategory .description {
font-size: 90%;
overflow: auto;
/*width: inherit;*/
}
-.content DIV.thumbnailCategory DIV.description H3 {
+.thumbnailCategory .description H3 {
text-align: left;
background: transparent;
margin: 0;
@@ -249,11 +249,11 @@ TD.calDayHead {
font-size: 120%;
}
-.content DIV.thumbnailCategory DIV.description P {
+.thumbnailCategory .description P {
margin: 0;
}
-.content DIV.thumbnailCategory DIV.illustration {
+.thumbnailCategory DIV.illustration {
text-align: left;
margin: 2px 0 0 2px;
float: left;
@@ -261,12 +261,12 @@ TD.calDayHead {
/* User comments */
-DIV#comments {
+#comments {
padding-left: 5px;
padding-right: 5px;
}
-DIV#comments DIV.description {
+#comments .description {
font-size: 100%;
}
@@ -384,8 +384,6 @@ TABLE.infoTable TD.value UL {
list-style-type: square;
}
-.thumbnailCategories LI { list-style: none; }
-
.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty {
padding:0;
border:0;
@@ -676,7 +674,7 @@ TABLE.tagLetterContent {
#theHeader {text-align: center;}
-.content #comments UL.thumbnailCategories LI { width:99%; }
+#comments UL.thumbnailCategories LI { width:99%; }
/* jQuery datepicker */
IMG.ui-datepicker-trigger {
@@ -687,17 +685,17 @@ IMG.ui-datepicker-trigger {
UL.thumbnails SPAN,
UL.thumbnails SPAN.wrap2 A,
UL.thumbnails LABEL,
-.content DIV.thumbnailCategory DIV.illustration {
+.thumbnailCategory DIV.illustration {
width: 140px; /* max thumbnail width + 2px */
}
UL.thumbnails SPAN.wrap2,
-.content DIV.thumbnailCategory DIV.description {
+.content .thumbnailCategory .description {
height: 140px; /* max thumbnail height + 2px */
}
/* Category thumbnails on main page */
-.content UL.thumbnailCategories LI {
+UL.thumbnailCategories LI {
width: 49.7%; /* 49.7% for 2 per line, 33.2% for 3 per line*/
}