Skip to content

Commit

Permalink
fix(box-shadows): Make .box-shadow-x styling !important since they are
Browse files Browse the repository at this point in the history
pure modifier classes

[fixes #126327133]
  • Loading branch information
charleshansen committed Jul 27, 2016
1 parent 3576ccd commit 4132e96
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions library/src/pivotal-ui/components/box-shadows/box-shadows.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@

// Box Shadow - key light
.box-shadow-key-1 {
box-shadow: $box-shadow-key-1;
box-shadow: $box-shadow-key-1 !important;
}
.box-shadow-key-2 {
box-shadow: $box-shadow-key-2;
box-shadow: $box-shadow-key-2 !important;
}
.box-shadow-key-3 {
box-shadow: $box-shadow-key-3;
box-shadow: $box-shadow-key-3 !important;
}

// Box Shadow - ambient light
.box-shadow-amb-1 {
box-shadow: $box-shadow-amb-1;
box-shadow: $box-shadow-amb-1 !important;
}
.box-shadow-amb-2 {
box-shadow: $box-shadow-amb-2;
box-shadow: $box-shadow-amb-2 !important;
}
.box-shadow-amb-3 {
box-shadow: $box-shadow-amb-3;
box-shadow: $box-shadow-amb-3 !important;
}

// Box Shadow - key and ambient
.box-shadow-1 {
box-shadow: $box-shadow-key-1, $box-shadow-amb-1;
box-shadow: $box-shadow-key-1, $box-shadow-amb-1 !important;
}
.box-shadow-2 {
box-shadow: $box-shadow-key-2, $box-shadow-amb-2;
box-shadow: $box-shadow-key-2, $box-shadow-amb-2 !important;
}
.box-shadow-3 {
box-shadow: $box-shadow-key-3, $box-shadow-amb-3;
box-shadow: $box-shadow-key-3, $box-shadow-amb-3 !important;
}

0 comments on commit 4132e96

Please sign in to comment.