Skip to content

Commit 1c98f39

Browse files
committed
Modify build-deploy-zodiac.yml to trigger deployment by merging PR to staging branch
1 parent 9175bab commit 1c98f39

File tree

4 files changed

+48
-13
lines changed

4 files changed

+48
-13
lines changed

.github/workflows/build-deploy-zodiac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- dev-fan
88
- dev_mario
99
- dev_fang
10+
- staging
1011

1112
jobs:
1213
deploy:

src/components/NodesFilter/FilterMenu.tsx

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,30 +84,38 @@ const FilterMenu: React.FC<FilterMenuProps> = ({
8484
transition: "transform 0.3s ease, opacity 0.3s ease",
8585
transformOrigin: "top right",
8686
"& .MuiPaper-root": {
87-
backgroundColor: Colors.lightGray, // Override Paper's default background
88-
// boxShadow: `0px 0px 15px ${Colors.lightGray}`,
87+
// backgroundColor: "rgba(40, 44, 86, 0.1)", // Override Paper's default background
88+
backgroundColor: Colors.lightGray,
89+
// boxShadow: `0px 0px 5px ${Colors.lightGray}`,
90+
backdropFilter: "blur(15px)",
8991
},
9092
}}
9193
>
9294
{/* unified panel */}
9395
<Box
9496
sx={{
95-
backgroundColor: Colors.lightGray,
97+
// backgroundColor: Colors.darkPurple,
98+
// backdropFilter: "blur(15px)",
9699
minWidth: 300,
97100
padding: "10px",
98101
}}
99102
>
100103
<Typography
101104
sx={{
102-
fontSize: "large",
105+
fontSize: "x-large",
103106
fontWeight: "bold",
104-
color: Colors.darkPurple,
107+
color: Colors.orange,
105108
}}
106109
>
107110
Databases Filter
108111
</Typography>
109112

110-
<Divider sx={{ marginY: 2 }} />
113+
<Divider
114+
sx={{
115+
marginY: 2,
116+
// borderColor: Colors.darkPurple,
117+
}}
118+
/>
111119

112120
{/* Keyword Filter */}
113121
<Box
@@ -119,7 +127,7 @@ const FilterMenu: React.FC<FilterMenuProps> = ({
119127
>
120128
<Typography
121129
variant="subtitle1"
122-
sx={{ color: Colors.darkOrange, fontWeight: "bold" }}
130+
sx={{ color: Colors.darkGreen, fontWeight: "bold" }}
123131
>
124132
Filter by Keyword
125133
</Typography>
@@ -129,7 +137,12 @@ const FilterMenu: React.FC<FilterMenuProps> = ({
129137
/>
130138
</Box>
131139

132-
<Divider sx={{ marginY: 2 }} />
140+
<Divider
141+
sx={{
142+
marginY: 2,
143+
// borderColor: Colors.lightGray
144+
}}
145+
/>
133146

134147
{/* Modalities Filter */}
135148
<Box
@@ -141,7 +154,7 @@ const FilterMenu: React.FC<FilterMenuProps> = ({
141154
>
142155
<Typography
143156
variant="subtitle1"
144-
sx={{ color: Colors.darkOrange, fontWeight: "bold" }}
157+
sx={{ color: Colors.darkGreen, fontWeight: "bold" }}
145158
>
146159
Filter by Modalities
147160
</Typography>

src/components/NodesFilter/ModalitiesFilter.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,21 @@ const ModalitiesFilter: React.FC<ModalitiesFilterProps> = ({
4848
// key={modality}
4949
control={
5050
<Checkbox
51-
sx={{ color: Colors.primary.dark }}
51+
sx={
52+
{
53+
// color: Colors.lightGray,
54+
// "&.Mui-checked": {
55+
// color: "black", // Change checkmark color
56+
// },
57+
// "&.Mui-checked.MuiCheckbox-root": {
58+
// backgroundColor: "white", // Ensures white background when checked
59+
// borderRadius: "3px",
60+
// },
61+
// "&.MuiCheckbox-root:hover": {
62+
// backgroundColor: "white",
63+
// },
64+
}
65+
}
5266
checked={selectedModalities.includes(modality)}
5367
onChange={() => handleModalityChange(modality)}
5468
/>

src/pages/Home.tsx

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,22 @@ const Home: React.FC = () => {
143143
position: "absolute",
144144
top: "6%",
145145
left: "1%",
146-
backgroundColor: "rgba(97, 109, 243, 0.1)",
146+
backgroundColor: "rgba(97, 109, 243, 0.4)",
147+
// backgroundColor: "rgba(160, 165, 194, 0.4)",
148+
// backgroundColor: Colors.primary.dark,
149+
147150
backdropFilter: "blur(10px)",
148-
boxShadow: `0px 0px 5px ${Colors.lightYellow}`,
151+
// boxShadow: `2px 2px 5px ${Colors.lightGray}`,
149152
padding: "1.5rem",
150153
borderRadius: "8px",
151154
}}
152155
>
153156
{/* Header Section */}
154-
<Typography variant="h3" gutterBottom sx={{ color: Colors.white }}>
157+
<Typography
158+
variant="h3"
159+
gutterBottom
160+
sx={{ color: Colors.white, fontWeight: "medium" }}
161+
>
155162
Discover NeuroJSON.io
156163
</Typography>
157164
<Typography variant="body1" sx={{ color: Colors.white }}>

0 commit comments

Comments
 (0)