@@ -24,6 +24,8 @@ class StylingComponent(
24
24
minRole,
25
25
26
26
lightGroup,
27
+ lightFooterTransparent,
28
+ lightNavbarTransparent,
27
29
lightBackgroundColor,
28
30
lightContainerColor,
29
31
lightTextColor,
@@ -36,6 +38,8 @@ class StylingComponent(
36
38
darkModeEnabled,
37
39
deviceTheme,
38
40
forceDarkMode,
41
+ darkFooterTransparent,
42
+ darkNavbarTransparent,
39
43
darkBackgroundColor,
40
44
darkContainerColor,
41
45
darkTextColor,
@@ -68,6 +72,16 @@ class StylingComponent(
68
72
description = " Az oldal világos stílusának színei, háttérképek"
69
73
)
70
74
75
+ val lightFooterTransparent = SettingProxy (componentSettingService, component,
76
+ " lightFooterTransparent" , " false" , type = SettingType .BOOLEAN ,
77
+ fieldName = " Footer áttetsző" , description = " Ha be van kapcsolva, a navbar áttetsző"
78
+ )
79
+
80
+ val lightNavbarTransparent = SettingProxy (componentSettingService, component,
81
+ " lightNavbarTransparent" , " false" , type = SettingType .BOOLEAN ,
82
+ fieldName = " Navbar áttetsző" , description = " Ha be van kapcsolva, a navbar áttetsző"
83
+ )
84
+
71
85
val lightBackgroundColor = SettingProxy (componentSettingService, component,
72
86
" lightBackgroundColor" , " #FFFFFF" , type = SettingType .COLOR ,
73
87
fieldName = " Háttérszín" , description = " Az oldal hátterének a színe, ha nincs kép megadva, akkor ez látszik"
@@ -127,6 +141,16 @@ class StylingComponent(
127
141
fieldName = " Csak a sötét téma érhető el" , description = " Ha be van kapcsolva, akkor csak a sötét téma használható"
128
142
)
129
143
144
+ val darkFooterTransparent = SettingProxy (componentSettingService, component,
145
+ " darkFooterTransparent" , " false" , type = SettingType .BOOLEAN ,
146
+ fieldName = " Footer áttetsző" , description = " Ha be van kapcsolva, a navbar áttetsző"
147
+ )
148
+
149
+ val darkNavbarTransparent = SettingProxy (componentSettingService, component,
150
+ " darkNavbarTransparent" , " false" , type = SettingType .BOOLEAN ,
151
+ fieldName = " Navbar áttetsző" , description = " Ha be van kapcsolva, a navbar áttetsző"
152
+ )
153
+
130
154
val darkBackgroundColor = SettingProxy (componentSettingService, component,
131
155
" darkBackgroundColor" , " #FFFFFF" , type = SettingType .COLOR ,
132
156
fieldName = " Háttérszín" , description = " Az oldal hátterének a színe, ha nincs kép megadva, akkor ez látszik"
0 commit comments