Files
sogo/UI/WebServerResources/scss/components/chips/chips.scss
2015-08-26 09:48:47 -04:00

33 lines
754 B
SCSS

/// chips.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
@import 'extends';
md-chips {
// Remove the line under the tags of the message viewer
&.sg-readonly {
.md-chips {
box-shadow: none;
&.md-focused {
box-shadow: none;
}
.md-chip-content {
max-width: initial; // fix bug in ng-material
}
}
}
}
// Enlarge the default autocompletion menu
.sg-chips-autocomplete {
width: (3 * $contact-chip-name-width);
}
// In the autocompletion menu, don't limit the contact name to a fixed width
// and show the email address right after it
.md-contact-suggestion {
.md-contact-name {
width: auto;
}
.md-contact-email {
margin-left: $contact-chip-suggestion-margin;
}
}