blob: 0eb557560ef95c36a93634977794cefd3798344f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* THIS IS HERE ONLY BECAUSE WE WANT TO DEFINE IT FIRST, TO MAKE IT EASY TO OVERRIDE */
/* TODO fix by using a better build script that allows us to define the order of the imports */
.v {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
text-align: left;
display: inline-block;
white-space: normal;
}
/* Actual AbsoluteLayout styles begin here */
.v-absolutelayout-wrapper {
position: absolute;
overflow: hidden;
}
.v-absolutelayout-margin, .v-absolutelayout-canvas {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.v-absolutelayout.v-has-height > div, .v-absolutelayout.v-has-height > div > div {
height: 100%;
}
.v-absolutelayout.v-has-width > div, .v-absolutelayout.v-has-width > div > div {
width: 100%;
}
|