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.css114
1 files changed, 0 insertions, 114 deletions
diff --git a/libs/bower_components/ngDialog/css/ngDialog.css b/libs/bower_components/ngDialog/css/ngDialog.css
deleted file mode 100644
index 0e91643675..0000000000
--- a/libs/bower_components/ngDialog/css/ngDialog.css
+++ /dev/null
@@ -1,114 +0,0 @@
-@-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;
-}
-
-.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);
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- -webkit-backface-visibility: hidden;
- -webkit-animation: ngdialog-fadein 0.5s;
- 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;
- 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;
-} \ No newline at end of file