From a245a11ae06de89f159e3a4f869fd9970d8194a0 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Fri, 8 Mar 2013 12:11:56 +0000 Subject: Merged revision(s) 21356 from trunk: [language_switch] update css overload git-svn-id: http://piwigo.org/svn/branches/2.5@21357 68402e56-0260-453c-a942-63ccdbb3a9ee --- plugins/language_switch/default.css | 14 -------------- plugins/language_switch/flags.tpl | 11 +++-------- plugins/language_switch/language_switch.inc.php | 10 +++++----- plugins/language_switch/style.css | 9 +++++++++ 4 files changed, 17 insertions(+), 27 deletions(-) delete mode 100644 plugins/language_switch/default.css diff --git a/plugins/language_switch/default.css b/plugins/language_switch/default.css deleted file mode 100644 index a73c67366..000000000 --- a/plugins/language_switch/default.css +++ /dev/null @@ -1,14 +0,0 @@ -#languageSwitchBox { - padding: 0.5em 5px; - border-radius: 4px; - z-index: 100; - text-align:left; - display: none; - position: absolute; - left: 0; top: 0; /*left, right set through js*/ -} - -#languageSwitchBox .switchBoxTitle { - padding-bottom:5px; - margin-bottom:5px; -} \ No newline at end of file diff --git a/plugins/language_switch/flags.tpl b/plugins/language_switch/flags.tpl index 54063fd03..38cfc4818 100644 --- a/plugins/language_switch/flags.tpl +++ b/plugins/language_switch/flags.tpl @@ -1,5 +1,5 @@
  • {strip} -  {'Language'|@translate} +  {'Language'|@translate}
    {'Language'|@translate}
    @@ -24,13 +24,8 @@ jQuery("#languageSwitchBox").on("mouseleave", function() { }); {/literal}{/footer_script} -{* *} -{if $themeconf.parent != 'default' or (isset($themeconf.load_parent_local_head) and $themeconf.load_parent_local_head == false) } -{combine_css path=$LANGUAGE_SWITCH_PATH|@cat:"default.css"} -{/if} - -{* *} -{if $themeconf.name != 'clear' and $themeconf.name != 'dark' and $themeconf.name != 'elegant' and $themeconf.name != 'Sylvia'} +{* * +{if $LANGUAGE_SWITCH_LOAD_STYLE} {combine_css path=$LANGUAGE_SWITCH_PATH|@cat:"style.css"} {/if} diff --git a/plugins/language_switch/language_switch.inc.php b/plugins/language_switch/language_switch.inc.php index 63a3cca7e..333dddfdd 100644 --- a/plugins/language_switch/language_switch.inc.php +++ b/plugins/language_switch/language_switch.inc.php @@ -124,15 +124,15 @@ function language_controler_flags() } } - $template->set_filename('language_flags', dirname(__FILE__) . '/flags.tpl'); + $safe_themes = array('clear','dark','elegant','Sylvia','simple-grey','simple-black','simple-white','kardon','luciano','montblancxl'); // stripped (2.6) - $template->assign( - array( + $template->assign(array( 'lang_switch'=> $lsw, 'LANGUAGE_SWITCH_PATH' => LANGUAGE_SWITCH_PATH, - ) - ); + 'LANGUAGE_SWITCH_LOAD_STYLE' => !in_array($user['theme'], $safe_themes), + )); + $template->set_filename('language_flags', dirname(__FILE__) . '/flags.tpl'); $template->concat('PLUGIN_INDEX_ACTIONS', $template->parse('language_flags', true) ); $template->clear_assign('lang_switch'); } diff --git a/plugins/language_switch/style.css b/plugins/language_switch/style.css index 8b330272c..55992d349 100644 --- a/plugins/language_switch/style.css +++ b/plugins/language_switch/style.css @@ -1,9 +1,18 @@ #languageSwitchBox { + padding: 0.5em 5px; + border-radius: 4px; + z-index: 100; + text-align:left; + display: none; + position: absolute; + left: 0; top: 0; /*left, right set through js*/ background-color: #555; border: 1px solid #000; } #languageSwitchBox .switchBoxTitle { + padding-bottom:5px; + margin-bottom:5px; border-bottom: 1px solid #444; } #languageSwitchBox a { -- cgit v1.2.3