File size: 1,249 Bytes
1acafa4
 
 
 
 
 
 
 
 
 
 
 
 
 
fe90915
 
 
 
 
 
1acafa4
 
 
 
 
 
 
fe90915
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1acafa4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fe90915
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
.log-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #2e2e2e;
  border-top: 2px solid #444;
  color: #f0f0f0;
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: height 0.3s ease;
}

.log-panel.minimized {
  height: 30px; /* Just enough to show the header */
  overflow: hidden;
}

.log-header {
  background-color: #3a3a3a;
  padding: 4px 10px;
  font-weight: bold;
  border-bottom: 1px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-minimize-btn {
  background: none;
  border: none;
  color: #f0f0f0;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 2px;
}

.log-minimize-btn:hover {
  background-color: #4a4a4a;
}

.log-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 8px;
}

.log-entry {
  display: flex;
  margin-bottom: 4px;
  line-height: 1.4;
}

.log-timestamp {
  color: #888;
  margin-right: 10px;
}

.log-level {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
}

.log-info {
  color: #a0a0ff;
}

.log-success {
  color: #73d173;
}

.log-warn {
  color: #f0e68c;
}

.log-error {
  color: #ff7b7b;
}