PluginProbe
DecaLog / 4.4.0
DecaLog v4.4.0
3.0.2 3.1.0 3.10.0 3.2.0 3.3.0 3.4.0 3.4.1 3.5.0 3.5.1 3.6.0 3.6.1 3.6.2 3.6.3 3.7.0 3.7.1 3.8.0 3.9.0 3.9.1 4.0.0 4.1.0 4.2.0 4.3.0 4.3.1 4.4.0 4.5.0 All 75 releases
decalog / admin / css / livelog.css

livelog.css in DecaLog 4.4.0, at admin/css/livelog.css

104 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .decalog-pilot-toolbar {
2 position: relative;
3 padding: 0 10px;
4 border: 1px solid #ccd0d4;
5 margin: 12px 0;
6 height: auto;
7 }
8
9 .decalog-logger-view {
10 background-color: #23282d;
11 width: 100%;
12 height: 60vh;
13 float: right;
14 border-radius: 4px;
15 }
16
17 #decalog-logger-lines {
18 padding: 2px 14px;
19 overflow: scroll;
20 height: 58vh;
21 }
22
23 .decalog-logger-line {
24 display: block;
25 font-family: monospace;
26 font-size: 12px;
27 line-height: 0.9em;
28 }
29
30 .decalog-logger-line-init {
31 color:#999999;
32 }
33
34 .decalog-logger-line-info {
35 color:#4444AA;
36 }
37
38 .decalog-logger-line-notice {
39 color:#9999FF;
40 }
41
42 .decalog-logger-line-warning {
43 color:#FFAB10;
44 }
45
46 .decalog-logger-line-error {
47 color:#FB7B00;
48 }
49
50 .decalog-logger-line-critical {
51 color:#FF0000;
52 }
53
54 .decalog-logger-line-alert {
55 color:#DD0000;
56 font-weight: bold;
57 }
58
59 .decalog-logger-line-emergency {
60 color:#AA0000;
61 font-weight: bold;
62 }
63
64 .decalog-control{
65 border-radius: 4px;
66 padding: 4px;
67 }
68
69 .decalog-control-inactive{
70 background-color: #f1f1f1;
71 color: #AAAAAA;
72 cursor: default;
73 }
74
75 .decalog-control-active{
76 background-color: #f1f1f1;
77 color: #0073aa;
78 cursor: pointer;
79 }
80
81 .decalog-control-active:hover{
82 background-color: #0073aa;
83 color: #FFFFFF;
84 cursor: pointer;
85 }
86
87 .decalog-control-hint {
88 font-size: 12px;
89 line-height: 2.4em;
90 font-family: sans-serif;
91 color: #808080;
92 text-align: right;
93 float: right;
94 margin-top: 12px;
95 margin-right: 12px;
96 /*animation: blinker 1s linear infinite;*/
97 }
98
99 @keyframes blinker {
100 50% {
101 opacity: 0.2;
102 }
103 }
104