##// END OF EJS Templates
Merge pull request #5065 from takluyver/interact-annotations-example...
Merge pull request #5065 from takluyver/interact-annotations-example Add example of using annotations in interact

File last commit:

r15130:50664fe9
r15199:d4787ebc merge
Show More
flexbox.less
149 lines | 2.6 KiB | text/x-less | LessCssLexer
Bussonnier Matthias
readd flexible-box-model
r9271
/* Flexible box model classes */
/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .hbox {
Brian E. Granger
More tabs to spaces on less files.
r13696 display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
Matthias BUSSONNIER
remove trailing whitespace
r9284
Brian E. Granger
More tabs to spaces on less files.
r13696 display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
Matthias BUSSONNIER
remove trailing whitespace
r9284
Brian E. Granger
More tabs to spaces on less files.
r13696 display: box;
box-orient: horizontal;
box-align: stretch;
Jonathan Frederic
New 'flex' support...
r15119
display: flex;
flex-direction: row;
align-items: stretch;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .hbox > * {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
Jonathan Frederic
New 'flex' support...
r15119 flex: 0;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .vbox {
Brian E. Granger
More tabs to spaces on less files.
r13696 display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* width must be 100% to force FF to behave like webkit */
width: 100%;
Jonathan Frederic
New 'flex' support...
r15119
display: flex;
flex-direction: column;
align-items: stretch;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .vbox > * {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
Jonathan Frederic
New 'flex' support...
r15119 flex: 0;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .reverse {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-direction: reverse;
-moz-box-direction: reverse;
box-direction: reverse;
Jonathan Frederic
New 'flex' support...
r15119 flex-direction: column-reverse;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .box-flex0 {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
Jonathan Frederic
New 'flex' support...
r15119 flex: 0;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Matthias BUSSONNIER
merge box-flex1 class into .output-area css definition
r10218 .box-flex1 {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
Jonathan Frederic
New 'flex' support...
r15119 flex: 1;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Matthias BUSSONNIER
merge box-flex1 class into .output-area css definition
r10218 .box-flex {
.box-flex1();
}
Bussonnier Matthias
readd flexible-box-model
r9271 .box-flex2 {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex: 2;
-moz-box-flex: 2;
box-flex: 2;
Jonathan Frederic
New 'flex' support...
r15119 flex: 2;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .box-group1 {
Jonathan Frederic
New 'flex' support...
r15119 /*
Deprecated
Grouping isn't supported in http://dev.w3.org/csswg/css-flexbox/
*/
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex-group: 1;
-moz-box-flex-group: 1;
box-flex-group: 1;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .box-group2 {
Jonathan Frederic
New 'flex' support...
r15119 /*
Deprecated
Grouping isn't supported in http://dev.w3.org/csswg/css-flexbox/
*/
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-flex-group: 2;
-moz-box-flex-group: 2;
box-flex-group: 2;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .start {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-pack: start;
-moz-box-pack: start;
box-pack: start;
Jonathan Frederic
New 'flex' support...
r15119 justify-content: flex-start;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .end {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
Jonathan Frederic
New 'flex' support...
r15119 justify-content: flex-end;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Matthias BUSSONNIER
remove trailing whitespace
r9284
Bussonnier Matthias
readd flexible-box-model
r9271 .center {
Brian E. Granger
More tabs to spaces on less files.
r13696 -webkit-box-pack: center;
-moz-box-pack: center;
box-pack: center;
Jonathan Frederic
New 'flex' support...
r15119 justify-content: center;
Bussonnier Matthias
readd flexible-box-model
r9271 }
Jonathan Frederic
Added flexible box model align properties.
r14333
Jonathan Frederic
Added flex properties to container....
r14335 .align-start {
Jonathan Frederic
Convert tabs to spaces
r15130 -webkit-box-align: start;
-moz-box-align: start;
box-align: start;
Jonathan Frederic
New 'flex' support...
r15119 align-content: flex-start;
Jonathan Frederic
Added flexible box model align properties.
r14333 }
Jonathan Frederic
Added flex properties to container....
r14335 .align-end {
Jonathan Frederic
Convert tabs to spaces
r15130 -webkit-box-align: end;
-moz-box-align: end;
box-align: end;
Jonathan Frederic
New 'flex' support...
r15119 align-content: flex-end;
Jonathan Frederic
Added flexible box model align properties.
r14333 }
Jonathan Frederic
Added flex properties to container....
r14335 .align-center {
Jonathan Frederic
Convert tabs to spaces
r15130 -webkit-box-align: center;
-moz-box-align: center;
box-align: center;
Jonathan Frederic
New 'flex' support...
r15119 align-content: center;
Jonathan Frederic
Added flexible box model align properties.
r14333 }