fixes for small visual bugs in bootstrap layout

- form input error text when formstyle='bootstrap' has fixed width.
In narrow screens:
- topbar has space in left and right sides;
- login button in topbar is unlined.
This commit is contained in:
Paolo Caruccio
2013-07-10 15:55:51 +02:00
parent 317efea09b
commit 1b7bbfaf95
@@ -223,16 +223,21 @@ td.w2p_fw ul{margin-left:0px;}
/* auth_user_remember checkbox extrapadding in IE fix */
.ie-lte9 input#auth_user_remember.checkbox {padding-left:0;}
div.controls .error {
width: auto;
}
/*=============================================================
MEDIA QUERIES
==============================================================*/
@media only screen and (max-width:979px){
body{padding-top:0px;}
#navbar{top:5px;}
#navbar{/*top:5px;*/}
div.flash{right:5px;}
.dropdown-menu ul{visibility:visible;}
}
@media only screen and (max-width:479px){
body{
padding-left:10px;
@@ -246,3 +251,10 @@ td.w2p_fw ul{margin-left:0px;}
width:95%;
}
}
@media (max-width: 767px) {
.navbar {
margin-right: -20px;
margin-left: -20px;
}
}