Fixed nt,-group css rule which caused garbage in top bar buttons

This commit is contained in:
Franck Allimant
2013-12-07 09:58:01 +01:00
parent a3570b4e16
commit 592b306b9e

View File

@@ -161,16 +161,6 @@
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 {
@@ -423,4 +413,19 @@
.dropzone {
border: 1px dashed #ddd;
padding: 20px;
}
// No button wrap in button groups in td.action cells
table {
td.actions {
.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;
}
}
}
}