sogo/UI/WebServerResources/scss/components/dialog/dialog.scss
Francis Lachapelle e14414ed56 Various Web interface changes
- more contrasted primary palette;
- white toolbars for list and detail views;
- modules navigation always visible;
- wrapped detail views into a md-card;
- moved preferences button to the sidenav;
- moved the sidenav toggle button to the top toolbar;
- new "flip" visual effect when looking at the raw source of cards and
  messages.
2015-12-04 15:15:44 -05:00

34 lines
538 B
SCSS

/// dialog.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
@import 'extends';
@mixin fullscreen {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
border-radius: 0;
flex-basis: 100%;
md-dialog-content {
padding: $layout-gutter-width;
}
}
body.popup {
md-dialog {
&[flex-xs="100"],
&.flex-xs-100 {
@include fullscreen;
}
}
}
@media (max-width: $layout-breakpoint-xs) {
md-dialog {
&[flex-xs="100"],
&.flex-xs-100 {
@include fullscreen;
}
}
}