1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-31 20:11:54 +02:00

[ticket/10699] Long h2 title breaks div.minitabs in MCP

Fixed overlapping of Subject title over the minitabs.
Added css property to cp.css under MCP Specific tweaks.
Wrapped h2 and #minitabs under .tabs-container with
clear: both

PHPBB3-10699
This commit is contained in:
Hari Sankar R
2012-04-02 16:26:23 +05:30
parent 3477b5e5a8
commit 42101fe8d4
3 changed files with 29 additions and 2 deletions

View File

@@ -104,6 +104,23 @@ ul.cplist {
width: 100%;
}
.tabs-container h2 {
float: left;
white-space: nowrap;
margin-bottom: 0px;
}
.tabs-container #minitabs {
float: right;
margin-top: 19px;
}
.tabs-container:after {
display: block;
clear: both;
content: '';
}
/* CP tabbed menu
----------------------------------------*/
#tabs {