aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorDominik Dröscher <dhn2@users.sourceforge.net>2007-04-06 23:09:00 +0000
committerDominik Dröscher <dhn2@users.sourceforge.net>2007-04-06 23:09:00 +0000
commit39f8ef287af043e0724631094351c77b93191bba (patch)
treeb6caaf20a03cc90acc61a2de33c99b883afe2f28 /phpBB/adm
parente3007bb6cf79f19e70cc9cf486f49eba574d20bc (diff)
downloadforums-39f8ef287af043e0724631094351c77b93191bba.tar
forums-39f8ef287af043e0724631094351c77b93191bba.tar.gz
forums-39f8ef287af043e0724631094351c77b93191bba.tar.bz2
forums-39f8ef287af043e0724631094351c77b93191bba.tar.xz
forums-39f8ef287af043e0724631094351c77b93191bba.zip
#8669
#8745 #8762 #5417 #9525 #9568 #9574 #9577 #9640 #9641 #9644 git-svn-id: file:///svn/phpbb/trunk@7291 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/admin.css2
-rw-r--r--phpBB/adm/style/overall_header.html2
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css
index 3eb8c68d99..0a5710f38c 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -1206,11 +1206,13 @@ input.disabled {
width: 200px;
color: #000;
text-align: center;
+ border: 1px solid #AAA;
}
.tooltip span.top {
background: #EFEFEF;
font-weight: bold;
+ padding: 2px;
}
.tooltip span.bottom {
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html
index acbf00dff5..9024c08577 100644
--- a/phpBB/adm/style/overall_header.html
+++ b/phpBB/adm/style/overall_header.html
@@ -175,8 +175,10 @@ function switch_menu()
<div class="panel">
<span class="corners-top"><span></span></span>
<div id="content">
+ <!-- IF not S_USER_NOTICE -->
<div id="toggle">
<a id="toggle-handle" accesskey="m" title="{L_MENU_TOGGLE}" onclick="switch_menu(); return false;" href="#"></a></div>
+ <!-- ENDIF -->
<div id="menu">
<p>{L_LOGGED_IN_AS}<br /><strong>{USERNAME}</strong> [&nbsp;<a href="{U_LOGOUT}">{L_LOGOUT}</a>&nbsp;]</p>
<ul>
/drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.zip'>drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.zip
small fix when clicking on an empty tree (when allow_empty_list)
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index d34e9a5f4..88a102b41 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -283,7 +283,7 @@ sub create_treeview_tree {
});
$tree->signal_connect(button_press_event => sub {
$selected_via_click = 1;
- &$double_click if !$tree_model->iter_has_child($curr) && $double_click;
+ &$double_click if $curr && !$tree_model->iter_has_child($curr) && $double_click;
});
$tree, sub {