Fix the font-family of .fields, it should depend on the style.

This commit is contained in:
Nicolas Stepien 2013-04-26 02:43:55 +02:00
parent 43d97c326a
commit 2a6399b8bf
5 changed files with 13 additions and 1 deletions

View File

@ -3,6 +3,9 @@
background-color: #DDD; background-color: #DDD;
border-color: #CCC; border-color: #CCC;
} }
:root.photon .field {
font-family: arial, helvetica, sans-serif;
}
:root.photon .field:focus { :root.photon .field:focus {
border-color: #EA8; border-color: #EA8;
} }

View File

@ -11,7 +11,7 @@
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
color: #333; color: #333;
font: 13px sans-serif; font-size: 13px;
margin: 0; margin: 0;
padding: 2px 4px 3px; padding: 2px 4px 3px;
outline: none; outline: none;

View File

@ -3,6 +3,9 @@
background-color: #282A2E; background-color: #282A2E;
border-color: #111; border-color: #111;
} }
:root.tomorrow .field {
font-family: arial, helvetica, sans-serif;
}
:root.tomorrow .field:focus { :root.tomorrow .field:focus {
border-color: #000; border-color: #000;
} }

View File

@ -3,6 +3,9 @@
background-color: #D6DAF0; background-color: #D6DAF0;
border-color: #B7C5D9; border-color: #B7C5D9;
} }
:root.yotsuba-b .field {
font-family: arial, helvetica, sans-serif;
}
:root.yotsuba-b .field:focus { :root.yotsuba-b .field:focus {
border-color: #98E; border-color: #98E;
} }

View File

@ -3,6 +3,9 @@
background-color: #F0E0D6; background-color: #F0E0D6;
border-color: #D9BFB7; border-color: #D9BFB7;
} }
:root.yotsuba .field {
font-family: arial, helvetica, sans-serif;
}
:root.yotsuba .field:focus { :root.yotsuba .field:focus {
border-color: #EA8; border-color: #EA8;
} }