##// END OF EJS Templates
Fix specifity of flex modifier classes
Jonathan Frederic -
Show More
@@ -80,7 +80,8 b' Browsers not listed, including Safari, are supported via the styling under the'
80 80 flex: none;
81 81 }
82 82
83 .reverse {
83 .hbox.reverse,
84 .vbox.reverse {
84 85 /* Old browsers */
85 86 -webkit-box-direction: reverse;
86 87 -moz-box-direction: reverse;
@@ -90,7 +91,8 b' Browsers not listed, including Safari, are supported via the styling under the'
90 91 flex-direction: row-reverse;
91 92 }
92 93
93 .box-flex0 {
94 .hbox.box-flex0,
95 .vbox.box-flex0 {
94 96 /* Old browsers */
95 97 -webkit-box-flex: 0;
96 98 -moz-box-flex: 0;
@@ -101,7 +103,8 b' Browsers not listed, including Safari, are supported via the styling under the'
101 103 width: auto;
102 104 }
103 105
104 .box-flex1 {
106 .hbox.box-flex1,
107 .vbox.box-flex1 {
105 108 /* Old browsers */
106 109 -webkit-box-flex: 1;
107 110 -moz-box-flex: 1;
@@ -111,12 +114,14 b' Browsers not listed, including Safari, are supported via the styling under the'
111 114 flex: 1;
112 115 }
113 116
114 .box-flex {
117 .hbox.box-flex,
118 .vbox.box-flex {
115 119 /* Old browsers */
116 120 .box-flex1();
117 121 }
118 122
119 .box-flex2 {
123 .hbox.box-flex2,
124 .vbox.box-flex2 {
120 125 /* Old browsers */
121 126 -webkit-box-flex: 2;
122 127 -moz-box-flex: 2;
@@ -140,7 +145,8 b' Browsers not listed, including Safari, are supported via the styling under the'
140 145 box-flex-group: 2;
141 146 }
142 147
143 .start {
148 .hbox.start,
149 .vbox.start {
144 150 /* Old browsers */
145 151 -webkit-box-pack: start;
146 152 -moz-box-pack: start;
@@ -150,7 +156,8 b' Browsers not listed, including Safari, are supported via the styling under the'
150 156 justify-content: flex-start;
151 157 }
152 158
153 .end {
159 .hbox.end,
160 .vbox.end {
154 161 /* Old browsers */
155 162 -webkit-box-pack: end;
156 163 -moz-box-pack: end;
@@ -160,7 +167,8 b' Browsers not listed, including Safari, are supported via the styling under the'
160 167 justify-content: flex-end;
161 168 }
162 169
163 .center {
170 .hbox.center,
171 .vbox.center {
164 172 /* Old browsers */
165 173 -webkit-box-pack: center;
166 174 -moz-box-pack: center;
@@ -170,7 +178,8 b' Browsers not listed, including Safari, are supported via the styling under the'
170 178 justify-content: center;
171 179 }
172 180
173 .align-start {
181 .hbox.align-start,
182 .vbox.align-start {
174 183 /* Old browsers */
175 184 -webkit-box-align: start;
176 185 -moz-box-align: start;
@@ -180,7 +189,8 b' Browsers not listed, including Safari, are supported via the styling under the'
180 189 align-items: flex-start;
181 190 }
182 191
183 .align-end {
192 .hbox.align-end,
193 .vbox.align-end {
184 194 /* Old browsers */
185 195 -webkit-box-align: end;
186 196 -moz-box-align: end;
@@ -190,7 +200,8 b' Browsers not listed, including Safari, are supported via the styling under the'
190 200 align-items: flex-end;
191 201 }
192 202
193 .align-center {
203 .hbox.align-center,
204 .vbox.align-center {
194 205 /* Old browsers */
195 206 -webkit-box-align: center;
196 207 -moz-box-align: center;
General Comments 0
You need to be logged in to leave comments. Login now