revised argument order and changed colors to color variables defined in colors.css.scss
This commit is contained in:
parent
7f2b3d3bf3
commit
a282a37a8c
1 changed files with 3 additions and 3 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
//Replaces blue border and box shadow around comment field with gray border and no box shadow//
|
//Replaces blue border and box shadow around comment field with gray border and no box shadow//
|
||||||
|
|
||||||
.comment_box {
|
.comment_box {
|
||||||
border: #cccccc solid 1px;
|
border: 1px solid $border-grey;
|
||||||
&:focus {
|
&:focus {
|
||||||
border: #999999 solid 1px;
|
border: 1px solid $border-dark-grey;
|
||||||
border-color: #ccc solid 1px;
|
border-color: 1px solid #ccc;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 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);
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue