Fixed button wrapping when in tight spaces (e.g, tables)

This commit is contained in:
Franck Allimant
2013-12-05 12:57:47 +01:00
parent e262bbc9ea
commit 97a8d6d3bf

View File

@@ -138,17 +138,6 @@
}
}
.Blocmoncompte {
float: right;
margin: 0px;
padding: 0px;
margin-top: 35px;
color: white;
font-size: 13px;
text-shadow: 0px 1px 0px rgba(0,0,0,0.8);
}
dt {
float: left;
margin-right: 15px;
@@ -172,6 +161,16 @@
width: 100%;
}
.btn-group {
white-space: nowrap; // prevent buttons from wrapping when in tight spaces (e.g., the table on the tests page)
> .btn {
float: inherit;
}
> .btn + .btn {
margin-left: -4px;
}
}
// -- Login form --------------------------------------------------------------
.form-signin {