source: pro-violet-viettel/docs/template/assets/css/less/bs3-reset.less @ 400

Last change on this file since 400 was 400, checked in by dungnv, 11 years ago
File size: 988 bytes
Line 
1//bootstrap mentions that the following need not be floated, as they are full width (100%)
2//but in our case it's needed, because sidebar is floated left(not position:absolute) and
3//the .row elements containing .col-*-12 have .clearfix behaviour,
4//which doesn't allow any floating elements on left or side, thus causing problems with our sidebar
5.col-xs-12 , .col-sm-12 , .col-md-12, .col-lg-12 {
6 float:left;
7}
8
9.col-xs-reset { width: auto; padding-left:0; padding-right:0; float:none; }
10
11@media (min-width: @screen-tablet) {
12 .col-sm-reset { width: auto; padding-left:0; padding-right:0; float:none; }
13}
14@media (min-width: @screen-desktop) {
15 .col-md-reset { width: auto; padding-left:0; padding-right:0; float:none; }
16}
17@media (min-width: @screen-lg-desktop) {
18 .col-lg-reset { width: auto; padding-left:0; padding-right:0; float:none; }
19}
20
21
22.jqstooltip , .legendColorBox div {
23 .box-sizing(content-box);
24}
25.legendLabel {
26 .box-sizing(content-box);
27 height:20px;
28 font-size:10px;
29}
Note: See TracBrowser for help on using the repository browser.