mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 13:46:23 +00:00
Components will now appear in dialogs instead of a right sidenav. This commit also introduces read-only viewers for tasks and events.
17 lines
372 B
SCSS
17 lines
372 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
|
|
}
|
|
}
|
|
}
|
|
} |