diff options
-rwxr-xr-x | html/assets/style.css | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/html/assets/style.css b/html/assets/style.css index d709e24..f9db583 100755 --- a/html/assets/style.css +++ b/html/assets/style.css @@ -555,6 +555,9 @@ input[type="button"].btn-block { .zebra tr:last-child {
border-right: 1px solid #1e1e1e;
}
+.zebra tr[href] {
+ cursor: pointer;
+}
.zebra td {
font-family: GothamLight, Verdana, Arial, Helvetica;
font-size: 10pt;
@@ -565,7 +568,6 @@ input[type="button"].btn-block { empty-cells: show;
/* For Firefox to show empty cells properly */
border-collapse: separate;
- cursor: pointer;
}
.zebra tbody tr:nth-child(odd) {
background: rgb(103, 103, 103);
@@ -1087,8 +1089,10 @@ a.pages:hover { /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#2069a1, #194c74);
/* For Opera 11.1 to 12.0 */
- background: -moz-linear-gradient(#2069a1, #194c74);
- /* For Firefox 3.6 to 15 */
+ background: -moz-linear-gradient(
+ #2069a1,
+ #194c74
+ ); /* For Firefox 3.6 to 15 */
background: linear-gradient(#2069a1, #194c74); /* Standard syntax */
}
.redteam,
@@ -1135,10 +1139,8 @@ a.pages:hover { #e0b501
); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#efc100, #e0b501); /* For Opera 11.1 to 12.0 */
- background: -moz-linear-gradient(
- #efc100,
- #e0b501
- ); /* For Firefox 3.6 to 15 */
+ background: -moz-linear-gradient(#efc100, #e0b501);
+ /* For Firefox 3.6 to 15 */
background: linear-gradient(#efc100, #e0b501); /* Standard syntax */
}
.bluebox,
|