Fix specificity of css stuff.

This commit is contained in:
mrmrs 2014-06-11 17:30:39 -07:00
parent efb51609b7
commit 3a43566131

View File

@ -13,32 +13,32 @@
*/
.ba { border-style: solid; border-width: 1px; }
.bt { border-style: solid; border-left-width: 1px; }
.br { border-style: solid; border-right-width: 1px; }
.bb { border-style: solid; border-bottom-width: 1px; }
.bl { border-style: solid; border-left-width: 1px; }
.bt { border-top-style: solid; border-left-width: 1px; }
.br { border-right-style: solid; border-right-width: 1px; }
.bb { border-bottom-style: solid; border-bottom-width: 1px; }
.bl { border-left-style: solid; border-left-width: 1px; }
@include break(not-small) {
.ba-ns { border-style: solid; border-width: 1px; }
.bt-ns { border-style: solid; border-left-width: 1px; }
.br-ns { border-style: solid; border-right-width: 1px; }
.bb-ns { border-style: solid; border-bottom-width: 1px; }
.bl-ns { border-style: solid; border-left-width: 1px; }
.bt-ns { border-top-style: solid; border-left-width: 1px; }
.br-ns { border-right-style: solid; border-right-width: 1px; }
.bb-ns { border-bottom-style: solid; border-bottom-width: 1px; }
.bl-ns { border-left-style: solid; border-left-width: 1px; }
}
@include break(medium) {
.ba-m { border-style: solid; border-width: 1px; }
.bt-m { border-style: solid; border-left-width: 1px; }
.br-m { border-style: solid; border-right-width: 1px; }
.bb-m { border-style: solid; border-bottom-width: 1px; }
.bl-m { border-style: solid; border-left-width: 1px; }
.bt-m { border-top-style: solid; border-left-width: 1px; }
.br-m { border-right-style: solid; border-right-width: 1px; }
.bb-m { border-bottom-style: solid; border-bottom-width: 1px; }
.bl-m { border-left-style: solid; border-left-width: 1px; }
}
@include break(large) {
.ba-l { border-style: solid; border-width: 1px; }
.bt-l { border-style: solid; border-left-width: 1px; }
.br-l { border-style: solid; border-right-width: 1px; }
.bb-l { border-style: solid; border-bottom-width: 1px; }
.bl-l { border-style: solid; border-left-width: 1px; }
.bt-l { border-top-style: solid; border-left-width: 1px; }
.br-l { border-right-style: solid; border-right-width: 1px; }
.bb-l { border-bottom-style: solid; border-bottom-width: 1px; }
.bl-l { border-left-style: solid; border-left-width: 1px; }
}