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 'node_modules/ng-dialog/css/ngDialog.css')
-rw-r--r--node_modules/ng-dialog/css/ngDialog.css121
1 files changed, 121 insertions, 0 deletions
diff --git a/node_modules/ng-dialog/css/ngDialog.css b/node_modules/ng-dialog/css/ngDialog.css
new file mode 100644
index 0000000000..1561a04c62
--- /dev/null
+++ b/node_modules/ng-dialog/css/ngDialog.css
@@ -0,0 +1,121 @@
+@-webkit-keyframes ngdialog-fadeout {
+ 0% {
+ opacity: 1;
+ }
+
+ 100% {
+ opacity: 0;
+ }
+}
+
+@keyframes ngdialog-fadeout {
+ 0% {
+ opacity: 1;
+ }
+
+ 100% {
+ opacity: 0;
+ }
+}
+
+@-webkit-keyframes ngdialog-fadein {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+}
+
+@keyframes ngdialog-fadein {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+}
+
+.ngdialog {
+ box-sizing: border-box;
+}
+
+.ngdialog *,
+.ngdialog *:before,
+.ngdialog *:after {
+ box-sizing: inherit;
+}
+
+.ngdialog {
+ position: fixed;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+ z-index: 10000;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ /* fix for Scrollbars not clickable on overflow #552 */
+ background: rgba(0, 0, 0, 0.4);
+ animation: ngdialog-fadein 0.5s;
+ /* end fix for Scrollbars not clickable on overflow #552 */
+}
+
+.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;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ -webkit-backface-visibility: hidden;
+ -webkit-animation: ngdialog-fadein 0.5s;
+ animation: ngdialog-fadein 0.5s;
+ /* fix for Scrollbars not clickable on overflow #552 */
+ margin-right: 15px;
+ background: transparent;
+ /* end fix for Scrollbars not clickable on overflow #552 */
+}
+
+.ngdialog-no-overlay {
+ pointer-events: none;
+}
+
+.ngdialog.ngdialog-closing .ngdialog-overlay {
+ -webkit-backface-visibility: hidden;
+ -webkit-animation: ngdialog-fadeout 0.5s;
+ animation: ngdialog-fadeout 0.5s;
+}
+
+.ngdialog-content {
+ background: white;
+ -webkit-backface-visibility: hidden;
+ -webkit-animation: ngdialog-fadein 0.5s;
+ animation: ngdialog-fadein 0.5s;
+ pointer-events: all;
+}
+
+.ngdialog.ngdialog-closing .ngdialog-content {
+ -webkit-backface-visibility: hidden;
+ -webkit-animation: ngdialog-fadeout 0.5s;
+ animation: ngdialog-fadeout 0.5s;
+}
+
+.ngdialog-close:before {
+ font-family: 'Helvetica', Arial, sans-serif;
+ content: '\00D7';
+ cursor: pointer;
+}
+
+html.ngdialog-open,
+body.ngdialog-open {
+ overflow: hidden;
+}