1
1
// https://github.com/EnCiv/civil-pursuit/issues/52
2
-
3
2
// https://github.com/EnCiv/civil-pursuit/issues/144
3
+ // https://github.com/EnCiv/civil-pursuit/issues/182
4
4
5
5
'use strict'
6
6
@@ -188,15 +188,41 @@ const TopNavBar = props => {
188
188
// Define the styles using the theme object
189
189
const useStylesFromThemeFunction = createUseStyles ( theme => ( {
190
190
colors : props => ( {
191
- color : props . mode === 'dark' ? 'white' : theme . colors . darkModeGray ,
191
+ color : ( ( ) => {
192
+ if ( props . mode === 'dark' || props . mode === 'transparent' ) {
193
+ return 'white'
194
+ } else if ( props . mode === 'light' ) {
195
+ return theme . colors . lightModeColor
196
+ } else {
197
+ return theme . colors . darkModeGray
198
+ }
199
+ } ) ( ) ,
192
200
} ) ,
193
201
topNavBar : props => ( {
194
202
width : '100%' ,
203
+ zIndex : theme . zIndexes . menu , // The navbar appears below other blocks without zIndex
204
+ position : ( ( ) => {
205
+ if ( props . mode === 'transparent' ) {
206
+ return 'absolute'
207
+ } else {
208
+ return ''
209
+ }
210
+ } ) ( ) ,
195
211
display : 'flex' ,
196
212
justifyContent : 'center' ,
197
213
alignItems : 'center' ,
198
214
fontSize : '1rem' ,
199
- backgroundColor : props . mode === 'dark' ? theme . colors . darkModeGray : 'white' ,
215
+ backgroundColor : ( ( ) => {
216
+ if ( props . mode === 'dark' ) {
217
+ return theme . colors . darkModeGray
218
+ } else if ( props . mode === 'light' ) {
219
+ return theme . colors . lightModeColor
220
+ } else if ( props . mode === 'transparent' ) {
221
+ return 'transparent'
222
+ } else {
223
+ return 'white'
224
+ }
225
+ } ) ( ) ,
200
226
} ) ,
201
227
202
228
columnAligner : props => ( {
@@ -238,15 +264,16 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
238
264
gap : '0.4rem' ,
239
265
transform : 'translateX(-50%)' ,
240
266
alignItems : 'baseline' ,
241
- zIndex : theme . zIndexes . menu ,
242
267
[ `@media (max-width: ${ theme . condensedWidthBreakPoint } )` ] : {
243
268
display : 'none' ,
244
269
} ,
245
270
} ,
246
271
mobileMenuContainer : props => ( {
272
+ padding : '1.25rem 1.25rem' ,
247
273
display : 'flex' ,
248
274
width : '80%' ,
249
- background : props . mode === 'dark' ? theme . colors . darkModeGray : theme . colors . encivYellow ,
275
+ background :
276
+ props . mode === 'dark' || props . mode === 'transparent' ? theme . colors . darkModeGray : theme . colors . encivYellow ,
250
277
flexDirection : 'column' ,
251
278
justifyContent : 'left' ,
252
279
[ `@media (min-width: ${ theme . condensedWidthBreakPoint } )` ] : {
@@ -269,7 +296,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
269
296
} ,
270
297
'&:hover' : {
271
298
background : theme . colors . encivYellow ,
272
- color : props . mode === 'dark' ? 'black' : 'white' ,
299
+ color : props . mode === 'dark' || props . mode === 'transparent' ? 'black' : 'white' ,
273
300
} ,
274
301
'&:focus' : {
275
302
outline : `${ theme . focusOutline } ` ,
@@ -283,7 +310,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
283
310
cursor : 'default' ,
284
311
background : 'none' ,
285
312
border : 'none' ,
286
- padding : '0 0 1rem 0 ' ,
313
+ padding : '0.5rem ' ,
287
314
margin : '0' ,
288
315
whiteSpace : 'nowrap' ,
289
316
[ `@media (max-width: ${ theme . condensedWidthBreakPoint } )` ] : {
@@ -322,7 +349,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
322
349
textAlign : 'left' ,
323
350
'&:hover' : {
324
351
background : theme . colors . encivYellow ,
325
- color : props . mode === 'dark' ? 'black' : 'white' ,
352
+ color : props . mode === 'dark' || props . mode === 'transparent' ? 'black' : 'white' ,
326
353
} ,
327
354
'&:focus' : {
328
355
outline : `${ theme . focusOutline } ` ,
@@ -336,13 +363,13 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
336
363
cursor : 'pointer' ,
337
364
background : 'none' ,
338
365
border : 'none' ,
339
- padding : '0 0 1rem 0 ' ,
366
+ padding : '0.5rem ' ,
340
367
margin : '0' ,
341
368
whiteSpace : 'nowrap' ,
342
369
textAlign : 'left' ,
343
370
'&:hover' : {
344
371
background : theme . colors . encivYellow ,
345
- color : props . mode === 'dark' ? 'black' : 'white' ,
372
+ color : props . mode === 'dark' || props . mode === 'transparent' ? 'black' : 'white' ,
346
373
} ,
347
374
'&:focus' : {
348
375
outline : `${ theme . focusOutline } ` ,
@@ -364,7 +391,17 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
364
391
width : '15%' ,
365
392
height : 'auto' ,
366
393
fontSize : '1.5rem' ,
367
- background : props . mode === 'dark' ? theme . colors . darkModeGray : 'white' ,
394
+ background : ( ( ) => {
395
+ if ( props . mode === 'dark' ) {
396
+ return theme . colors . darkModeGray
397
+ } else if ( props . mode === 'light' ) {
398
+ return theme . colors . lightModeColor
399
+ } else if ( props . mode === 'transparent' ) {
400
+ return 'transparent'
401
+ } else {
402
+ return 'white'
403
+ }
404
+ } ) ( ) ,
368
405
border : 'none' ,
369
406
display : 'flex' ,
370
407
justifyContent : 'center' ,
@@ -374,7 +411,7 @@ const useStylesFromThemeFunction = createUseStyles(theme => ({
374
411
} ,
375
412
'&:hover' : {
376
413
background : theme . colors . encivYellow ,
377
- color : props . mode === 'dark' ? 'black' : 'white' ,
414
+ color : props . mode === 'dark' || props . mode === 'transparent' ? 'black' : 'white' ,
378
415
} ,
379
416
} ) ,
380
417
menuList : {
0 commit comments