天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.2 KiB

//the following column widths need not be floated, as they are full width (100%)
//but in our case it's needed, because sidebar is floated left(not position:absolute) and
//the .row elements containing .col-*-12 have .clearfix behavior,
//which doesn't allow any floating elements on left or right, thus causing problems with our sidebar
.page-content > .row > {
.col-xs-12 , .col-sm-12 , .col-md-12, .col-lg-12 {
float: left;
max-width: 100%;//if not, .col-xs-12 > .row > .col-sm-12 will have problems
}
}
.col-xs-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
@media (min-width: @screen-sm-min) {
.col-sm-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
}
@media (min-width: @screen-md-min) {
.col-md-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
}
@media (min-width: @screen-lg-min) {
.col-lg-reset { width: auto; padding-left: 0; padding-right: 0; float: none !important; }
}
.jqstooltip , .legendColorBox div {
.box-sizing(content-box);
}
.legendLabel {
.box-sizing(content-box);
height: 22px;
padding-left: 2px;
font-size: @font-flot-chart-label;
}