mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 13:14:16 +08:00
8941eb791e
Summary: associating salesforce contacts and leads with Nylas contacts adding fetcher form salesforce shows conencted leads and contacts auto associates acount fixing salesforce forms Salesforce composers are styled fix opportunity association with account on object creation fix specs Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://review.inboxapp.com/D1507
34 lines
741 B
Text
34 lines
741 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;
|
|
|
|
&.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;
|
|
}
|
|
}
|