summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/style.css
diff options
context:
space:
mode:
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);}
+}