diff options
author | Go MAEDA <maeda@farend.jp> | 2024-12-30 05:50:55 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-12-30 05:50:55 +0000 |
commit | 9fe5b9b6fb143ecaa7c501a920c8346e36d110c8 (patch) | |
tree | 71fd6907d75268ae3599d93cc3c92c7229520035 | |
parent | 1920b67635373a9016d8291bafd48706352cb4fe (diff) | |
download | redmine-9fe5b9b6fb143ecaa7c501a920c8346e36d110c8.tar.gz redmine-9fe5b9b6fb143ecaa7c501a920c8346e36d110c8.zip |
"Font used for text areas" setting causes inconsistent font size (#42051).
Patch by Go MAEDA (user:maeda).
git-svn-id: https://svn.redmine.org/redmine/trunk@23423 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/stylesheets/application.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index bb9f6b9db..8d8f9512c 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -644,8 +644,8 @@ blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0 blockquote blockquote { margin-left: 0;} abbr, span.field-description[title] { border-bottom: 1px dotted #aaa; cursor: help; } textarea.wiki-edit {width:99%; resize:vertical; box-sizing: border-box;} -body.textarea-monospace textarea.wiki-edit {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size: 0.75rem;} -body.textarea-proportional textarea.wiki-edit {font-family: var(--fonts-main); font-size: 0.75rem;} +body.textarea-monospace textarea.wiki-edit {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;} +body.textarea-proportional textarea.wiki-edit {font-family: var(--fonts-main);} li p {margin-top: 0;} div.issue { background: #ffffdd; |