Skip to content
Snippets Groups Projects
Commit 92852156 authored by Felix Kopp's avatar Felix Kopp Committed by Georg Ringer
Browse files

[TASK] EXT: t3skin - .list-unstyled for ol & ul

Brings CSS class for lists that semantically need to be
UL or OL tags but do not have a visible list-style-item:

<ul class="list-unstyled">
	<li>…</li>
</ul>
<ol class="list-unstyled">
	<li>…</li>
</ol>

Resolves: #55834
Releases: 6.2
Change-Id: Ic51fbe1f0995b4504d5b10a4c83775a977a19e33
Reviewed-on: https://review.typo3.org/27801
Reviewed-by: Georg Ringer
Tested-by: Georg Ringer
parent fe7e00da
Branches
Tags
No related merge requests found
......@@ -47,6 +47,11 @@ ol {
padding-left: 3em;
}
ul.list-unstyled,
ol.list-unstyled {
padding-left: 0;
}
/* Preformatted text - not used so much in TYPO3 */
pre {
margin: 0px;
......
......@@ -38,6 +38,11 @@ ol {
list-style-type: decimal;
}
ul.list-unstyled,
ol.list-unstyled {
list-style-type: none;
}
/* Links in general */
a {
color: #212424;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment