mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-04 11:05:27 +00:00
21 lines
441 B
SCSS
21 lines
441 B
SCSS
/// chips.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
|
|
@import 'extends';
|
|
|
|
// Remove the line under the tags of the message viewer
|
|
md-chips {
|
|
&.sg-readonly {
|
|
.md-chips {
|
|
box-shadow: none;
|
|
&.md-focused {
|
|
box-shadow: none;
|
|
}
|
|
.md-chip-content {
|
|
max-width: initial; // fix bug in ng-material
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.sg-chips-autocomplete {
|
|
width: (3 * $contact-chip-name-width);
|
|
} |