Skip to content

Commit 905299b

Browse files
committed
update
1 parent 527cb0c commit 905299b

File tree

9 files changed

+64
-3
lines changed

9 files changed

+64
-3
lines changed

src/app/admin/collate-management/collate-management.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@
88
.full-width {
99
width: 100%;
1010
}
11+
12+
p {
13+
color: var(--app-text-color);
14+
}

src/app/admin/user-management/user-management.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@
88
.full-width {
99
width: 100%;
1010
}
11+
12+
p {
13+
color: var(--app-text-color);
14+
}

src/app/analysis-group/analysis-group.component.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
flex-direction: column;
66
height: calc(100vh - 64px);
77
}
8-
.analysis-main-content{
8+
9+
.analysis-main-content {
910
flex: 1;
1011
}
1112

13+
p {
14+
color: var(--app-text-color);
15+
}
16+

src/app/collate/collate.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
.search-box {
1010
width: 500px;
1111
}
12+
13+
p {
14+
color: var(--app-text-color);
15+
}

src/app/collate/project-card-viewer/project-card-viewer.component.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,12 @@
1919
display: flex;
2020
align-items: center;
2121
gap: 4px;
22+
23+
span {
24+
color: var(--app-text-color);
25+
}
26+
}
27+
28+
p {
29+
color: var(--app-text-secondary);
2230
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
p {
2+
color: var(--app-text-secondary);
3+
}

src/app/project/project.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@
4141
height: calc(100vh - 64px * 2 - 20px);
4242
overflow: auto;
4343
}
44+
45+
p {
46+
color: var(--app-text-color);
47+
}

src/app/search-session/search-session.component.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
flex-direction: column;
66
height: calc(100vh - 64px);
77
}
8-
.search-session-main-content{
8+
9+
.search-session-main-content {
910
flex: 1;
1011
}
1112

13+
p {
14+
color: var(--app-text-color);
15+
}
16+

src/styles.scss

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ mat-sidenav {
7676
color: var(--app-text-color) !important;
7777
}
7878

79-
p, span, div, li, td, th, label, small {
79+
p {
80+
color: var(--app-text-color);
81+
}
82+
83+
span, div, li, td, th, label, small {
8084
color: inherit;
8185
}
8286

@@ -87,6 +91,26 @@ mat-sidenav {
8791
a:visited {
8892
color: var(--app-tertiary-color);
8993
}
94+
95+
.mat-mdc-card {
96+
color: var(--app-text-color);
97+
98+
p, span {
99+
color: var(--app-text-color);
100+
}
101+
}
102+
103+
.mat-mdc-card-content {
104+
color: var(--app-text-color);
105+
}
106+
107+
.breadcrumb-nav {
108+
color: var(--app-text-color);
109+
}
110+
111+
.mat-mdc-list-item {
112+
color: var(--app-text-color);
113+
}
90114
}
91115

92116
.compact-mode {

0 commit comments

Comments
 (0)