Make dbus connections allow multiple connections
Fix static dependencies
diff --git a/static/css/intel.css b/static/css/intel.css
index 6915f8a..2596d1e 100644
--- a/static/css/intel.css
+++ b/static/css/intel.css
@@ -2880,5 +2880,115 @@
color: #fff!important
}
+.animate-enter {
+ -webkit-animation: enter 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ animation: enter 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ display: block;
+ position: relative;
+}
+
+@-webkit-keyframes enter {
+ from {
+ opacity: 0;
+ height: 0px;
+ }
+ 20% {
+ opacity: .5;
+ }
+ 40% {
+ opacity: .15;
+ color: red;
+ }
+ 60% {
+ opacity: .75;
+ }
+ 80% {
+ opacity: .3;
+ }
+ to {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+@keyframes enter {
+ from {
+ opacity: 0;
+ height: 0px;
+ }
+ 20% {
+ opacity: .5;
+ }
+ 40% {
+ opacity: .15;
+ color: red;
+ }
+ 60% {
+ opacity: .75;
+ }
+ 80% {
+ opacity: .3;
+ }
+ to {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+.animate-leave {
+ -webkit-animation: leave 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ animation: leave 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ display: block;
+ position: relative;
+}
+
+@-webkit-keyframes leave {
+ to {
+ opacity: 0;
+ height: 0px;
+ }
+ 80% {
+ opacity: .25;
+ }
+ 60% {
+ opacity: .10;
+ color: red;
+ }
+ 40% {
+ opacity: .5;
+ }
+ 20% {
+ opacity: .30;
+ }
+ from {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+@keyframes leave {
+ to {
+ opacity: 0;
+ height: 0px;
+ }
+ 80% {
+ opacity: .25;
+ }
+ 60% {
+ opacity: .10;
+ color: red;
+ }
+ 40% {
+ opacity: .5;
+ }
+ 20% {
+ opacity: .30;
+ }
+ from {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
/*# sourceMappingURL=../maps/styles/auth-a200a050c1.css.map */
\ No newline at end of file