TabView.uss
924 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
.unity-tab-view {
flex-grow: 1;
}
.unity-tab-view__content-container {
flex: 1 1 auto;
}
.unity-tab-view__toolbar {
flex-direction: row;
border-bottom-width: 1px;
}
.dark .unity-tab-view__toolbar {
border-color: var(--divider-dark);
}
.light .unity-tab-view__toolbar {
border-color: var(--divider-light);
}
.unity-text-button.unity-tab-view__tab-header {
background-color: rgba(0, 0, 0, 0);
border-color: rgba(0, 0, 0, 0);
border-width: 0;
border-bottom-width: 2px;
padding: 3px 0 2px;
margin-right: var(--standard-margin);
}
.unity-text-button.unity-tab-view__tab-header.active {
border-color: #357CC0;
background-color: var(--no-color);
}
.dark .unity-text-button.unity-tab-view__tab-header.active:active {
background-color: var(--no-color);
}
.light .unity-text-button.unity-tab-view__tab-header.active:active {
background-color: var(--no-color);
}