-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViews.css
More file actions
73 lines (60 loc) · 1.04 KB
/
Views.css
File metadata and controls
73 lines (60 loc) · 1.04 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
.Views {
display: grid;
height: 100%;
grid-template-columns: auto;
grid-template-rows: auto minmax(0, 1fr);
grid-template-areas:
"tabs"
"content";
}
.ViewsTabs {
grid-area: tabs;
}
.ViewsContent {
position: relative;
grid-area: content;
}
.ViewsContent > div {
position: absolute;
top: var(--leading);
bottom: 0;
left: 0;
right: 0;
}
.Views .view-tool-trigger button {
min-height: 26px;
min-width: 26px;
color: var(--text-color-lighter) !important;
outline-offset: -1px;
}
.ViewsTabs > .PointedTabs .bp3-tab-list {
border-bottom: none;
}
.ViewsTabs {
border-bottom: 1px solid var(--tab-border-color);
}
.view-tool-trigger svg {
width: 14px;
}
.ViewVisible {
visibility: visible;
}
.ViewVisible.ViewOverflowAuto {
overflow: auto;
}
.ViewVisible.ViewOverflowVisible {
overflow: visible;
}
.ViewVisible.ViewOverflowHidden {
overflow: hidden;
}
.ViewHidden {
visibility: hidden;
overflow: hidden;
}
.ViewHidden .ViewVisible {
visibility: hidden !important;
}
.ViewError h1 {
font-size: 1rem;
}