mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-24 06:19:30 +00:00
33 lines
754 B
SCSS
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;
|
|
}
|
|
} |