From 0c2e87cb581356f0e2e600bd8246fe022714bb11 Mon Sep 17 00:00:00 2001 From: flop25 Date: Sun, 9 Jun 2013 18:57:26 +0000 Subject: bug:2890 new layout finished: ie7 compat, dynamic, rounded corners... the 2 "Manage..." options has been deleted git-svn-id: http://piwigo.org/svn/trunk@23121 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes/clear/theme.css | 14 ++++++++-- admin/themes/default/fix-ie7.css | 3 +++ admin/themes/default/template/group_list.tpl | 38 +++++----------------------- admin/themes/default/theme.css | 37 +++++++++++++++++++++++++++ admin/themes/roma/theme.css | 12 ++++++++- 5 files changed, 70 insertions(+), 34 deletions(-) diff --git a/admin/themes/clear/theme.css b/admin/themes/clear/theme.css index 3607da5ff..405139c1e 100644 --- a/admin/themes/clear/theme.css +++ b/admin/themes/clear/theme.css @@ -279,7 +279,7 @@ INPUT[type="text"].large { width: 317px; } #pwgHead A:hover, #footer A:hover {color:black;} #footer { background-image: url(images/piwigo_logo_small.png);} -.pluginBox, .pluginMiniBox {background-color:#ddd;color:#353535;border-color:#ddd;} +.pluginBox, .pluginMiniBox, .groups li {background-color:#ddd;color:#353535;border-color:#ddd;} .pluginBoxNameCell, .pluginMiniBoxNameCell {color:#111;} .pluginBox.incompatible, .pluginMiniBox.incompatible {border-color:#a00 !important;} .pluginBoxes .merged, .pluginBoxes .missing {background-color:#d99;border:1px solid #a00;} @@ -321,4 +321,14 @@ UL.thumbnails li.rank-of-image {background-color: #ddd;} text-decoration: none; } -p.albumTitle img {margin-bottom:-3px;} \ No newline at end of file +p.albumTitle img {margin-bottom:-3px;} + +.groups label>p { + font-size: 1.2em; + color: #111; + background-color:#ccc; +} +label>p.group_select { + color: #666; + background-color:#F9F9F9; +} \ No newline at end of file diff --git a/admin/themes/default/fix-ie7.css b/admin/themes/default/fix-ie7.css index a9e5a21a2..d61e0294a 100644 --- a/admin/themes/default/fix-ie7.css +++ b/admin/themes/default/fix-ie7.css @@ -5,4 +5,7 @@ UL.thumbnails li.rank-of-image { text-align:left; +} +.groups li { + display: inline; } \ No newline at end of file diff --git a/admin/themes/default/template/group_list.tpl b/admin/themes/default/template/group_list.tpl index 278f8a7dc..1c1d20c9e 100644 --- a/admin/themes/default/template/group_list.tpl +++ b/admin/themes/default/template/group_list.tpl @@ -1,7 +1,7 @@ {footer_script} {literal} $(document).ready(function() { - + $('.groups input').change(function () { $(this).parent('p').toggleClass('group_select'); }); $(".grp_action").hide(); $("input.group_selection").click(function() { @@ -33,7 +33,7 @@ $(document).ready(function() { $("select[name=selectAction]").change(function () { $("[id^=action_]").hide(); $("#action_"+$(this).prop("value")).show(); - if ($(this).val() != -1 && $(this).val() !="manage_pemissions" && $(this).val() !="manage_members" ) { + if ($(this).val() != -1 ) { $("#applyActionBlock").show(); } else { @@ -66,13 +66,13 @@ $(document).ready(function() {
-