mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-28 16:21:11 +00:00
Fix improper selector for float styles (#136)
* Fix improper selector for float styles * Github CI lint - eslint/stylelint Co-authored-by: github-actions <github-actions@users.noreply.github.com>
This commit is contained in:
parent
340be0502e
commit
a30c85bb8d
|
@ -16,23 +16,23 @@
|
|||
* are used in other places as well
|
||||
*/
|
||||
> .mw-parser-output {
|
||||
div.tnone,
|
||||
div.floatnone,
|
||||
table.floatnone,
|
||||
div.tleft,
|
||||
div.floatleft,
|
||||
table.floatleft,
|
||||
div.tright,
|
||||
div.floatright,
|
||||
table.floatright {
|
||||
> div.tnone,
|
||||
> div.floatnone,
|
||||
> table.floatnone,
|
||||
> div.tleft,
|
||||
> div.floatleft,
|
||||
> table.floatleft,
|
||||
> div.tright,
|
||||
> div.floatright,
|
||||
> table.floatright {
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
margin: 0.6rem 1.4rem;
|
||||
transition: @transition-margin;
|
||||
}
|
||||
|
||||
div.tnone,
|
||||
div.floatnone {
|
||||
> div.tnone,
|
||||
> div.floatnone {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
|
@ -48,21 +48,21 @@
|
|||
}
|
||||
}
|
||||
|
||||
div.tnone,
|
||||
div.floatnone,
|
||||
table.floatnone,
|
||||
div.tleft,
|
||||
div.floatleft,
|
||||
table.floatleft {
|
||||
> div.tnone,
|
||||
> div.floatnone,
|
||||
> table.floatnone,
|
||||
> div.tleft,
|
||||
> div.floatleft,
|
||||
> table.floatleft {
|
||||
margin-left: @negative-margin / 2;
|
||||
}
|
||||
|
||||
div.tnone,
|
||||
div.floatnone,
|
||||
table.floatnone,
|
||||
div.tright,
|
||||
div.floatright,
|
||||
table.floatright {
|
||||
> div.tnone,
|
||||
> div.floatnone,
|
||||
> table.floatnone,
|
||||
> div.tright,
|
||||
> div.floatright,
|
||||
> table.floatright {
|
||||
margin-right: @negative-margin / 2;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue