-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathmatrix.component.css
More file actions
141 lines (120 loc) · 2.18 KB
/
matrix.component.css
File metadata and controls
141 lines (120 loc) · 2.18 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
.content {
width: 100%;
}
.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: 500;
}
.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;
}
.mat-cell .dim-icon {
display: flex;
align-items: center;
gap: 8px;
}
.mat-cell .dim-icon mat-icon {
font-size: 45px;
width: 45px;
height: 45px;
}
.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;
cursor: pointer;
}
.reset-button:hover {
transform: scale(1.02);
}
.reset-button:active {
transform: scale(0.98);
}
.mat-chip {
cursor: pointer;
}
.mat-mdc-row .mat-mdc-cell {
border-bottom: 1px solid transparent;
border-top: 1px solid transparent;
cursor: pointer;
}
.mat-mdc-row:hover .mat-mdc-cell {
border-color: currentColor;
}
.mat-mdc-header-cell {
font-weight: bold;
font-size: medium;
}
.mat-table-container {
overflow-x: auto;
}
/* No data message styling */
.mat-no-data-row {
height: 100px;
}
.mat-no-data-row td {
text-align: center;
font-size: 16px;
color: rgba(0, 0, 0, 0.54);
padding: 24px;
}