summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css111
1 files changed, 111 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css
new file mode 100644
index 00000000..12cc2a57
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/dialog/dialog.css
@@ -0,0 +1,111 @@
+/*!
+ * Angular Material Design
+ * https://github.com/angular/material
+ * @license MIT
+ * v0.9.8
+ */
+/* mixin definition ; sets LTR and RTL within the same style call */
+.md-dialog-is-showing {
+ max-height: 100%; }
+
+.md-dialog-container {
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 80; }
+
+md-dialog {
+ opacity: 0;
+ min-width: 240px;
+ max-width: 80%;
+ max-height: 80%;
+ position: relative;
+ overflow: hidden;
+ box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.14), 0px 16px 24px 2px rgba(0, 0, 0, 0.098), 0px 6px 30px 5px rgba(0, 0, 0, 0.084);
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column; }
+ md-dialog.transition-in {
+ opacity: 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 {
+ 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 > form {
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ overflow: auto; }
+ md-dialog md-dialog-content {
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding: 24px;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch; }
+ md-dialog md-dialog-content:not([layout=row]) > *:first-child:not(.md-subheader) {
+ margin-top: 0; }
+ md-dialog md-dialog-content:focus {
+ outline: none; }
+ md-dialog md-dialog-content .md-subheader {
+ margin: 0; }
+ md-dialog md-dialog-content .md-subheader.sticky-clone {
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); }
+ md-dialog md-dialog-content.sticky-container {
+ padding: 0; }
+ md-dialog md-dialog-content.sticky-container > div {
+ padding: 24px;
+ padding-top: 0; }
+ md-dialog .md-actions {
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ box-sizing: border-box;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ margin-bottom: 0;
+ padding-right: 8px;
+ padding-left: 16px;
+ min-height: 52px; }
+ md-dialog .md-actions .md-button {
+ margin-bottom: 8px;
+ margin-left: 8px;
+ margin-right: 0;
+ margin-top: 8px; }
+ md-dialog.md-content-overflow .md-actions {
+ border-top-width: 1px;
+ border-top-style: solid; }
+
+@media screen and (-ms-high-contrast: active) {
+ md-dialog {
+ border: 1px solid #fff; } }