Skip to content

Commit

Permalink
Make textareas bigger in admin
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-hank committed Sep 27, 2022
1 parent 2e65372 commit 29b5743
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). It uses [CalVer](https://calver.org/) as of May 2019.

## [22.09f](https://github.com/berkmancenter/lumendatabase/releases/tag/2022.09f) - 2022-09-27
### Fixed
* Made `textarea` fields in the `admin` wider generally.

## [22.09e](https://github.com/berkmancenter/lumendatabase/releases/tag/2022.09e) - 2022-09-23
### Fixed
* Enlarge the `work description` fields in the `admin`.
Expand Down
8 changes: 5 additions & 3 deletions app/assets/stylesheets/rails_admin/custom/theming.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@ aside#redaction-tools {
}
}

#edit_notice {
[id^='edit_'],
[id^='new_'] {
textarea {
height: 400px;
width: 700px;
height: 400px !important;
width: 700px !important;
max-width: 100%;
}

label {
Expand Down

0 comments on commit 29b5743

Please sign in to comment.