diaspora/app/assets/stylesheets/bootstrap-commentfix.scss

12 lines
No EOL
413 B
SCSS

//Replaces blue border and box shadow around comment field with gray border and no box shadow//
.comment_box {
border: 1px solid $border-grey;
&:focus {
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);
}
}