revised argument order and changed colors to color variables defined in colors.css.scss

This commit is contained in:
Utah Kate Newman 2014-07-08 17:45:52 -07:00
parent 7f2b3d3bf3
commit a282a37a8c

View file

@ -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);