-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonboarding.tcss
More file actions
99 lines (81 loc) · 1.25 KB
/
onboarding.tcss
File metadata and controls
99 lines (81 loc) · 1.25 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
Screen {
layout: vertical;
}
#masthead {
dock: top;
width: 100%;
height: 3;
content-align: center middle;
text-style: bold;
background: $primary;
color: $text;
}
#main-content {
layout: horizontal;
height: 1fr;
}
#sidebar {
width: 32;
height: 1fr;
border-right: solid $primary;
padding: 1 2;
}
#progress-info {
height: auto;
margin-bottom: 1;
}
#progress-bar {
height: auto;
margin-bottom: 1;
}
#step-list {
height: 1fr;
}
.step-item {
height: 1;
}
.step-item.--completed {
color: $success;
}
.step-item.--running {
text-style: bold;
}
.step-item.--pending {
color: $text-muted;
}
.step-item.--failed {
color: $error;
}
.step-item.--skipped {
color: $text-muted;
text-style: italic;
}
#log-panel {
width: 1fr;
height: 1fr;
border: solid $primary;
padding: 0 1;
}
#prompt-bar {
dock: bottom;
height: auto;
min-height: 3;
display: none;
padding: 1 2;
background: $surface;
border-top: solid $accent;
}
#prompt-bar.--visible {
display: block;
}
#prompt-bar Horizontal {
height: auto;
align: left middle;
}
#prompt-text {
width: 1fr;
content-align: left middle;
}
#prompt-input {
width: 16;
}