(css) Improve autocompletion display

pull/186/head
Francis Lachapelle 2015-12-18 09:11:36 -05:00
parent d225865a3f
commit 140803ebf2
2 changed files with 6 additions and 7 deletions

View File

@ -50,6 +50,12 @@ md-chips {
// Enlarge the default autocompletion menu
.sg-chips-autocomplete {
width: (3 * $contact-chip-name-width);
@media (max-width: $layout-breakpoint-xs) {
// Enlarge the autocompletion menu on small devices to fit the entire screen
left: 0;
right: 0;
width: auto;
}
}
// Adjust avatar size according to chips dimensions

View File

@ -1,9 +1,2 @@
/// virtualRepeater.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
@import 'extends';
// Override some md styles
.md-virtual-repeat-container {
.md-virtual-repeat-offsetter {
right: 0; // no need to keep space for the scrollbar
}
}