Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/ngDialog/css/ngDialog.css')
-rw-r--r--libs/bower_components/ngDialog/css/ngDialog.css22
1 files changed, 18 insertions, 4 deletions
diff --git a/libs/bower_components/ngDialog/css/ngDialog.css b/libs/bower_components/ngDialog/css/ngDialog.css
index cfbbb65272..0e91643675 100644
--- a/libs/bower_components/ngDialog/css/ngDialog.css
+++ b/libs/bower_components/ngDialog/css/ngDialog.css
@@ -38,13 +38,14 @@
}
}
-.ngdialog,
+.ngdialog {
+ box-sizing: border-box;
+}
+
.ngdialog *,
.ngdialog *:before,
.ngdialog *:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
+ box-sizing: inherit;
}
.ngdialog {
@@ -58,6 +59,13 @@
left: 0;
}
+.ngdialog.ngdialog-disabled-animation,
+.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
+.ngdialog.ngdialog-disabled-animation .ngdialog-content {
+ -webkit-animation: none!important;
+ animation: none!important;
+}
+
.ngdialog-overlay {
position: fixed;
background: rgba(0, 0, 0, 0.4);
@@ -70,6 +78,10 @@
animation: ngdialog-fadein 0.5s;
}
+.ngdialog-no-overlay {
+ pointer-events: none;
+}
+
.ngdialog.ngdialog-closing .ngdialog-overlay {
-webkit-backface-visibility: hidden;
-webkit-animation: ngdialog-fadeout 0.5s;
@@ -81,6 +93,7 @@
-webkit-backface-visibility: hidden;
-webkit-animation: ngdialog-fadein 0.5s;
animation: ngdialog-fadein 0.5s;
+ pointer-events: all;
}
.ngdialog.ngdialog-closing .ngdialog-content {
@@ -95,6 +108,7 @@
cursor: pointer;
}
+html.ngdialog-open,
body.ngdialog-open {
overflow: hidden;
} \ No newline at end of file