Mailspring/static/components/tokenizing-text-field.less
Ben Gotow aad21317e5 feat(ui): Updates from March 17th mockups
Summary:
There are two known issues:
- toolbar is not draggable in some areas when in three-pane mode.
- archive button appears over very long subjects. Propose moving this button elsewhere.

WIP

WIP

Test Plan: Run tests

Reviewers: evan

Reviewed By: evan

Differential Revision: https://review.inboxapp.com/D1311
2015-03-18 18:21:04 -07:00

86 lines
1.7 KiB
Plaintext

@import "ui-variables";
.tokenizing-field {
display: block;
margin: 0;
padding: 0;
border-bottom: 1px solid @border-color-divider;
min-height: 30px;
position: relative;
.header-container, .footer-container {
background-color: transparent;
padding:0;
margin:0;
border:0;
}
.token {
display: inline-block;
position: relative;
padding: 0.5em @spacing-half 0.10em @spacing-half;
padding-right: 1.5em;
margin: 0 5px 5px 0;
border-radius: @border-radius-base;
font-size: 15px;
background-color: @background-secondary;
max-width: 100%;
.action {
position:absolute;
padding: 0;
padding-top: 1px;
right: 5px;
border: 0;
margin: 0;
background-color: transparent;
color: @text-color-very-subtle;
font-size: 10px;
}
&:hover {
background-color: darken(@background-secondary, 5%);
cursor: default;
}
&.selected,
&.dragging {
background-color: @background-tertiary;
color: @text-color-inverse;
.action { color: @text-color-inverse-subtle; }
}
&.dragging {
cursor: -webkit-grabbing;
}
}
.tokenizing-field-label {
color: @text-color-very-subtle;
float: left;
text-transform: capitalize;
padding-top: 8px;
display: block;
}
.tokenizing-field-input {
position: relative;
padding-left: 2.1em;
input {
display: inline-block;
width: initial;
padding: 6px 0 3px 0;
margin: 0 5px 5px 0;
border: none;
min-width: 5em;
background-color:transparent;
}
input:focus {
box-shadow: none;
}
}
}
body.is-blurred .tokenizing-field .token {
background-color: @background-secondary;
}