Skip to content

Commit

Permalink
FIX: remove redundant individual selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-su committed Mar 13, 2016
1 parent 522ac62 commit c7cccda
Showing 1 changed file with 14 additions and 34 deletions.
48 changes: 14 additions & 34 deletions src/less/functions.less
Original file line number Diff line number Diff line change
Expand Up @@ -233,52 +233,32 @@
}
}
@media (min-width: @screen-sm-min) {
.container-fixed-sm{
width:@screen-sm;
}
.container-fixed-xs{
.container-fixed-sm,
.container-fixed-xs {
width:@screen-sm;
}
}
@media (min-width: @screen-md-min) {
.container-fixed-md{
width:@screen-md;
}
.container-fixed-sm{
width:@screen-md;
}
.container-fixed-xs{
.container-fixed-md,
.container-fixed-sm,
.container-fixed-xs {
width:@screen-md;
}
}
@media (min-width: @screen-lg-min) {
.container-fixed-lg{
width:@screen-lg;
}
.container-fixed-md{
width:@screen-lg;
}
.container-fixed-sm{
width:@screen-lg;
}
.container-fixed-xs{
.container-fixed-lg,
.container-fixed-md,
.container-fixed-sm,
.container-fixed-xs {
width:@screen-lg;
}
}
@media (min-width: @screen-xl-min) {
.container-fixed-xl{
width:@screen-xl;
}
.container-fixed-lg{
width:@screen-xl;
}
.container-fixed-md{
width:@screen-xl;
}
.container-fixed-sm{
width:@screen-xl;
}
.container-fixed-xs{
.container-fixed-xl,
.container-fixed-lg,
.container-fixed-md,
.container-fixed-sm,
.container-fixed-xs {
width:@screen-xl;
}
}

0 comments on commit c7cccda

Please sign in to comment.