From a282a37a8c42cd4996f3a16498c1ce855c9a4bc8 Mon Sep 17 00:00:00 2001 From: Utah Kate Newman Date: Tue, 8 Jul 2014 17:45:52 -0700 Subject: [PATCH] revised argument order and changed colors to color variables defined in colors.css.scss --- app/assets/stylesheets/bootstrap-commentfix.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/bootstrap-commentfix.scss b/app/assets/stylesheets/bootstrap-commentfix.scss index 8305d740f..6b50a24fe 100644 --- a/app/assets/stylesheets/bootstrap-commentfix.scss +++ b/app/assets/stylesheets/bootstrap-commentfix.scss @@ -1,10 +1,10 @@ //Replaces blue border and box shadow around comment field with gray border and no box shadow// .comment_box { - border: #cccccc solid 1px; + border: 1px solid $border-grey; &:focus { - border: #999999 solid 1px; - border-color: #ccc solid 1px; + border: 1px solid $border-dark-grey; + border-color: 1px solid #ccc; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0);