replaces blue comment box border and box shadow with gray border and no box shadow
This commit is contained in:
parent
b246c7b5ef
commit
7f2b3d3bf3
3 changed files with 14 additions and 0 deletions
|
|
@ -19,6 +19,7 @@
|
|||
@import 'popover'
|
||||
@import 'stream_element'
|
||||
@import 'report'
|
||||
@import 'bootstrap-commentfix'
|
||||
|
||||
/* ====== media ====== */
|
||||
.media
|
||||
|
|
|
|||
12
app/assets/stylesheets/bootstrap-commentfix.scss
vendored
Normal file
12
app/assets/stylesheets/bootstrap-commentfix.scss
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
//Replaces blue border and box shadow around comment field with gray border and no box shadow//
|
||||
|
||||
.comment_box {
|
||||
border: #cccccc solid 1px;
|
||||
&:focus {
|
||||
border: #999999 solid 1px;
|
||||
border-color: #ccc solid 1px;
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
@ -27,6 +27,7 @@
|
|||
@import 'bootstrap-headerfix';
|
||||
@import 'opengraph';
|
||||
@import 'single-post-view';
|
||||
@import 'bootstrap-commentfix';
|
||||
@import 'new_styles/poll';
|
||||
|
||||
/* conversations */
|
||||
|
|
|
|||
Loading…
Reference in a new issue