UX: normalize mobile <input> styles w/desktop
This commit is contained in:
parent
d5f4f2f5c1
commit
a93c59abbf
|
@ -16,7 +16,10 @@ display: none !important; // can be removed if inline JS CSS is removed from com
|
|||
input {
|
||||
background: $secondary;
|
||||
color: $primary;
|
||||
border-color: blend-primary-secondary(15%);
|
||||
padding: 4px;
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0, .3);
|
||||
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
||||
}
|
||||
|
||||
#reply-control {
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
color: dark-light-choose(scale-color($primary, $lightness: 35%), scale-color($secondary, $lightness: 65%));
|
||||
}
|
||||
label { float: left; display: block; }
|
||||
textarea, input, select {font-size: 1.143em; clear: left; margin-top: 0; }
|
||||
textarea, input, select {
|
||||
font-size: 1.143em;
|
||||
clear: left;
|
||||
margin-top: 0;
|
||||
}
|
||||
td { padding: 4px; }
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue