Make statistics not selectable

This commit is contained in:
DL6ER
2017-01-12 17:15:13 +01:00
parent c98399d6b1
commit 8ff6c77ad4
2 changed files with 10 additions and 0 deletions

View File

@@ -150,6 +150,7 @@
<link href="style/vendor/AdminLTE.min.css" rel="stylesheet" type="text/css" />
<link href="style/vendor/skin-blue.min.css" rel="stylesheet" type="text/css" />
<link href="style/pi-hole.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" sizes="160x160" href="img/logo.svg" />
<style type="text/css">
.glow { text-shadow: 0px 0px 5px #fff; }

9
style/pi-hole.css Normal file
View File

@@ -0,0 +1,9 @@
.small-box {
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
/* Rules below not implemented in browsers yet */
-o-user-select: none;
user-select: none;
}