blob: 6d80ec6223f2b60b0f3446c51e4f97f9e2470308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
From bd5e25644e5b12c354b8c5832ecc68e8ff1299da Mon Sep 17 00:00:00 2001
From: m-bene <hub@bene.priv.at>
Date: Wed, 9 Apr 2014 20:19:23 +0200
Subject: [PATCH] same dvr controlls in event as in monitor
---
web/skins/flat/views/css/event.css | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/web/skins/flat/views/css/event.css b/web/skins/flat/views/css/event.css
index 995a06c..17c4f70 100644
--- a/web/skins/flat/views/css/event.css
+++ b/web/skins/flat/views/css/event.css
@@ -88,10 +88,10 @@
}
#dvrControls input {
- height: 20px;
- width: 28px;
- padding-bottom: 3px;
+ padding: 10px 10px;
+ width: 50px;
margin: 0 3px;
+ font-weight: 900;
}
#dvrControls input[disabled=disabled] {
@@ -99,15 +99,21 @@
}
#dvrControls input.active {
- border: 1px solid blue;
+ border: 0;
+ background-color: #2ecc71;
+ color: #fff;
}
#dvrControls input.inactive {
- border: 1px solid green;
+ border: 0;
+ background-color: #e67e22;
+ color: #fff;
}
#dvrControls input.unavail {
- border: 1px solid red;
+ background-color: #ccc;
+ border: 0;
+ cursor: default;
}
#replayStatus {
--
1.9.3
|