From 2a6399b8bf8aabc0f97f82c79adc75ed4e99904b Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 26 Apr 2013 02:43:55 +0200 Subject: [PATCH] Fix the font-family of .fields, it should depend on the style. --- css/photon.css | 3 +++ css/style.css | 2 +- css/tomorrow.css | 3 +++ css/yotsuba-b.css | 3 +++ css/yotsuba.css | 3 +++ 5 files changed, 13 insertions(+), 1 deletion(-) diff --git a/css/photon.css b/css/photon.css index cd4d9a702..448d49a86 100644 --- a/css/photon.css +++ b/css/photon.css @@ -3,6 +3,9 @@ background-color: #DDD; border-color: #CCC; } +:root.photon .field { + font-family: arial, helvetica, sans-serif; +} :root.photon .field:focus { border-color: #EA8; } diff --git a/css/style.css b/css/style.css index 1b1bb06f2..1f98a4eb7 100644 --- a/css/style.css +++ b/css/style.css @@ -11,7 +11,7 @@ -moz-box-sizing: border-box; box-sizing: border-box; color: #333; - font: 13px sans-serif; + font-size: 13px; margin: 0; padding: 2px 4px 3px; outline: none; diff --git a/css/tomorrow.css b/css/tomorrow.css index 2d03d4498..cd36d78cb 100644 --- a/css/tomorrow.css +++ b/css/tomorrow.css @@ -3,6 +3,9 @@ background-color: #282A2E; border-color: #111; } +:root.tomorrow .field { + font-family: arial, helvetica, sans-serif; +} :root.tomorrow .field:focus { border-color: #000; } diff --git a/css/yotsuba-b.css b/css/yotsuba-b.css index 20b1214fe..73884a2ac 100644 --- a/css/yotsuba-b.css +++ b/css/yotsuba-b.css @@ -3,6 +3,9 @@ background-color: #D6DAF0; border-color: #B7C5D9; } +:root.yotsuba-b .field { + font-family: arial, helvetica, sans-serif; +} :root.yotsuba-b .field:focus { border-color: #98E; } diff --git a/css/yotsuba.css b/css/yotsuba.css index 2cf8b83ba..bbc9f2478 100644 --- a/css/yotsuba.css +++ b/css/yotsuba.css @@ -3,6 +3,9 @@ background-color: #F0E0D6; border-color: #D9BFB7; } +:root.yotsuba .field { + font-family: arial, helvetica, sans-serif; +} :root.yotsuba .field:focus { border-color: #EA8; }