From 3a43566131dc12399e37771b38bd22e6dbbe3156 Mon Sep 17 00:00:00 2001 From: mrmrs Date: Wed, 11 Jun 2014 17:30:39 -0700 Subject: [PATCH] Fix specificity of css stuff. --- sass/_borders.scss | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/sass/_borders.scss b/sass/_borders.scss index fd7366e..7b02593 100644 --- a/sass/_borders.scss +++ b/sass/_borders.scss @@ -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; } }