Skip to content

Commit

Permalink
Fixes #13945: Removed Courier New from error page fonts list since it…
Browse files Browse the repository at this point in the history
… looks bad on Linux (#13947)
  • Loading branch information
samdark authored Apr 9, 2017
1 parent a9be295 commit 3a6a590
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Yii Framework 2 Change Log
- Enh #13837: Refactored masking of CSRF tokens (sammousa)
- Enh #13560: Refactored `\yii\widgets\FragmentCache::getCachedContent()`, added tests (Kolyunya)
- Bug #13901: Fixed passing unused parameter to `formatMessage()` call in `\yii\validators\IpValidator` (Kolyunya)
- Enh #13945: Removed Courier New from error page fonts list since it looks bad on Linux (samdark)

2.0.11.2 February 08, 2017
--------------------------
Expand Down
6 changes: 3 additions & 3 deletions framework/views/errorHandler/exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,15 @@
line-height: 20px;
font-size: 12px;
margin-top: 1px;
font-family: Consolas, Courier New, monospace;
font-family: Consolas, monospace;
}
.call-stack ul li .code pre{
position: relative;
z-index: 200;
left: 50px;
line-height: 20px;
font-size: 12px;
font-family: Consolas, Courier New, monospace;
font-family: Consolas, monospace;
display: inline;
}
@-moz-document url-prefix() {
Expand All @@ -272,7 +272,7 @@
.request .code pre{
font-size: 14px;
line-height: 18px;
font-family: Consolas, Courier New, monospace;
font-family: Consolas, monospace;
display: inline;
word-wrap: break-word;
}
Expand Down

0 comments on commit 3a6a590

Please sign in to comment.