forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatrix.component.css
More file actions
85 lines (76 loc) · 1.42 KB
/
Copy pathmatrix.component.css
File metadata and controls
85 lines (76 loc) · 1.42 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
.content {
width: 100%;
/*background-color: gainsboro;*/
}
.mat-form-field {
margin: 20px;
margin-bottom: 0;
width: 90%;
}
.matrix-table {
margin: 20px;
}
.mat-cell {
padding: 20px;
/* padding-bottom: 0; */
width: 12.5%;
max-width: 17%;
word-wrap: break-word;
}
.mat-header-cell {
padding: 10px;
width: 12.5%;
max-width: 17%;
word-wrap: break-word;
font-size: 16px;
font-weight: bold;
}
.mat-cell ul.activity-list {
list-style-type: disclosure-closed;
}
.mat-cell-activity {
margin-bottom: 1em;
position: relative;
}
.mat-cell-activity a.activity-title {
text-decoration: unset;
margin: 0;
}
.mat-cell-activity a::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.mat-cell-activity a.activity-title:link {
color: inherit;
}
.table-small-width {
width: 5%;
max-width: 9%;
}
.tags-activity {
font-weight: 800;
font-style: italic;
font-size: 12px;
}
/*tag activity - light */
:host-context(body.light-theme) .tags-activity,
:host-context(body.light-theme) .tags-activity span {
color: rgb(0, 113, 151);
}
/*tag activity - dark */
:host-context(body.dark-theme) .tags-activity,
:host-context(body.dark-theme) .tags-activity span {
color: #397af4;
}
.reset-button {
background-color: #66bb6a;
display: block;
margin: 0 20px;
padding: 7px 12px;
border-radius: 16px;
font: 500 14px / 20px Roboto, 'Helvetica Neue', sans-serif;
}