Merge pull request #5069 from TeamOmniaExtares/bugfix_remove_bootstrap_for_SPV_comments
Bugfix remove bootstrap for spv comments Issue #4425
This commit is contained in:
commit
6c6efd6e9a
3 changed files with 10 additions and 0 deletions
|
|
@ -15,6 +15,7 @@
|
|||
* Fit pod name to page size on the sign in page [#5056](https://github.com/diaspora/diaspora/pull/5056)
|
||||
* Set mention notification as read when viewing post [#5006](https://github.com/diaspora/diaspora/pull/5006)
|
||||
* Set sharing notification as read when viewing profile [#5009](https://github.com/diaspora/diaspora/pull/5009)
|
||||
* Ensure a consistent border on text input elements [#5069](https://github.com/diaspora/diaspora/pull/5069)
|
||||
|
||||
## Features
|
||||
* Port admin pages to bootstrap, polish user search results, allow accounts to be closed from the backend [#5046](https://github.com/diaspora/diaspora/pull/5046)
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
@import 'popover'
|
||||
@import 'stream_element'
|
||||
@import 'report'
|
||||
@import 'new_styles/_forms'
|
||||
|
||||
/* ====== media ====== */
|
||||
.media
|
||||
|
|
|
|||
|
|
@ -86,6 +86,14 @@ form.block-form {
|
|||
}
|
||||
}
|
||||
|
||||
textarea, input[type=text] {
|
||||
&:focus {
|
||||
border: 1px solid $border-dark-grey;
|
||||
outline: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* buttons to be extracted? */
|
||||
.new-btn {
|
||||
|
|
|
|||
Loading…
Reference in a new issue