diff --git a/css/alertify.css b/css/alertify.css
deleted file mode 100644
index 8bb05498..00000000
--- a/css/alertify.css
+++ /dev/null
@@ -1,205 +0,0 @@
-.alertify-logs > * {
- padding: 12px 24px;
- color: #fff;
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
- border-radius: 1px;
-}
-
-.alertify-logs > *, .alertify-logs > *.default {
- background: rgba(0, 0, 0, 0.8);
-}
-
-.alertify-logs > *.error {
- background: rgba(244, 67, 54, 0.8);
-}
-
-.alertify-logs > *.success {
- background: rgba(76, 175, 80, 0.9);
-}
-
-.alertify {
- position: fixed;
- background-color: rgba(0, 0, 0, 0.3);
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- z-index: 99999;
-}
-
-.alertify.hide {
- opacity: 0;
- pointer-events: none;
-}
-
-.alertify, .alertify.show {
- box-sizing: border-box;
- -webkit-transition: all 0.33s cubic-bezier(0.25, 0.8, 0.25, 1);
- transition: all 0.33s cubic-bezier(0.25, 0.8, 0.25, 1);
-}
-
-.alertify, .alertify * {
- box-sizing: border-box;
-}
-
-.alertify .dialog {
- padding: 12px;
-}
-
-.alertify .dialog, .alertify .alert {
- width: 100%;
- margin: 0 auto;
- position: relative;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-
-.alertify .dialog > *, .alertify .alert > * {
- width: 400px;
- max-width: 95%;
- margin: 0 auto;
- text-align: center;
- padding: 12px;
- background: #fff;
- box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.14), 0 4px 5px 0 rgba(0, 0, 0, 0.098), 0 1px 10px 0 rgba(0, 0, 0, 0.084);
-}
-
-.alertify .dialog .msg, .alertify .alert .msg {
- padding: 12px;
- margin-bottom: 12px;
- margin: 0;
- text-align: left;
-}
-
-.alertify .dialog input:not(.form-control), .alertify .alert input:not(.form-control) {
- margin-bottom: 15px;
- width: 100%;
- font-size: 100%;
- padding: 12px;
-}
-
-.alertify .dialog input:not(.form-control):focus, .alertify .alert input:not(.form-control):focus {
- outline-offset: -2px;
-}
-
-.alertify .dialog nav, .alertify .alert nav {
- text-align: right;
-}
-
-.alertify .dialog nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button), .alertify .alert nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button) {
- background: transparent;
- box-sizing: border-box;
- color: rgba(0, 0, 0, 0.87);
- position: relative;
- outline: 0;
- border: 0;
- display: inline-block;
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- padding: 0 6px;
- margin: 6px 8px;
- line-height: 36px;
- min-height: 36px;
- white-space: nowrap;
- min-width: 88px;
- text-align: center;
- text-transform: uppercase;
- font-size: 14px;
- text-decoration: none;
- cursor: pointer;
- border-radius: 2px;
-}
-
-.alertify .dialog nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):hover, .alertify .dialog nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):active, .alertify .alert nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):hover, .alertify .alert nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):active {
- background-color: rgba(0, 0, 0, 0.05);
-}
-
-.alertify .dialog nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):focus, .alertify .alert nav button:not(.btn):not(.pure-button):not(.md-button):not(.mdl-button):focus {
- border: 1px dashed rgba(0, 0, 0, 0.1);
-}
-
-.alertify-logs {
- position: fixed;
- z-index: 100;
-}
-
-.alertify-logs.bottom, .alertify-logs:not(.top) {
- bottom: 16px;
-}
-
-.alertify-logs.left, .alertify-logs:not(.right) {
- left: 16px;
-}
-
-.alertify-logs.left > *, .alertify-logs:not(.right) > * {
- float: left;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- height: auto;
-}
-
-.alertify-logs.left > *.show, .alertify-logs:not(.right) > *.show {
- left: 0;
-}
-
-.alertify-logs.left > *, .alertify-logs.left > *.hide, .alertify-logs:not(.right) > *, .alertify-logs:not(.right) > *.hide {
- left: -110%;
-}
-
-.alertify-logs.right {
- right: 16px;
-}
-
-.alertify-logs.right > * {
- float: right;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-.alertify-logs.right > *.show {
- right: 0;
- opacity: 1;
-}
-
-.alertify-logs.right > *, .alertify-logs.right > *.hide {
- right: -110%;
- opacity: 0;
-}
-
-.alertify-logs.top {
- top: 0;
-}
-
-.alertify-logs > * {
- box-sizing: border-box;
- -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);
- position: relative;
- clear: both;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-perspective: 1000;
- perspective: 1000;
-}
-
-.alertify-logs > * {
- max-height: 0;
- margin: 0;
- padding: 0;
- overflow: hidden;
- opacity: 0;
- pointer-events: none;
-}
-
-.alertify-logs > *.show {
- margin-top: 12px;
- opacity: 1;
- max-height: 1000px;
- padding: 12px;
-}
diff --git a/css/css.php b/css/css.php
index 971b2e13..43c5290a 100644
--- a/css/css.php
+++ b/css/css.php
@@ -41,11 +41,11 @@ if (!$file) {
->addFile('reset.min.css')
->addFile('jquery-ui.min.css')
->addFile('jquery-ui.structure.min.css')
- ->addFile('alertify.min.css')
->addFile('jquery.tagsinput.min.css')
->addFile('jquery.fancybox.min.css')
->addFile('fonts.min.css')
->addFile('material-icons.min.css')
+ ->addFile('toastr.min.css')
->getMinified();
} elseif ($file && $base) {
$base = Request::analyze('b');
diff --git a/css/toastr.css b/css/toastr.css
new file mode 100644
index 00000000..76f7f572
--- /dev/null
+++ b/css/toastr.css
@@ -0,0 +1,228 @@
+.toast-title {
+ font-weight: bold;
+}
+.toast-message {
+ -ms-word-wrap: break-word;
+ word-wrap: break-word;
+}
+.toast-message a,
+.toast-message label {
+ color: #FFFFFF;
+}
+.toast-message a:hover {
+ color: #CCCCCC;
+ text-decoration: none;
+}
+.toast-close-button {
+ position: relative;
+ right: -0.3em;
+ top: -0.3em;
+ float: right;
+ font-size: 20px;
+ font-weight: bold;
+ color: #FFFFFF;
+ -webkit-text-shadow: 0 1px 0 #ffffff;
+ text-shadow: 0 1px 0 #ffffff;
+ opacity: 0.8;
+ -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ filter: alpha(opacity=80);
+ line-height: 1;
+}
+.toast-close-button:hover,
+.toast-close-button:focus {
+ color: #000000;
+ text-decoration: none;
+ cursor: pointer;
+ opacity: 0.4;
+ -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
+ filter: alpha(opacity=40);
+}
+.rtl .toast-close-button {
+ left: -0.3em;
+ float: left;
+ right: 0.3em;
+}
+/*Additional properties for button version
+ iOS requires the button element instead of an anchor tag.
+ If you want the anchor version, it requires `href="#"`.*/
+button.toast-close-button {
+ padding: 0;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
+}
+.toast-top-center {
+ top: 0;
+ right: 0;
+ width: 100%;
+}
+.toast-bottom-center {
+ bottom: 0;
+ right: 0;
+ width: 100%;
+}
+.toast-top-full-width {
+ top: 0;
+ right: 0;
+ width: 100%;
+}
+.toast-bottom-full-width {
+ bottom: 0;
+ right: 0;
+ width: 100%;
+}
+.toast-top-left {
+ top: 12px;
+ left: 12px;
+}
+.toast-top-right {
+ top: 12px;
+ right: 12px;
+}
+.toast-bottom-right {
+ right: 12px;
+ bottom: 12px;
+}
+.toast-bottom-left {
+ bottom: 12px;
+ left: 12px;
+}
+#toast-container {
+ position: fixed;
+ z-index: 999999;
+ pointer-events: none;
+ /*overrides*/
+}
+#toast-container * {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+#toast-container > div {
+ position: relative;
+ pointer-events: auto;
+ overflow: hidden;
+ margin: 0 0 6px;
+ padding: 15px 15px 15px 50px;
+ width: 300px;
+ -moz-border-radius: 3px 3px 3px 3px;
+ -webkit-border-radius: 3px 3px 3px 3px;
+ border-radius: 3px 3px 3px 3px;
+ background-position: 15px center;
+ background-repeat: no-repeat;
+ -moz-box-shadow: 0 0 12px #999999;
+ -webkit-box-shadow: 0 0 12px #999999;
+ box-shadow: 0 0 12px #999999;
+ color: #FFFFFF;
+ opacity: 0.8;
+ -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
+ filter: alpha(opacity=80);
+}
+#toast-container > div.rtl {
+ direction: rtl;
+ padding: 15px 50px 15px 15px;
+ background-position: right 15px center;
+}
+#toast-container > div:hover {
+ -moz-box-shadow: 0 0 12px #000000;
+ -webkit-box-shadow: 0 0 12px #000000;
+ box-shadow: 0 0 12px #000000;
+ opacity: 1;
+ -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
+ filter: alpha(opacity=100);
+ cursor: pointer;
+}
+#toast-container > .toast-info {
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
+}
+#toast-container > .toast-error {
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
+}
+#toast-container > .toast-success {
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
+}
+#toast-container > .toast-warning {
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
+}
+#toast-container.toast-top-center > div,
+#toast-container.toast-bottom-center > div {
+ width: 300px;
+ margin-left: auto;
+ margin-right: auto;
+}
+#toast-container.toast-top-full-width > div,
+#toast-container.toast-bottom-full-width > div {
+ width: 96%;
+ margin-left: auto;
+ margin-right: auto;
+}
+.toast {
+ background-color: #030303;
+}
+.toast-success {
+ background-color: #51A351;
+}
+.toast-error {
+ background-color: #BD362F;
+}
+.toast-info {
+ background-color: #2F96B4;
+}
+.toast-warning {
+ background-color: #F89406;
+}
+.toast-progress {
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ height: 4px;
+ background-color: #000000;
+ opacity: 0.4;
+ -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
+ filter: alpha(opacity=40);
+}
+/*Responsive Design*/
+@media all and (max-width: 240px) {
+ #toast-container > div {
+ padding: 8px 8px 8px 50px;
+ width: 11em;
+ }
+ #toast-container > div.rtl {
+ padding: 8px 50px 8px 8px;
+ }
+ #toast-container .toast-close-button {
+ right: -0.2em;
+ top: -0.2em;
+ }
+ #toast-container .rtl .toast-close-button {
+ left: -0.2em;
+ right: 0.2em;
+ }
+}
+@media all and (min-width: 241px) and (max-width: 480px) {
+ #toast-container > div {
+ padding: 8px 8px 8px 50px;
+ width: 18em;
+ }
+ #toast-container > div.rtl {
+ padding: 8px 50px 8px 8px;
+ }
+ #toast-container .toast-close-button {
+ right: -0.2em;
+ top: -0.2em;
+ }
+ #toast-container .rtl .toast-close-button {
+ left: -0.2em;
+ right: 0.2em;
+ }
+}
+@media all and (min-width: 481px) and (max-width: 768px) {
+ #toast-container > div {
+ padding: 15px 15px 15px 50px;
+ width: 25em;
+ }
+ #toast-container > div.rtl {
+ padding: 15px 50px 15px 15px;
+ }
+}
diff --git a/imgs/NotoSansUI-Regular.ttf b/imgs/NotoSansUI-Regular.ttf
deleted file mode 100644
index 72709786..00000000
Binary files a/imgs/NotoSansUI-Regular.ttf and /dev/null differ
diff --git a/imgs/action.png b/imgs/action.png
deleted file mode 100644
index 467cc7e2..00000000
Binary files a/imgs/action.png and /dev/null differ
diff --git a/imgs/add.png b/imgs/add.png
deleted file mode 100644
index 60a7a291..00000000
Binary files a/imgs/add.png and /dev/null differ
diff --git a/imgs/appmgmt.png b/imgs/appmgmt.png
deleted file mode 100644
index 894d1485..00000000
Binary files a/imgs/appmgmt.png and /dev/null differ
diff --git a/imgs/arrow-list.png b/imgs/arrow-list.png
deleted file mode 100644
index d41cb004..00000000
Binary files a/imgs/arrow-list.png and /dev/null differ
diff --git a/imgs/arrow_down.png b/imgs/arrow_down.png
deleted file mode 100644
index 03f1ced5..00000000
Binary files a/imgs/arrow_down.png and /dev/null differ
diff --git a/imgs/arrow_first.png b/imgs/arrow_first.png
deleted file mode 100644
index 78560024..00000000
Binary files a/imgs/arrow_first.png and /dev/null differ
diff --git a/imgs/arrow_last.png b/imgs/arrow_last.png
deleted file mode 100644
index e81fc39e..00000000
Binary files a/imgs/arrow_last.png and /dev/null differ
diff --git a/imgs/arrow_left.png b/imgs/arrow_left.png
deleted file mode 100644
index cadc0a64..00000000
Binary files a/imgs/arrow_left.png and /dev/null differ
diff --git a/imgs/arrow_right.png b/imgs/arrow_right.png
deleted file mode 100644
index 52577dcb..00000000
Binary files a/imgs/arrow_right.png and /dev/null differ
diff --git a/imgs/arrow_up.png b/imgs/arrow_up.png
deleted file mode 100644
index 1e0f336c..00000000
Binary files a/imgs/arrow_up.png and /dev/null differ
diff --git a/imgs/attach.png b/imgs/attach.png
deleted file mode 100644
index c2875e9b..00000000
Binary files a/imgs/attach.png and /dev/null differ
diff --git a/imgs/back.png b/imgs/back.png
deleted file mode 100644
index 095fc239..00000000
Binary files a/imgs/back.png and /dev/null differ
diff --git a/imgs/backup.png b/imgs/backup.png
deleted file mode 100644
index 0c936e66..00000000
Binary files a/imgs/backup.png and /dev/null differ
diff --git a/imgs/bar.png b/imgs/bar.png
deleted file mode 100644
index b72fa44e..00000000
Binary files a/imgs/bar.png and /dev/null differ
diff --git a/imgs/bg_actionbar.png b/imgs/bg_actionbar.png
deleted file mode 100644
index a62e5527..00000000
Binary files a/imgs/bg_actionbar.png and /dev/null differ
diff --git a/imgs/bg_button.png b/imgs/bg_button.png
deleted file mode 100644
index 74845790..00000000
Binary files a/imgs/bg_button.png and /dev/null differ
diff --git a/imgs/bg_h2.png b/imgs/bg_h2.png
deleted file mode 100644
index 55576174..00000000
Binary files a/imgs/bg_h2.png and /dev/null differ
diff --git a/imgs/bg_msg_error.png b/imgs/bg_msg_error.png
deleted file mode 100644
index 2e01aee2..00000000
Binary files a/imgs/bg_msg_error.png and /dev/null differ
diff --git a/imgs/bg_msg_info.png b/imgs/bg_msg_info.png
deleted file mode 100644
index 970eb216..00000000
Binary files a/imgs/bg_msg_info.png and /dev/null differ
diff --git a/imgs/bg_msg_ok.png b/imgs/bg_msg_ok.png
deleted file mode 100644
index 623c887c..00000000
Binary files a/imgs/bg_msg_ok.png and /dev/null differ
diff --git a/imgs/bg_msg_warn.png b/imgs/bg_msg_warn.png
deleted file mode 100644
index ba70c781..00000000
Binary files a/imgs/bg_msg_warn.png and /dev/null differ
diff --git a/imgs/bg_session.png b/imgs/bg_session.png
deleted file mode 100644
index a3944630..00000000
Binary files a/imgs/bg_session.png and /dev/null differ
diff --git a/imgs/bg_tab_edit.png b/imgs/bg_tab_edit.png
deleted file mode 100644
index 44fe5fbc..00000000
Binary files a/imgs/bg_tab_edit.png and /dev/null differ
diff --git a/imgs/bg_tab_new.png b/imgs/bg_tab_new.png
deleted file mode 100644
index c37774f6..00000000
Binary files a/imgs/bg_tab_new.png and /dev/null differ
diff --git a/imgs/bg_table_header.png b/imgs/bg_table_header.png
deleted file mode 100644
index 5e6c08c5..00000000
Binary files a/imgs/bg_table_header.png and /dev/null differ
diff --git a/imgs/btn_copy.png b/imgs/btn_copy.png
deleted file mode 100644
index 2bbb8562..00000000
Binary files a/imgs/btn_copy.png and /dev/null differ
diff --git a/imgs/btn_group.png b/imgs/btn_group.png
deleted file mode 100644
index a2d9ff3d..00000000
Binary files a/imgs/btn_group.png and /dev/null differ
diff --git a/imgs/check.png b/imgs/check.png
deleted file mode 100644
index be75a331..00000000
Binary files a/imgs/check.png and /dev/null differ
diff --git a/imgs/check_blue.png b/imgs/check_blue.png
deleted file mode 100644
index bbe105e6..00000000
Binary files a/imgs/check_blue.png and /dev/null differ
diff --git a/imgs/check_orange.png b/imgs/check_orange.png
deleted file mode 100644
index 89038e48..00000000
Binary files a/imgs/check_orange.png and /dev/null differ
diff --git a/imgs/clear.png b/imgs/clear.png
deleted file mode 100644
index 964f6f0e..00000000
Binary files a/imgs/clear.png and /dev/null differ
diff --git a/imgs/clipboard.png b/imgs/clipboard.png
deleted file mode 100644
index f0db78fe..00000000
Binary files a/imgs/clipboard.png and /dev/null differ
diff --git a/imgs/clock.png b/imgs/clock.png
deleted file mode 100644
index 4f2462c8..00000000
Binary files a/imgs/clock.png and /dev/null differ
diff --git a/imgs/config.png b/imgs/config.png
deleted file mode 100644
index bf046695..00000000
Binary files a/imgs/config.png and /dev/null differ
diff --git a/imgs/delete.png b/imgs/delete.png
deleted file mode 100644
index eb0a0c7f..00000000
Binary files a/imgs/delete.png and /dev/null differ
diff --git a/imgs/disabled.png b/imgs/disabled.png
deleted file mode 100644
index fe0c63c0..00000000
Binary files a/imgs/disabled.png and /dev/null differ
diff --git a/imgs/download.png b/imgs/download.png
deleted file mode 100644
index 8eaf4497..00000000
Binary files a/imgs/download.png and /dev/null differ
diff --git a/imgs/edit.png b/imgs/edit.png
deleted file mode 100644
index 5716a040..00000000
Binary files a/imgs/edit.png and /dev/null differ
diff --git a/imgs/exit.png b/imgs/exit.png
deleted file mode 100644
index 47fcc424..00000000
Binary files a/imgs/exit.png and /dev/null differ
diff --git a/imgs/gearscolorful.png b/imgs/gearscolorful.png
deleted file mode 100644
index 3a397351..00000000
Binary files a/imgs/gearscolorful.png and /dev/null differ
diff --git a/imgs/genpass.png b/imgs/genpass.png
deleted file mode 100644
index 92889d9b..00000000
Binary files a/imgs/genpass.png and /dev/null differ
diff --git a/imgs/h2_bg.png b/imgs/h2_bg.png
deleted file mode 100644
index 03742ea9..00000000
Binary files a/imgs/h2_bg.png and /dev/null differ
diff --git a/imgs/help.png b/imgs/help.png
deleted file mode 100644
index 79a41308..00000000
Binary files a/imgs/help.png and /dev/null differ
diff --git a/imgs/info.png b/imgs/info.png
deleted file mode 100644
index 37ccb356..00000000
Binary files a/imgs/info.png and /dev/null differ
diff --git a/imgs/info.svg b/imgs/info.svg
deleted file mode 100644
index 1e07aed8..00000000
--- a/imgs/info.svg
+++ /dev/null
@@ -1,1758 +0,0 @@
-
-
-
-
diff --git a/imgs/key.png b/imgs/key.png
deleted file mode 100644
index 3cf460e1..00000000
Binary files a/imgs/key.png and /dev/null differ
diff --git a/imgs/ldap.png b/imgs/ldap.png
deleted file mode 100644
index 3dfa1fe4..00000000
Binary files a/imgs/ldap.png and /dev/null differ
diff --git a/imgs/loading.gif b/imgs/loading.gif
deleted file mode 100644
index 41070a17..00000000
Binary files a/imgs/loading.gif and /dev/null differ
diff --git a/imgs/log.png b/imgs/log.png
deleted file mode 100644
index bc99e85c..00000000
Binary files a/imgs/log.png and /dev/null differ
diff --git a/imgs/login.png b/imgs/login.png
deleted file mode 100644
index 0554de6e..00000000
Binary files a/imgs/login.png and /dev/null differ
diff --git a/imgs/notes.png b/imgs/notes.png
deleted file mode 100644
index 147dda14..00000000
Binary files a/imgs/notes.png and /dev/null differ
diff --git a/imgs/ok.png b/imgs/ok.png
deleted file mode 100644
index fecd7884..00000000
Binary files a/imgs/ok.png and /dev/null differ
diff --git a/imgs/preferences.png b/imgs/preferences.png
deleted file mode 100644
index 0c7d119a..00000000
Binary files a/imgs/preferences.png and /dev/null differ
diff --git a/imgs/refresh.png b/imgs/refresh.png
deleted file mode 100644
index 8cac11a6..00000000
Binary files a/imgs/refresh.png and /dev/null differ
diff --git a/imgs/request.png b/imgs/request.png
deleted file mode 100644
index a4d9b902..00000000
Binary files a/imgs/request.png and /dev/null differ
diff --git a/imgs/restore.png b/imgs/restore.png
deleted file mode 100644
index c248944b..00000000
Binary files a/imgs/restore.png and /dev/null differ
diff --git a/imgs/save.png b/imgs/save.png
deleted file mode 100644
index 2efbf463..00000000
Binary files a/imgs/save.png and /dev/null differ
diff --git a/imgs/search.png b/imgs/search.png
deleted file mode 100644
index 76a2caab..00000000
Binary files a/imgs/search.png and /dev/null differ
diff --git a/imgs/show.png b/imgs/show.png
deleted file mode 100644
index 066faa06..00000000
Binary files a/imgs/show.png and /dev/null differ
diff --git a/imgs/sort_asc.png b/imgs/sort_asc.png
deleted file mode 100644
index d92fa696..00000000
Binary files a/imgs/sort_asc.png and /dev/null differ
diff --git a/imgs/sort_desc.png b/imgs/sort_desc.png
deleted file mode 100644
index 3286ea8e..00000000
Binary files a/imgs/sort_desc.png and /dev/null differ
diff --git a/imgs/start.png b/imgs/start.png
deleted file mode 100644
index f3c13409..00000000
Binary files a/imgs/start.png and /dev/null differ
diff --git a/imgs/update.png b/imgs/update.png
deleted file mode 100644
index e81dc2b7..00000000
Binary files a/imgs/update.png and /dev/null differ
diff --git a/imgs/upload.png b/imgs/upload.png
deleted file mode 100644
index 4e86da1a..00000000
Binary files a/imgs/upload.png and /dev/null differ
diff --git a/imgs/user-pass.png b/imgs/user-pass.png
deleted file mode 100644
index 050ed4ce..00000000
Binary files a/imgs/user-pass.png and /dev/null differ
diff --git a/imgs/users.png b/imgs/users.png
deleted file mode 100644
index d111a29a..00000000
Binary files a/imgs/users.png and /dev/null differ
diff --git a/imgs/view.png b/imgs/view.png
deleted file mode 100644
index c0ef129d..00000000
Binary files a/imgs/view.png and /dev/null differ
diff --git a/imgs/warning.png b/imgs/warning.png
deleted file mode 100644
index fcc74d78..00000000
Binary files a/imgs/warning.png and /dev/null differ
diff --git a/imgs/wiki.png b/imgs/wiki.png
deleted file mode 100644
index 9ad26dc0..00000000
Binary files a/imgs/wiki.png and /dev/null differ
diff --git a/inc/themes/classic/account-actions.inc b/inc/themes/classic/account-actions.inc
deleted file mode 100644
index 5eabf67d..00000000
--- a/inc/themes/classic/account-actions.inc
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/account-details.inc b/inc/themes/classic/account-details.inc
deleted file mode 100644
index a7214a3c..00000000
--- a/inc/themes/classic/account-details.inc
+++ /dev/null
@@ -1,67 +0,0 @@
-
\ No newline at end of file
diff --git a/inc/themes/classic/account-editpass.inc b/inc/themes/classic/account-editpass.inc
deleted file mode 100644
index e21794d6..00000000
--- a/inc/themes/classic/account-editpass.inc
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/account-files.inc b/inc/themes/classic/account-files.inc
deleted file mode 100644
index 8042113b..00000000
--- a/inc/themes/classic/account-files.inc
+++ /dev/null
@@ -1,37 +0,0 @@
-
\ No newline at end of file
diff --git a/inc/themes/classic/account-request.inc b/inc/themes/classic/account-request.inc
deleted file mode 100644
index 2c9c0966..00000000
--- a/inc/themes/classic/account-request.inc
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/account.inc b/inc/themes/classic/account.inc
deleted file mode 100644
index f387a167..00000000
--- a/inc/themes/classic/account.inc
+++ /dev/null
@@ -1,299 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/aux-customfields.inc b/inc/themes/classic/aux-customfields.inc
deleted file mode 100644
index 63c496fe..00000000
--- a/inc/themes/classic/aux-customfields.inc
+++ /dev/null
@@ -1,40 +0,0 @@
- $field):
-?>
-
-
-
- getDefinition()->getName(); ?>
- getDefinition()->getHelp()): ?>
-
-
-
- |
-
-
- getDefinition()->isRequired()) ? 'required' : ''; ?>>
-
- getDefinition()->getType() === CustomFieldTypes::TYPE_PASSWORD && !$showViewPass): ?>
- ****
-
- getValue(); ?>
-
-
- |
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/backup.inc b/inc/themes/classic/backup.inc
deleted file mode 100644
index f79b49ef..00000000
--- a/inc/themes/classic/backup.inc
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/inc/themes/classic/body-end.inc b/inc/themes/classic/body-end.inc
deleted file mode 100644
index a74c6e13..00000000
--- a/inc/themes/classic/body-end.inc
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-