##// END OF EJS Templates
login/register: fixed header width problem.
milka -
r4544:8218918a default
parent child Browse files
Show More
@@ -22,13 +22,27 b''
22 float: none;
22 float: none;
23 }
23 }
24
24
25 .header {
25 .header-account {
26 min-height: 49px;
26 width: 100%;
27 width: 100%;
27 padding: 0 35px;
28 padding: 0 @header-padding;
28 box-sizing: border-box;
29 box-sizing: border-box;
30 position: relative;
31 vertical-align: bottom;
32
33 background-color: @grey1;
34 color: @grey5;
29
35
30 .title {
36 .title {
31 padding: 0;
37 padding: 0;
38 overflow: visible;
39 }
40
41 &:before,
42 &:after {
43 content: "";
44 clear: both;
45 width: 100%;
32 }
46 }
33 }
47 }
34
48
@@ -263,9 +263,6 b' input.inline[type="file"] {'
263 // HEADER
263 // HEADER
264 .header {
264 .header {
265
265
266 // TODO: johbo: Fix login pages, so that they work without a min-height
267 // for the header and then remove the min-height. I chose a smaller value
268 // intentionally here to avoid rendering issues in the main navigation.
269 min-height: 49px;
266 min-height: 49px;
270 min-width: 1024px;
267 min-width: 1024px;
271
268
@@ -10,7 +10,7 b''
10
10
11 <style>body{background-color:#eeeeee;}</style>
11 <style>body{background-color:#eeeeee;}</style>
12 <div class="loginbox">
12 <div class="loginbox">
13 <div class="header">
13 <div class="header-account">
14 <div id="header-inner" class="title">
14 <div id="header-inner" class="title">
15 <div id="logo">
15 <div id="logo">
16 <div class="logo-wrapper">
16 <div class="logo-wrapper">
@@ -10,7 +10,7 b''
10 <style>body{background-color:#eeeeee;}</style>
10 <style>body{background-color:#eeeeee;}</style>
11
11
12 <div class="loginbox">
12 <div class="loginbox">
13 <div class="header">
13 <div class="header-account">
14 <div id="header-inner" class="title">
14 <div id="header-inner" class="title">
15 <div id="logo">
15 <div id="logo">
16 <div class="logo-wrapper">
16 <div class="logo-wrapper">
@@ -10,7 +10,7 b''
10 <style>body{background-color:#eeeeee;}</style>
10 <style>body{background-color:#eeeeee;}</style>
11
11
12 <div class="loginbox">
12 <div class="loginbox">
13 <div class="header">
13 <div class="header-account">
14 <div id="header-inner" class="title">
14 <div id="header-inner" class="title">
15 <div id="logo">
15 <div id="logo">
16 <div class="logo-wrapper">
16 <div class="logo-wrapper">
General Comments 0
You need to be logged in to leave comments. Login now