mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-02-11 08:48:11 +01:00
88 lines
2.5 KiB
CSS
88 lines
2.5 KiB
CSS
/*!
|
|
* Angular Material Design
|
|
* https://github.com/angular/material
|
|
* @license MIT
|
|
* v0.7.0-rc3
|
|
*/
|
|
.md-dialog-container {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 80; }
|
|
|
|
md-dialog {
|
|
opacity: 0;
|
|
min-width: 240px;
|
|
max-width: 80%;
|
|
max-height: 80%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0px 27px 24px 0 rgba(0, 0, 0, 0.2);
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column; }
|
|
md-dialog.transition-in {
|
|
opacity: 1;
|
|
-webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
|
transform: translate3d(0, 0, 0) scale(1); }
|
|
md-dialog.transition-out {
|
|
-webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
-webkit-transform: translate3d(0, 100%, 0) scale(0.2);
|
|
transform: translate3d(0, 100%, 0) scale(0.2); }
|
|
md-dialog md-content {
|
|
-webkit-box-ordinal-group: 2;
|
|
-webkit-order: 1;
|
|
-ms-flex-order: 1;
|
|
order: 1;
|
|
padding: 24px;
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch; }
|
|
md-dialog md-content:not([layout=row]) *:first-child {
|
|
margin-top: 0px; }
|
|
md-dialog .md-actions {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-ordinal-group: 3;
|
|
-webkit-order: 2;
|
|
-ms-flex-order: 2;
|
|
order: 2;
|
|
box-sizing: border-box;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: end;
|
|
-webkit-justify-content: flex-end;
|
|
-ms-flex-pack: end;
|
|
justify-content: flex-end;
|
|
padding: 16px 16px;
|
|
min-height: 40px; }
|
|
md-dialog .md-actions > * {
|
|
margin-left: 8px; }
|
|
md-dialog.md-content-overflow .md-actions {
|
|
border-top: 1px solid; }
|