-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin-view-edit.component.scss
More file actions
111 lines (92 loc) · 1.65 KB
/
admin-view-edit.component.scss
File metadata and controls
111 lines (92 loc) · 1.65 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
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright 2021 Carnegie Mellon University. All Rights Reserved.
// Released under a MIT (SEI)-style license. See LICENSE.md in the project root for license information.
.view-container {
display: inline-block;
flex-direction: column;
min-width: 900px;
margin-top: 40px;
width: 900px;
}
.title {
margin-top: 10px;
}
.add-margin {
margin-top: 8px;
margin-bottom: 8px;
}
.bottom-button {
margin-bottom: 10px;
margin-top: 10px;
}
.left-icon {
width: 45px;
font-size: 75%;
padding: 0.5em;
}
.delete-button {
margin-top: 10px;
}
.top-button {
margin-bottom: 10px;
}
#teamSelect {
margin-right: 25px;
width: 300px;
}
#viewFiles {
display: flex;
flex-direction: row;
justify-content: right;
align-items: center;
}
#viewFiles > mat-list-item {
padding-top: 20px;
}
#chooseBtn {
width: 175px;
height: 65px;
}
.file_buttons {
white-space: nowrap;
}
.file_buttons > button {
display: inline-block;
white-space: normal;
}
.view-info-container {
margin-left: 20%;
}
.staged-files-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.staged-file-item {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 0;
.file-name {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.default-badge {
display: inline-block;
padding: 2px 8px;
margin-left: 8px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
border-radius: 4px;
background-color: var(--mat-sys-primary-container);
color: var(--mat-sys-on-primary-container);
}
.team-warning {
color: var(--mat-sys-error);
font-size: 12px;
margin-top: 4px;
font-weight: 500;
}