diff options
author | Go MAEDA <maeda@farend.jp> | 2024-10-16 12:44:02 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-10-16 12:44:02 +0000 |
commit | a8fb64d89ca3cddc23f7b92820eb59826ebd2c12 (patch) | |
tree | 01feb05fed78a026c4eb50e7f8ef2b9820320d04 | |
parent | 3beb482eb82926506d07605b11ce41da1b27545a (diff) | |
download | redmine-a8fb64d89ca3cddc23f7b92820eb59826ebd2c12.tar.gz redmine-a8fb64d89ca3cddc23f7b92820eb59826ebd2c12.zip |
Change CSS font-size units from px to rem in scm.css (#2499).
git-svn-id: https://svn.redmine.org/redmine/trunk@23132 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/assets/stylesheets/scm.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/scm.css b/app/assets/stylesheets/scm.css index fc79472b2..36755a668 100644 --- a/app/assets/stylesheets/scm.css +++ b/app/assets/stylesheets/scm.css @@ -45,7 +45,7 @@ li.change .copied-from:before { content: " - "} #changes-legend li { float: left; background-position: 5px 0; } table.filecontent { border: 1px solid #e2e2e2; border-collapse: collapse; width:98%; background-color: #fafafa; } -table.filecontent tbody {font-family:Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size:12px;} +table.filecontent tbody {font-family:Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size:0.75rem;} table.filecontent th { border: 1px solid #e2e2e2; background-color: #eee; } table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding:5px;} table.filecontent tr.spacing th { text-align:center; } @@ -77,7 +77,7 @@ table.filecontent td.line-code {padding: 0 0 0 4px;} table.filecontent td.line-code pre, table.filecontent td.line-code div { margin: 0px; white-space: pre-wrap; - font-family:Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size:12px; + font-family:Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size:0.75rem; } table.filecontent tr:target th.line-num { background-color:#E0E0E0; color: #777; } |