luci-theme-material: fix font size bug

fix "textarea font-size too big in firefox"

Signed-off-by: Lutty Yang <lutty@wcan.in>
This commit is contained in:
Lutty Yang 2015-09-18 16:22:39 +08:00
parent e04e263adf
commit cf0623f4f5
2 changed files with 10 additions and 10 deletions

View file

@ -1,5 +0,0 @@
[user]
name = Lutty Yang
email = lutty@wcan.in
[commit]
template = /home/dlll/Documents/git-commitmessage

View file

@ -683,17 +683,18 @@ td > table > tbody > tr > td {
.cbi-input-textarea { .cbi-input-textarea {
box-sizing: border-box; box-sizing: border-box;
width: 100%; width: 100%;
min-height: 15rem; min-height: 16rem;
padding: 1rem; padding: 1rem;
font-size: 1.2rem; font-size: 0.9rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: black;
} }
#syslog { #syslog {
width: 90%; width: 100%;
width: calc(100% - 2rem);
min-height: 15rem; min-height: 15rem;
padding: 1rem; padding: 1rem;
font-size: 1rem; font-size: smaller;
color: #5F5F5F; color: #5F5F5F;
margin-bottom: 20px; margin-bottom: 20px;
@ -1102,6 +1103,10 @@ body.lang_pl.node-main-login .cbi-value-title{
fieldset { fieldset {
padding: 1rem; padding: 1rem;
} }
.cbi-input-textarea{
font-size: smaller;
}
} }
@media screen and (max-width: 1280px) { @media screen and (max-width: 1280px) {