-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
44 lines (37 loc) · 1006 Bytes
/
Copy pathstylesheet.css
File metadata and controls
44 lines (37 loc) · 1006 Bytes
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
.any-widget-container {
background-color: rgba(30, 30, 30, 0.8);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.any-widget-container:hover {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
border-color: rgba(255, 255, 255, 0.25);
}
.any-widget-label {
color: #ffffff;
font-size: 1.1em;
font-weight: bold;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
/* Panel Menu Icons */
.popup-menu-icon {
icon-size: 1.09em;
}
.popup-menu-item .popup-menu-icon {
margin-left: 6px;
margin-right: 6px;
}
/* V8 Resize Handle - Minimal */
.any-widget-container .any-widget-resize-handle {
/* Opacity now handled by JS for better reliability */
transition-duration: 200ms;
}
/* Active resizing state - No background */
.any-widget-resize-handle.active {
background-color: transparent !important;
opacity: 1 !important;
}
.any-widget-resize-handle:hover {
background-color: transparent;
}