Changeset - 9af9953a3159
[Not reviewed]
Mads Kiilerich - 12 years ago 2013-12-10 19:28:05
madski@unity3d.com
old style: make settings box expand to contain floating content and show menu nicely

The floating of the panes is hardcoded, so we also hardcode the necessary overflow auto.
8 files changed with 17 insertions and 7 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -3599,6 +3599,16 @@ div.gravatar img {
 
    display: inline-block;
 
}
 

	
 
ul.nav-stacked {
 
    margin: 20px;
 
    color: #393939;
 
    font-weight: 700;
 
}
 

	
 
ul.nav-stacked a {
 
    color: inherit;
 
}
 

	
 
/* make .btn inputs and buttons and divs look the same */
 
button.btn,
 
input.btn {
rhodecode/templates/admin/my_account/my_account.html
Show inline comments
 
@@ -17,7 +17,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
rhodecode/templates/admin/permissions/permissions.html
Show inline comments
 
@@ -20,7 +20,7 @@
 

	
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
rhodecode/templates/admin/repo_groups/repo_group_edit.html
Show inline comments
 
@@ -31,7 +31,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
        ${self.breadcrumbs_side_links()}
rhodecode/templates/admin/repos/repo_edit.html
Show inline comments
 
@@ -21,7 +21,7 @@
 

	
 
<%def name="main()">
 
${self.repo_context_bar('options')}
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <!--<div class="title">-->
 
        <!--${self.breadcrumbs()}-->
 
    <!--</div>-->
rhodecode/templates/admin/settings/settings.html
Show inline comments
 
@@ -19,7 +19,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
rhodecode/templates/admin/user_groups/user_group_edit.html
Show inline comments
 
@@ -21,7 +21,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
rhodecode/templates/admin/users/user_edit.html
Show inline comments
 
@@ -21,7 +21,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box" style="overflow:auto">
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
0 comments (0 inline, 0 general)