hjg
2023-11-18 bb48edb3d9faaaeab0088151c86fc24137acdb08
提交 | 用户 | 时间
58d006 1 //the following column widths need not be floated, as they are full width (100%)
A 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 behavior,
4 //which doesn't allow any floating elements on left or right, thus causing problems with our sidebar
5 .page-content > .row > {
6  .col-xs-12 , .col-sm-12 , .col-md-12, .col-lg-12 {
7    float: left; 
8    max-width: 100%;//if not, .col-xs-12 > .row > .col-sm-12 will have problems
9  }
10 }
11
12 .col-xs-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
13
14 @media (min-width: @screen-sm-min) {
15  .col-sm-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
16 }
17 @media (min-width: @screen-md-min) {
18  .col-md-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
19 }
20 @media (min-width: @screen-lg-min) {
21  .col-lg-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
22 }
23
24
25 .jqstooltip , .legendColorBox div {
26  .box-sizing(content-box);
27 }
28 .legendLabel {
29  .box-sizing(content-box);
30  height: 22px; 
31  padding-left: 2px;
32  font-size: @font-flot-chart-label;
33 }