-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
134 lines (112 loc) · 2.45 KB
/
stylesheet.css
File metadata and controls
134 lines (112 loc) · 2.45 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.panel-button {
transition: all 0.25s ease;
border-radius: 99px;
margin: 3px 4px;
}
/* Active state: Dark grey capsule background */
.matrix-pill-active {
background-color: rgba(255, 255, 255, 0.15); /* Subtle translucent white/grey */
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
/* Hover effect */
.matrix-pill-active:hover {
background-color: rgba(255, 255, 255, 0.25);
}
/* Highlight remains next to the name in the menu */
.popup-menu-item b {
font-weight: bold;
}
.popup-menu-icon {
margin-right: 8px;
padding: 2px;
}
.matrix-action-button {
padding: 3px;
border-radius: 8px;
margin-left: 4px;
min-width: 24px;
height: 24px;
transition: background-color 0.2s ease;
}
.matrix-action-button:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.matrix-action-button:active {
background-color: rgba(255, 255, 255, 0.25);
}
.matrix-action-box-item {
background-color: rgba(255, 255, 255, 0.08);
margin: 2px 8px 6px 8px;
border-radius: 12px;
padding: 0px;
}
.matrix-action-row {
padding: 4px;
spacing: 4px;
}
.matrix-action-box-button {
padding: 6px 12px;
border-radius: 6px;
font-size: 0.9em;
font-weight: bold;
background-color: rgba(255, 255, 255, 0.05);
}
.matrix-action-box-button:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.matrix-qr-image {
margin: 10px 0;
border-radius: 8px;
background-color: white;
padding: 10px;
}
.matrix-qr-id-row {
spacing: 8px;
margin-bottom: 12px;
}
.matrix-qr-id-label {
font-size: 0.85em;
font-weight: bold;
color: #ccc;
}
.matrix-qr-copy-button {
padding: 2px 6px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
}
.matrix-qr-copy-button:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.matrix-room-avatar {
border-radius: 99px;
background-color: rgba(255, 255, 255, 0.1);
width: 24px;
height: 24px;
}
.matrix-room-avatar-default {
border-radius: 99px;
color: #ccc;
background-color: rgba(255, 255, 255, 0.05);
width: 24px;
height: 24px;
}
.matrix-room-avatar-container {
margin-right: 4px;
width: 24px;
height: 24px;
border-radius: 99px;
overflow: hidden;
}
.matrix-avatar-spinner {
width: 16px;
height: 16px;
}
.matrix-icon-container {
margin-right: 8px;
spacing: 2px;
}
.matrix-lock-icon {
margin-right: 4px;
color: #ccc;
font-weight: bold;
}