-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathbase.uss
More file actions
77 lines (61 loc) · 1.16 KB
/
base.uss
File metadata and controls
77 lines (61 loc) · 1.16 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
/* base.uss
* Base reset and common styles for JEngine Editor UI
*/
/* Base panel styling */
.j-panel-base {
background-color: var(--j-bg-base);
color: var(--j-text-primary);
padding: var(--j-spacing-lg);
}
/* Text styles */
.j-text-primary {
color: var(--j-text-primary);
}
.j-text-secondary {
color: var(--j-text-secondary);
}
.j-text-muted {
color: var(--j-text-muted);
}
.j-text-header {
color: var(--j-text-header);
}
/* Font sizes */
.j-text-xs {
font-size: var(--j-font-size-xs);
}
.j-text-sm {
font-size: var(--j-font-size-sm);
}
.j-text-base {
font-size: var(--j-font-size-base);
}
.j-text-md {
font-size: var(--j-font-size-md);
}
.j-text-lg {
font-size: var(--j-font-size-lg);
}
.j-text-xl {
font-size: var(--j-font-size-xl);
}
.j-text-title {
font-size: var(--j-font-size-title);
}
/* Text wrapping */
.j-text-wrap {
white-space: normal;
-unity-text-overflow-position: end;
}
/* Scrollable container */
.j-scroll-view {
flex-grow: 1;
flex-shrink: 1;
}
.j-scroll-view > #unity-content-container {
padding: var(--j-spacing-md);
}
/* Hidden utility */
.j-hidden {
display: none;
}