diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-23 22:03:35 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-23 22:03:35 +0000 |
commit | 4d9e208be1ae6311016e9c39e83b144720fbfa26 (patch) | |
tree | 22ad01199631f914961f64a0813ab0fe1ab25523 /themes/default/fix-khtml.css | |
parent | 130c83652ecb198347fb79a30df1596308f18d52 (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 '')
-rw-r--r-- | themes/default/fix-khtml.css | 4 |
1 files changed, 2 insertions, 2 deletions
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; |