mirror of https://github.com/twbs/bootstrap.git
No more left margin on dd elements, fixes #8567
This commit is contained in:
parent
0b1ddeb353
commit
8aa3c375f0
|
@ -567,7 +567,7 @@ dt {
|
||||||
}
|
}
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin-left: 10px;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dl-horizontal dt {
|
.dl-horizontal dt {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -142,7 +142,7 @@ dt {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
dd {
|
dd {
|
||||||
margin-left: (@line-height-computed / 2);
|
margin-left: 0; // Undo browser default
|
||||||
}
|
}
|
||||||
// Horizontal layout (like forms)
|
// Horizontal layout (like forms)
|
||||||
.dl-horizontal {
|
.dl-horizontal {
|
||||||
|
|
Loading…
Reference in New Issue