Skip to content

Commit

Permalink
[BUG #8017] qx.Mobile should support new Flex Syntax
Browse files Browse the repository at this point in the history
*  Refactoring of gap solution of Atom
  • Loading branch information
czuendorf committed Dec 19, 2013
1 parent d68768a commit a1c51fd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions framework/source/resource/qx/mobile/scss/ui/_main.scss
Expand Up @@ -38,18 +38,19 @@
@include background($navigationpage-background);
}

.hbox:not(.flex-reverse) > .gap:not(.exclude) + #{$second-widget} {
.hbox:not(.flex-reverse) > .gap:not(.exclude) + .gap {
margin-left: rem(5);
}

div:not(.hbox):not(.flex-reverse) > .gap:not(.exclude) + #{$second-widget} {
div:not(.hbox):not(.flex-reverse) > .gap:not(.exclude) + .gap {
margin-top: rem(5);
}

.hbox.flex-reverse > .gap:not(.exclude) + #{$second-widget} {
.hbox.flex-reverse > .gap:not(.exclude) + .gap {
margin-right: rem(5);
}

div:not(.hbox).flex-reverse > .gap:not(.exclude) + #{$second-widget} {
div:not(.hbox).flex-reverse > .gap:not(.exclude) + .gap {
margin-bottom: rem(5);
}

0 comments on commit a1c51fd

Please sign in to comment.