mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-18 10:52:19 +01:00
Properly unstyle the .list-unstyled
class by switching from margin
to padding
Also add better comments
This commit is contained in:
parent
84c0dc13ba
commit
4436e727ed
4
docs/assets/css/bootstrap.css
vendored
4
docs/assets/css/bootstrap.css
vendored
@ -516,12 +516,12 @@ ol ul {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.list-unstyled {
|
.list-unstyled {
|
||||||
margin-left: 0;
|
padding-left: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-inline {
|
.list-inline {
|
||||||
margin-left: 0;
|
padding-left: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,9 +118,9 @@ ol ul {
|
|||||||
|
|
||||||
// List options
|
// List options
|
||||||
|
|
||||||
// Unstyled keeps list items block level, just removes list-style
|
// Unstyled keeps list items block level, just removes default browser padding and list-style
|
||||||
.list-unstyled {
|
.list-unstyled {
|
||||||
margin-left: 0;
|
padding-left: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
// Inline turns list items into inline-block
|
// Inline turns list items into inline-block
|
||||||
|
Loading…
x
Reference in New Issue
Block a user