mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +08:00
4d14146aa7
Summary: Fixes T3773 Test Plan: manual Reviewers: drew, bengotow Reviewed By: bengotow Maniphest Tasks: T3773 Differential Revision: https://phab.nylas.com/D2105
39 lines
827 B
Text
39 lines
827 B
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
input[type="text"],
|
|
input[type="email"],
|
|
input[type="date"],
|
|
input[type="datetime"],
|
|
input[type="datetime-local"],
|
|
input[type="month"],
|
|
input[type="number"],
|
|
input[type="password"],
|
|
input[type="range"],
|
|
input[type="search"],
|
|
input[type="tel"],
|
|
input[type="time"],
|
|
input[type="url"] {
|
|
width: 100%;
|
|
padding-left: @padding-xs-horizontal;
|
|
padding-right: @padding-xs-horizontal;
|
|
font-size: @font-size-base;
|
|
line-height: @line-height-computed;
|
|
font-weight:400;
|
|
background: @input-bg;
|
|
|
|
&:disabled {
|
|
background: fadeout(@input-bg, 40%);
|
|
}
|
|
|
|
&.input-bordered {
|
|
border-radius: @border-radius-base;
|
|
border: 1px solid @input-border;
|
|
}
|
|
}
|
|
input[type="text"]:focus,
|
|
input[type="email"]:focus, {
|
|
&.input-bordered {
|
|
box-shadow: 0 0 3px @accent-primary;
|
|
}
|
|
}
|