summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/style.css
diff options
context:
space:
mode:
authorJannik Schönartz2017-03-17 06:10:28 +0100
committerJannik Schönartz2017-03-17 06:10:28 +0100
commitd2d52eaa1ed8ac2007c1f710cee74823f080de6d (patch)
tree1dec30739e49d55b54be6e1126eaa12e8ec12985 /modules-available/locationinfo/style.css
parentLocationinfo: Reformat code. (diff)
downloadslx-admin-d2d52eaa1ed8ac2007c1f710cee74823f080de6d.tar.gz
slx-admin-d2d52eaa1ed8ac2007c1f710cee74823f080de6d.tar.xz
slx-admin-d2d52eaa1ed8ac2007c1f710cee74823f080de6d.zip
Rework of the Server List. Many Bugfixes (see Mail).
Diffstat (limited to 'modules-available/locationinfo/style.css')
-rw-r--r--modules-available/locationinfo/style.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules-available/locationinfo/style.css b/modules-available/locationinfo/style.css
index c0b10cd9..b152c3b3 100644
--- a/modules-available/locationinfo/style.css
+++ b/modules-available/locationinfo/style.css
@@ -1,3 +1,18 @@
.tablerow:hover {
background-color: #F2F2F2;
}
+
+.glyphicon-refresh-animate {
+ -animation: spin .7s infinite linear;
+ -webkit-animation: spin2 .7s infinite linear;
+}
+
+@-webkit-keyframes spin2 {
+ from { -webkit-transform: rotate(0deg);}
+ to { -webkit-transform: rotate(360deg);}
+}
+
+@keyframes spin {
+ from { transform: scale(1) rotate(0deg);}
+ to { transform: scale(1) rotate(360deg);}
+}