-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (93 loc) · 1.87 KB
/
Copy pathstyles.css
File metadata and controls
107 lines (93 loc) · 1.87 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.telegram-sidebar-container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
overflow: hidden;
padding: 0;
margin: 0;
}
.telegram-sidebar-tab-bar {
display: flex;
flex-direction: row;
gap: 2px;
padding: 4px 4px 0;
background: var(--background-secondary);
border-bottom: 1px solid var(--background-modifier-border);
overflow-x: auto;
flex-shrink: 0;
}
.telegram-sidebar-tab-bar-hidden {
display: none;
}
.telegram-sidebar-tab-btn {
cursor: pointer;
padding: 4px 12px;
border: none;
border-radius: 4px 4px 0 0;
background: transparent;
color: var(--text-muted);
font-size: 12px;
white-space: nowrap;
transition: background 0.15s, color 0.15s;
}
.telegram-sidebar-tab-btn:hover {
background: var(--background-modifier-hover);
color: var(--text-normal);
}
.telegram-sidebar-tab-btn-active {
background: var(--background-primary);
color: var(--text-normal);
font-weight: 600;
}
.telegram-sidebar-webview-container {
flex: 1;
position: relative;
overflow: hidden;
}
.telegram-sidebar-webview {
width: 100%;
height: 100%;
border: none;
position: absolute;
top: 0;
left: 0;
}
.telegram-sidebar-webview-active {
z-index: 1;
visibility: visible;
}
.telegram-sidebar-webview-hidden {
z-index: 0;
visibility: hidden;
}
.telegram-sidebar-error {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 20px;
text-align: center;
color: var(--text-muted);
}
.telegram-sidebar-error h3 {
margin-bottom: 8px;
color: var(--text-normal);
}
.telegram-sidebar-error p {
margin-bottom: 12px;
font-size: 13px;
}
.telegram-sidebar-error button {
cursor: pointer;
padding: 6px 16px;
border-radius: 4px;
background: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
font-size: 13px;
}
.telegram-sidebar-error button:hover {
background: var(--interactive-accent-hover);
}