ContentTabController.php
2 years ago
SectionTitleSettingsStyle.php
2 years ago
SettingsTabController.php
2 years ago
StyleTabController.php
2 years ago
StyleTabController.php
2737 lines
| 1 | <?php |
| 2 | |
| 3 | namespace RT\ThePostGrid\Controllers\Blocks\BlockController; |
| 4 | |
| 5 | class StyleTabController { |
| 6 | /** |
| 7 | * @return mixed|void |
| 8 | */ |
| 9 | public static function get_controller( $prefix = '' ) { |
| 10 | $style_attribute = [ |
| 11 | //Section Title Style |
| 12 | 'section_title_alignment' => [ |
| 13 | 'type' => 'string', |
| 14 | 'default' => '', |
| 15 | ], |
| 16 | |
| 17 | "section_title_margin" => [ |
| 18 | "type" => "object", |
| 19 | "default" => [ |
| 20 | 'lg' => [ |
| 21 | "isLinked" => false, |
| 22 | "unit" => "px", |
| 23 | "value" => '' |
| 24 | ] |
| 25 | ], |
| 26 | 'style' => [ |
| 27 | (object) [ |
| 28 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper{{section_title_margin}}' |
| 29 | ] |
| 30 | ] |
| 31 | ], |
| 32 | |
| 33 | "section_title_radius" => [ |
| 34 | "type" => "object", |
| 35 | "default" => [ |
| 36 | 'lg' => [ |
| 37 | "isLinked" => true, |
| 38 | "unit" => "px", |
| 39 | "value" => '' |
| 40 | ] |
| 41 | ], |
| 42 | 'style' => [ |
| 43 | (object) [ |
| 44 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .tpg-widget-heading{{section_title_radius}}' |
| 45 | ] |
| 46 | ] |
| 47 | ], |
| 48 | |
| 49 | 'section_title_typography' => [ |
| 50 | 'type' => 'object', |
| 51 | 'default' => (object) [ |
| 52 | 'openTypography' => 1, |
| 53 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 54 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 55 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 56 | 'transform' => '', |
| 57 | 'weight' => '' |
| 58 | ], |
| 59 | 'style' => [ |
| 60 | (object) [ 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .tpg-widget-heading' ] |
| 61 | ], |
| 62 | ], |
| 63 | |
| 64 | 'section_title_color' => [ |
| 65 | 'type' => 'string', |
| 66 | 'default' => '', |
| 67 | 'style' => [ |
| 68 | (object) [ |
| 69 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .tpg-widget-heading {color: {{section_title_color}}; }' |
| 70 | ] |
| 71 | ] |
| 72 | ], |
| 73 | |
| 74 | |
| 75 | 'section_title_bg_color' => [ |
| 76 | 'type' => 'string', |
| 77 | 'default' => '', |
| 78 | 'style' => [ |
| 79 | (object) [ |
| 80 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading, {{RTTPG}} .tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading {background-color: {{section_title_bg_color}}; } |
| 81 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::after, {{RTTPG}} .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before {border-color: {{section_title_bg_color}} transparent; }' |
| 82 | ] |
| 83 | ] |
| 84 | ], |
| 85 | |
| 86 | 'section_title_dot_color' => [ |
| 87 | 'type' => 'string', |
| 88 | 'default' => '', |
| 89 | 'style' => [ |
| 90 | (object) [ |
| 91 | 'selector' => ' |
| 92 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {background-color: {{section_title_dot_color}}} |
| 93 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::before {background-color: {{section_title_dot_color}}}' |
| 94 | ] |
| 95 | ] |
| 96 | ], |
| 97 | |
| 98 | 'section_title_line_color' => [ |
| 99 | 'type' => 'string', |
| 100 | 'default' => '', |
| 101 | 'style' => [ |
| 102 | (object) [ |
| 103 | 'selector' => ' |
| 104 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line {border-color: {{section_title_line_color}} } |
| 105 | {{RTTPG}}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before, {{RTTPG}}.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before {border-bottom-color: {{section_title_line_color}} } |
| 106 | {{RTTPG}}.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,{{RTTPG}}.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,{{RTTPG}}.section-title-style-style2 .tpg-header-wrapper.carousel, {{RTTPG}}.section-title-style-style3 .tpg-header-wrapper.carousel {border-bottom-color: {{section_title_line_color}} } |
| 107 | {{RTTPG}}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected, {{RTTPG}}.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected {color: {{section_title_line_color}} } |
| 108 | {{RTTPG}}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover, {{RTTPG}}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover {color: {{section_title_line_color}} } |
| 109 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::after {background-color: {{section_title_line_color}} } |
| 110 | ' |
| 111 | ] |
| 112 | ] |
| 113 | ], |
| 114 | |
| 115 | 'section_title_line_width' => [ |
| 116 | 'type' => 'string', |
| 117 | 'default' => '', |
| 118 | 'style' => [ |
| 119 | (object) [ |
| 120 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::before {width: {{section_title_line_width}}px } |
| 121 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::after {width: calc(100% - calc({{section_title_line_width}}px + 10px)) } |
| 122 | ' |
| 123 | ] |
| 124 | ] |
| 125 | ], |
| 126 | |
| 127 | 'section_title_line_spacing' => [ |
| 128 | 'type' => 'string', |
| 129 | 'default' => '', |
| 130 | 'style' => [ |
| 131 | (object) [ |
| 132 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::before {bottom: {{section_title_line_spacing}}px; } |
| 133 | {{RTTPG}} .tpg-widget-heading-wrapper.heading-style4::after {bottom: calc({{section_title_line_spacing}}px + 2px) } |
| 134 | ' |
| 135 | ] |
| 136 | ] |
| 137 | ], |
| 138 | |
| 139 | 'external_icon_size' => [ |
| 140 | 'type' => 'number', |
| 141 | 'style' => [ |
| 142 | (object) [ |
| 143 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .external-link { font-size: {{external_icon_size}}px;}' |
| 144 | ], |
| 145 | ] |
| 146 | ], |
| 147 | |
| 148 | 'external_icon_position' => [ |
| 149 | 'type' => 'number', |
| 150 | 'style' => [ |
| 151 | (object) [ |
| 152 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .external-link { top: {{external_icon_position}}px;}' |
| 153 | ], |
| 154 | ] |
| 155 | ], |
| 156 | |
| 157 | 'external_icon_color' => [ |
| 158 | 'type' => 'string', |
| 159 | 'default' => '', |
| 160 | 'style' => [ |
| 161 | (object) [ |
| 162 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .external-link {color: {{external_icon_color}}; }' |
| 163 | ] |
| 164 | ] |
| 165 | ], |
| 166 | |
| 167 | 'external_icon_color_hover' => [ |
| 168 | 'type' => 'string', |
| 169 | 'default' => '', |
| 170 | 'style' => [ |
| 171 | (object) [ |
| 172 | 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .external-link:hover {color: {{external_icon_color_hover}}; }' |
| 173 | ] |
| 174 | ] |
| 175 | ], |
| 176 | |
| 177 | 'cat_tag_description_heading' => [ |
| 178 | 'type' => 'string', |
| 179 | 'default' => '', |
| 180 | ], |
| 181 | |
| 182 | 'taxonomy_des_typography' => [ |
| 183 | 'type' => 'object', |
| 184 | 'default' => (object) [ |
| 185 | 'openTypography' => 1, |
| 186 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 187 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 188 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 189 | 'transform' => '', |
| 190 | 'weight' => '' |
| 191 | ], |
| 192 | 'style' => [ |
| 193 | (object) [ 'selector' => '{{RTTPG}} .tpg-widget-heading-wrapper .tpg-widget-heading' ] |
| 194 | ], |
| 195 | ], |
| 196 | |
| 197 | // Title Style |
| 198 | |
| 199 | "title_spacing" => [ |
| 200 | "type" => "object", |
| 201 | "default" => [ |
| 202 | 'lg' => [ |
| 203 | "isLinked" => false, |
| 204 | "unit" => "px", |
| 205 | "value" => '' |
| 206 | ] |
| 207 | ], |
| 208 | 'style' => [ |
| 209 | (object) [ |
| 210 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .entry-title-wrapper{{title_spacing}}' |
| 211 | ] |
| 212 | ] |
| 213 | ], |
| 214 | |
| 215 | "title_padding" => [ |
| 216 | "type" => "object", |
| 217 | "default" => [ |
| 218 | 'lg' => [ |
| 219 | "isLinked" => true, |
| 220 | "unit" => "px", |
| 221 | "value" => '' |
| 222 | ] |
| 223 | ], |
| 224 | 'style' => [ |
| 225 | (object) [ |
| 226 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{{title_padding}}' |
| 227 | ] |
| 228 | ] |
| 229 | ], |
| 230 | |
| 231 | 'title_typography' => [ |
| 232 | 'type' => 'object', |
| 233 | 'default' => (object) [ |
| 234 | 'openTypography' => 1, |
| 235 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 236 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 237 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 238 | 'transform' => '', |
| 239 | 'weight' => '' |
| 240 | ], |
| 241 | 'style' => [ |
| 242 | (object) [ 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .entry-title-wrapper .entry-title' ] |
| 243 | ], |
| 244 | ], |
| 245 | |
| 246 | 'title_offset_typography' => [ |
| 247 | 'type' => 'object', |
| 248 | 'default' => (object) [ |
| 249 | 'openTypography' => 1, |
| 250 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 251 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 252 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 253 | 'transform' => '', |
| 254 | 'weight' => '' |
| 255 | ], |
| 256 | 'style' => [ |
| 257 | (object) [ 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .offset-left .entry-title-wrapper .entry-title' ] |
| 258 | ], |
| 259 | ], |
| 260 | |
| 261 | 'title_border_visibility' => [ |
| 262 | 'type' => 'string', |
| 263 | 'default' => 'default', |
| 264 | ], |
| 265 | |
| 266 | 'title_box_hover_tab' => [ |
| 267 | 'type' => 'string', |
| 268 | 'default' => 'normal', |
| 269 | ], |
| 270 | |
| 271 | 'title_alignment' => [ |
| 272 | 'type' => 'string', |
| 273 | 'default' => '', |
| 274 | 'style' => [ |
| 275 | (object) [ |
| 276 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .entry-title {text-align: {{title_alignment}}; }' |
| 277 | ] |
| 278 | ] |
| 279 | ], |
| 280 | |
| 281 | 'title_color' => [ |
| 282 | 'type' => 'string', |
| 283 | 'default' => '', |
| 284 | 'style' => [ |
| 285 | (object) [ |
| 286 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .entry-title {color: {{title_color}}; }' |
| 287 | ] |
| 288 | ] |
| 289 | ], |
| 290 | |
| 291 | 'title_bg_color' => [ |
| 292 | 'type' => 'string', |
| 293 | 'default' => '', |
| 294 | 'style' => [ |
| 295 | (object) [ |
| 296 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .entry-title {background-color: {{title_bg_color}}; }' |
| 297 | ] |
| 298 | ] |
| 299 | ], |
| 300 | |
| 301 | 'title_border_color' => [ |
| 302 | 'type' => 'string', |
| 303 | 'default' => '', |
| 304 | 'style' => [ |
| 305 | (object) [ |
| 306 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {background-color: {{title_border_color}}; }' |
| 307 | ] |
| 308 | ] |
| 309 | ], |
| 310 | |
| 311 | 'title_hover_border_color' => [ |
| 312 | 'type' => 'string', |
| 313 | 'default' => '', |
| 314 | 'style' => [ |
| 315 | (object) [ |
| 316 | 'selector' => '{{RTTPG}} .entry-title {--tpg-primary-color: {{title_hover_border_color}}; }' |
| 317 | ] |
| 318 | ] |
| 319 | ], |
| 320 | |
| 321 | 'title_hover_color' => [ |
| 322 | 'type' => 'string', |
| 323 | 'default' => '', |
| 324 | 'style' => [ |
| 325 | (object) [ |
| 326 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder .entry-title:hover, {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder .entry-title a:hover {color: {{title_hover_color}} !important; }' |
| 327 | ] |
| 328 | ] |
| 329 | ], |
| 330 | |
| 331 | 'title_bg_color_hover' => [ |
| 332 | 'type' => 'string', |
| 333 | 'default' => '', |
| 334 | 'style' => [ |
| 335 | (object) [ |
| 336 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .entry-title:hover {background-color: {{title_bg_color_hover}} !important; }' |
| 337 | ] |
| 338 | ] |
| 339 | ], |
| 340 | |
| 341 | 'title_color_box_hover' => [ |
| 342 | 'type' => 'string', |
| 343 | 'default' => '', |
| 344 | 'style' => [ |
| 345 | (object) [ |
| 346 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .entry-title, {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .entry-title a {color: {{title_color_box_hover}}; }' |
| 347 | ] |
| 348 | ] |
| 349 | ], |
| 350 | |
| 351 | 'title_bg_color_box_hover' => [ |
| 352 | 'type' => 'string', |
| 353 | 'default' => '', |
| 354 | 'style' => [ |
| 355 | (object) [ |
| 356 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .entry-title {background-color: {{title_bg_color_box_hover}}; }' |
| 357 | ] |
| 358 | ] |
| 359 | ], |
| 360 | |
| 361 | 'title_border_color_hover' => [ |
| 362 | 'type' => 'string', |
| 363 | 'default' => '', |
| 364 | 'style' => [ |
| 365 | (object) [ |
| 366 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder:hover .entry-title-wrapper .entry-title::before {background-color: {{title_border_color_hover}}; }' |
| 367 | ] |
| 368 | ] |
| 369 | ], |
| 370 | |
| 371 | //Thumbnail Style |
| 372 | |
| 373 | "img_border_radius" => [ |
| 374 | "type" => "object", |
| 375 | "default" => [ |
| 376 | 'lg' => [ |
| 377 | "isLinked" => true, |
| 378 | "unit" => "px", |
| 379 | "value" => '' |
| 380 | ] |
| 381 | ], |
| 382 | 'style' => [ |
| 383 | (object) [ |
| 384 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap, |
| 385 | {{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap img, |
| 386 | {{RTTPG}} .tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper, |
| 387 | {{RTTPG}} .rt-grid-hover-item .grid-hover-content{{img_border_radius}}' |
| 388 | ] |
| 389 | ] |
| 390 | ], |
| 391 | |
| 392 | 'image_width' => [ |
| 393 | 'type' => 'string', |
| 394 | 'default' => '', |
| 395 | 'style' => [ |
| 396 | (object) [ |
| 397 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap img {width:{{image_width}}}' |
| 398 | ] |
| 399 | ] |
| 400 | ], |
| 401 | |
| 402 | 'thumbnail_position' => [ |
| 403 | 'type' => 'string', |
| 404 | 'default' => '', |
| 405 | 'style' => [ |
| 406 | (object) [ |
| 407 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap img {object-position:{{thumbnail_position}};}' |
| 408 | ] |
| 409 | ] |
| 410 | ], |
| 411 | |
| 412 | |
| 413 | 'thumbnail_position_hover' => [ |
| 414 | 'type' => 'string', |
| 415 | 'default' => '', |
| 416 | 'style' => [ |
| 417 | (object) [ |
| 418 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder:hover .tpg-el-image-wrap img {object-position:{{thumbnail_position_hover}};}' |
| 419 | ] |
| 420 | ] |
| 421 | ], |
| 422 | |
| 423 | 'thumbnail_transition_duration' => [ |
| 424 | 'type' => 'number', |
| 425 | 'default' => '', |
| 426 | 'style' => [ |
| 427 | (object) [ |
| 428 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap img {transition-duration:{{thumbnail_transition_duration}}s;}' |
| 429 | ] |
| 430 | ] |
| 431 | ], |
| 432 | |
| 433 | 'thumbnail_opacity' => [ |
| 434 | 'type' => 'number', |
| 435 | 'default' => '', |
| 436 | 'style' => [ |
| 437 | (object) [ |
| 438 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap img {opacity:{{thumbnail_opacity}};}' |
| 439 | ] |
| 440 | ] |
| 441 | ], |
| 442 | |
| 443 | 'thumbnail_opacity_hover' => [ |
| 444 | 'type' => 'number', |
| 445 | 'default' => '', |
| 446 | 'style' => [ |
| 447 | (object) [ |
| 448 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder:hover .tpg-el-image-wrap img {opacity:{{thumbnail_opacity_hover}};}' |
| 449 | ] |
| 450 | ] |
| 451 | ], |
| 452 | |
| 453 | 'author_image_width' => [ |
| 454 | 'type' => 'number', |
| 455 | 'default' => '', |
| 456 | 'style' => [ |
| 457 | (object) [ |
| 458 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .post-meta-tags span img {width:{{author_image_width}}px;height:{{author_image_width}}px;}' |
| 459 | ] |
| 460 | ] |
| 461 | ], |
| 462 | |
| 463 | |
| 464 | "thumbnail_spacing" => [ |
| 465 | "type" => "object", |
| 466 | "default" => [ |
| 467 | 'lg' => [ |
| 468 | "isLinked" => false, |
| 469 | "unit" => "px", |
| 470 | "value" => '' |
| 471 | ] |
| 472 | ], |
| 473 | 'style' => [ |
| 474 | (object) [ |
| 475 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap{{thumbnail_spacing}}' |
| 476 | ] |
| 477 | ] |
| 478 | ], |
| 479 | |
| 480 | "thumbnail_overlay_padding" => [ |
| 481 | "type" => "object", |
| 482 | "default" => [ |
| 483 | 'lg' => [ |
| 484 | "isLinked" => true, |
| 485 | "unit" => "px", |
| 486 | "value" => '' |
| 487 | ] |
| 488 | ], |
| 489 | 'style' => [ |
| 490 | (object) [ |
| 491 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{{thumbnail_overlay_padding}}' |
| 492 | ] |
| 493 | ] |
| 494 | ], |
| 495 | |
| 496 | 'grid_hover_style_tabs' => [ |
| 497 | 'type' => 'string', |
| 498 | 'default' => 'normal', |
| 499 | ], |
| 500 | |
| 501 | "grid_hover_overlay_color" => [ |
| 502 | "type" => "object", |
| 503 | "default" => (object) [ |
| 504 | 'openBGColor' => 0, |
| 505 | 'type' => 'classic', |
| 506 | 'classic' => (object) [ |
| 507 | 'color' => '', |
| 508 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 509 | 'imgProperty' => (object) [ |
| 510 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 511 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 512 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 513 | 'imgSize' => (object) [ 'lg' => '' ], |
| 514 | ] |
| 515 | ], |
| 516 | 'gradient' => '' |
| 517 | ], |
| 518 | 'style' => [ |
| 519 | (object) [ |
| 520 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before, {{RTTPG}} .tpg-el-main-wrapper .tpg-el-image-wrap .overlay' |
| 521 | ] |
| 522 | ] |
| 523 | ], |
| 524 | |
| 525 | 'thumb_lightbox_bg' => [ |
| 526 | 'type' => 'string', |
| 527 | 'default' => '', |
| 528 | 'style' => [ |
| 529 | (object) [ |
| 530 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {background-color: {{thumb_lightbox_bg}}; }' |
| 531 | ] |
| 532 | ] |
| 533 | ], |
| 534 | 'thumb_lightbox_color' => [ |
| 535 | 'type' => 'string', |
| 536 | 'default' => '', |
| 537 | 'style' => [ |
| 538 | (object) [ |
| 539 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {color: {{thumb_lightbox_color}}; }' |
| 540 | ] |
| 541 | ] |
| 542 | ], |
| 543 | |
| 544 | "grid_hover_overlay_color_hover" => [ |
| 545 | "type" => "object", |
| 546 | "default" => (object) [ |
| 547 | 'openBGColor' => 0, |
| 548 | 'type' => 'classic', |
| 549 | 'classic' => (object) [ |
| 550 | 'color' => '', |
| 551 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 552 | 'imgProperty' => (object) [ |
| 553 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 554 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 555 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 556 | 'imgSize' => (object) [ 'lg' => '' ], |
| 557 | ] |
| 558 | ], |
| 559 | 'gradient' => '' |
| 560 | ], |
| 561 | 'style' => [ |
| 562 | (object) [ |
| 563 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after, {{RTTPG}} .tpg-el-main-wrapper .rt-holder:hover .tpg-el-image-wrap .overlay' |
| 564 | ] |
| 565 | ] |
| 566 | ], |
| 567 | |
| 568 | 'thumb_lightbox_bg_hover' => [ |
| 569 | 'type' => 'string', |
| 570 | 'default' => '', |
| 571 | 'style' => [ |
| 572 | (object) [ |
| 573 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {background-color: {{thumb_lightbox_bg_hover}}; }' |
| 574 | ] |
| 575 | ] |
| 576 | ], |
| 577 | 'thumb_lightbox_color_hover' => [ |
| 578 | 'type' => 'string', |
| 579 | 'default' => '', |
| 580 | 'style' => [ |
| 581 | (object) [ |
| 582 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {color: {{thumb_lightbox_color_hover}}; }' |
| 583 | ] |
| 584 | ] |
| 585 | ], |
| 586 | 'grid_hover_overlay_type' => [ |
| 587 | 'type' => 'string', |
| 588 | 'default' => 'always', |
| 589 | ], |
| 590 | 'grid_hover_overlay_height' => [ |
| 591 | 'type' => 'string', |
| 592 | 'default' => 'default', |
| 593 | ], |
| 594 | 'on_hover_overlay' => [ |
| 595 | 'type' => 'string', |
| 596 | 'default' => 'default', |
| 597 | ], |
| 598 | |
| 599 | // Content Style |
| 600 | |
| 601 | 'excerpt_style_tabs' => [ |
| 602 | 'type' => 'string', |
| 603 | 'default' => 'normal', |
| 604 | ], |
| 605 | |
| 606 | 'content_typography' => [ |
| 607 | 'type' => 'object', |
| 608 | 'default' => (object) [ |
| 609 | 'openTypography' => 1, |
| 610 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 611 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 612 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 613 | 'transform' => '', |
| 614 | 'weight' => '' |
| 615 | ], |
| 616 | 'style' => [ |
| 617 | (object) [ 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-excerpt .tpg-excerpt-inner' ] |
| 618 | ], |
| 619 | ], |
| 620 | |
| 621 | "excerpt_spacing" => [ |
| 622 | "type" => "object", |
| 623 | "default" => [ |
| 624 | 'lg' => [ |
| 625 | "isLinked" => false, |
| 626 | "unit" => "px", |
| 627 | "value" => '' |
| 628 | ] |
| 629 | ], |
| 630 | 'style' => [ |
| 631 | (object) [ |
| 632 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-excerpt{{excerpt_spacing}}' |
| 633 | ] |
| 634 | ] |
| 635 | ], |
| 636 | |
| 637 | 'content_alignment' => [ |
| 638 | 'type' => 'object', |
| 639 | 'default' => [], |
| 640 | 'style' => [ |
| 641 | (object) [ |
| 642 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-excerpt .tpg-excerpt-inner, {{RTTPG}} .tpg-el-main-wrapper .tpg-el-excerpt .tpg-excerpt-inner * {text-align: {{content_alignment}}; }' |
| 643 | ] |
| 644 | ] |
| 645 | ], |
| 646 | |
| 647 | 'excerpt_color' => [ |
| 648 | 'type' => 'string', |
| 649 | 'default' => '', |
| 650 | 'style' => [ |
| 651 | (object) [ |
| 652 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-el-excerpt .tpg-excerpt-inner {color: {{excerpt_color}}; }' |
| 653 | ] |
| 654 | ] |
| 655 | ], |
| 656 | |
| 657 | 'excerpt_border' => [ |
| 658 | 'type' => 'string', |
| 659 | 'default' => '', |
| 660 | 'style' => [ |
| 661 | (object) [ |
| 662 | 'selector' => '{{RTTPG}}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta::before {background: {{excerpt_border}}; }' |
| 663 | ] |
| 664 | ] |
| 665 | ], |
| 666 | |
| 667 | 'excerpt_hover_color' => [ |
| 668 | 'type' => 'string', |
| 669 | 'default' => '', |
| 670 | 'style' => [ |
| 671 | (object) [ |
| 672 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-excerpt .tpg-excerpt-inner {color: {{excerpt_hover_color}}; }' |
| 673 | ] |
| 674 | ] |
| 675 | ], |
| 676 | |
| 677 | 'excerpt_border_hover' => [ |
| 678 | 'type' => 'string', |
| 679 | 'default' => '', |
| 680 | 'style' => [ |
| 681 | (object) [ |
| 682 | 'selector' => '{{RTTPG}}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder:hover .rt-el-post-meta::before {color: {{excerpt_border_hover}}; }' |
| 683 | ] |
| 684 | ] |
| 685 | ], |
| 686 | |
| 687 | |
| 688 | // Meta Info Style |
| 689 | |
| 690 | 'post_meta_typography' => [ |
| 691 | 'type' => 'object', |
| 692 | 'default' => (object) [ |
| 693 | 'openTypography' => 1, |
| 694 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 695 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 696 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 697 | 'transform' => '', |
| 698 | 'weight' => '' |
| 699 | ], |
| 700 | 'style' => [ |
| 701 | (object) [ 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-el-post-meta, {{RTTPG}} .tpg-post-holder .tpg-separate-category .categories-links a' ] |
| 702 | ], |
| 703 | ], |
| 704 | |
| 705 | 'postmeta_alignment' => [ |
| 706 | 'type' => 'object', |
| 707 | 'default' => [], |
| 708 | 'style' => [ |
| 709 | (object) [ |
| 710 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-el-post-meta {text-align: {{postmeta_alignment}};} |
| 711 | {{RTTPG}} .rt-tpg-container .rt-el-post-meta {justify-content: {{postmeta_alignment}}; }' |
| 712 | ] |
| 713 | ] |
| 714 | ], |
| 715 | |
| 716 | "meta_wrap_spacing" => [ |
| 717 | "type" => "object", |
| 718 | "default" => [ |
| 719 | 'lg' => [ |
| 720 | "isLinked" => false, |
| 721 | "unit" => "px", |
| 722 | "value" => '' |
| 723 | ] |
| 724 | ], |
| 725 | 'style' => [ |
| 726 | (object) [ |
| 727 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{{meta_wrap_spacing}}' |
| 728 | ] |
| 729 | ] |
| 730 | ], |
| 731 | |
| 732 | "meta_spacing" => [ |
| 733 | "type" => "object", |
| 734 | "default" => [ |
| 735 | 'lg' => [ |
| 736 | "isLinked" => false, |
| 737 | "unit" => "px", |
| 738 | "value" => '' |
| 739 | ] |
| 740 | ], |
| 741 | 'style' => [ |
| 742 | (object) [ |
| 743 | 'selector' => '{{RTTPG}} .post-meta-user span, {{RTTPG}} .post-meta-tags span{{meta_spacing}}' |
| 744 | ] |
| 745 | ] |
| 746 | ], |
| 747 | 'separator_cat_heading' => [ |
| 748 | 'type' => 'string', |
| 749 | 'default' => '', |
| 750 | ], |
| 751 | |
| 752 | 'separator_cat_typography' => [ |
| 753 | 'type' => 'object', |
| 754 | 'default' => (object) [ |
| 755 | 'openTypography' => 1, |
| 756 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 757 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 758 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 759 | 'transform' => '', |
| 760 | 'weight' => '' |
| 761 | ], |
| 762 | 'style' => [ |
| 763 | (object) [ 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .tpg-separate-category .categories-links a' ] |
| 764 | ], |
| 765 | ], |
| 766 | |
| 767 | 'category_margin_bottom' => [ |
| 768 | 'type' => 'number', |
| 769 | // 'default' => 0.5, |
| 770 | 'style' => [ |
| 771 | (object) [ |
| 772 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category.above_title { margin-bottom: {{category_margin_bottom}}px !important;}' |
| 773 | ], |
| 774 | ] |
| 775 | ], |
| 776 | |
| 777 | "category_radius" => [ |
| 778 | "type" => "object", |
| 779 | "default" => [ |
| 780 | 'lg' => [ |
| 781 | "isLinked" => true, |
| 782 | "unit" => "px", |
| 783 | "value" => '' |
| 784 | ] |
| 785 | ], |
| 786 | 'style' => [ |
| 787 | (object) [ |
| 788 | 'selector' => ' |
| 789 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links a{{category_radius}} |
| 790 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links a{{category_radius}} |
| 791 | ' |
| 792 | ] |
| 793 | ] |
| 794 | ], |
| 795 | |
| 796 | "category_padding" => [ |
| 797 | "type" => "object", |
| 798 | "default" => [ |
| 799 | 'lg' => [ |
| 800 | "isLinked" => true, |
| 801 | "unit" => "px", |
| 802 | "value" => '' |
| 803 | ] |
| 804 | ], |
| 805 | 'style' => [ |
| 806 | (object) [ |
| 807 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder .categories-links a{{category_padding}} |
| 808 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links a{{category_padding}}' |
| 809 | ] |
| 810 | ] |
| 811 | ], |
| 812 | |
| 813 | "meta_info_style_tabs" => [ |
| 814 | 'type' => 'string', |
| 815 | 'default' => 'normal' |
| 816 | ], |
| 817 | |
| 818 | 'meta_info_color' => [ |
| 819 | 'type' => 'string', |
| 820 | 'default' => '', |
| 821 | 'style' => [ |
| 822 | (object) [ |
| 823 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .post-meta-tags span {color: {{meta_info_color}}; }' |
| 824 | ] |
| 825 | ] |
| 826 | ], |
| 827 | |
| 828 | 'meta_link_color' => [ |
| 829 | 'type' => 'string', |
| 830 | 'default' => '', |
| 831 | 'style' => [ |
| 832 | (object) [ |
| 833 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .post-meta-tags a {color: {{meta_link_color}}; }' |
| 834 | ] |
| 835 | ] |
| 836 | ], |
| 837 | |
| 838 | 'meta_separator_color' => [ |
| 839 | 'type' => 'string', |
| 840 | 'default' => '', |
| 841 | 'style' => [ |
| 842 | (object) [ |
| 843 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .separator {color: {{meta_separator_color}}; }' |
| 844 | ] |
| 845 | ] |
| 846 | ], |
| 847 | |
| 848 | 'meta_icon_color' => [ |
| 849 | 'type' => 'string', |
| 850 | 'default' => '', |
| 851 | 'style' => [ |
| 852 | (object) [ |
| 853 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .post-meta-tags i {color: {{meta_icon_color}}; }' |
| 854 | ] |
| 855 | ] |
| 856 | ], |
| 857 | 'category_position' => [ |
| 858 | 'type' => 'string', |
| 859 | 'default' => 'default', |
| 860 | ], |
| 861 | |
| 862 | 'category_source' => [ |
| 863 | 'type' => 'string', |
| 864 | 'default' => 'category', |
| 865 | ], |
| 866 | |
| 867 | 'tag_source' => [ |
| 868 | 'type' => 'string', |
| 869 | 'default' => 'post_tag', |
| 870 | ], |
| 871 | |
| 872 | 'category_style' => [ |
| 873 | 'type' => 'string', |
| 874 | 'default' => 'style1', |
| 875 | ], |
| 876 | |
| 877 | 'category_bg_style' => [ |
| 878 | 'type' => 'string', |
| 879 | 'default' => 'default', |
| 880 | ], |
| 881 | |
| 882 | 'show_cat_icon' => [ |
| 883 | 'type' => 'string', |
| 884 | 'default' => '', |
| 885 | ], |
| 886 | |
| 887 | 'separate_category_color' => [ |
| 888 | 'type' => 'string', |
| 889 | 'default' => '', |
| 890 | 'style' => [ |
| 891 | (object) [ |
| 892 | 'selector' => ' |
| 893 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category.style1 .categories-links a {color: {{separate_category_color}}; } |
| 894 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links a {color: {{separate_category_color}}; } |
| 895 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links a {color: {{separate_category_color}}; } |
| 896 | ' |
| 897 | ] |
| 898 | ] |
| 899 | ], |
| 900 | |
| 901 | 'separate_category_bg' => [ |
| 902 | 'type' => 'string', |
| 903 | 'default' => '', |
| 904 | 'style' => [ |
| 905 | (object) [ |
| 906 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category.style1 .categories-links a {background-color: {{separate_category_bg}}; } |
| 907 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category.style1 .categories-links a::after {border-top-color: {{separate_category_bg}}; } |
| 908 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category:not(.style1) .categories-links a {background-color: {{separate_category_bg}}; } |
| 909 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category:not(.style1) .categories-links a:after {border-top-color: {{separate_category_bg}}; } |
| 910 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links a {background-color: {{separate_category_bg}}; }' |
| 911 | ] |
| 912 | ] |
| 913 | ], |
| 914 | |
| 915 | 'separate_category_icon_color' => [ |
| 916 | 'type' => 'string', |
| 917 | 'default' => '', |
| 918 | 'style' => [ |
| 919 | (object) [ |
| 920 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links i {color: {{separate_category_icon_color}}; } |
| 921 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links i {color: {{separate_category_icon_color}}; }' |
| 922 | ] |
| 923 | ] |
| 924 | ], |
| 925 | |
| 926 | 'post_footer_border_color' => [ |
| 927 | 'type' => 'string', |
| 928 | 'default' => '', |
| 929 | 'style' => [ |
| 930 | (object) [ |
| 931 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta::before {background: {{post_footer_border_color}} ; }' |
| 932 | ] |
| 933 | ] |
| 934 | ], |
| 935 | |
| 936 | 'meta_link_colo_hover' => [ |
| 937 | 'type' => 'string', |
| 938 | 'default' => '', |
| 939 | 'style' => [ |
| 940 | (object) [ |
| 941 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder .post-meta-tags a:hover {color: {{meta_link_colo_hover}}; }' |
| 942 | ] |
| 943 | ] |
| 944 | ], |
| 945 | |
| 946 | 'separate_category_color_hover' => [ |
| 947 | 'type' => 'string', |
| 948 | 'default' => '', |
| 949 | 'style' => [ |
| 950 | (object) [ |
| 951 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links a:hover {color: {{separate_category_color_hover}} !important; } |
| 952 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links a:hover {color: {{separate_category_color_hover}} !important; }' |
| 953 | ] |
| 954 | ] |
| 955 | ], |
| 956 | |
| 957 | 'separate_category_bg_hover' => [ |
| 958 | 'type' => 'string', |
| 959 | 'default' => '', |
| 960 | 'style' => [ |
| 961 | (object) [ |
| 962 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category.style1 .categories-links a:hover {background-color: {{separate_category_bg_hover}} !important; } |
| 963 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links:not(.style1) a:hover {background-color: {{separate_category_bg_hover}} !important; } |
| 964 | {{RTTPG}} .tpg-el-main-wrapper .tpg-separate-category .categories-links a:hover::after {border-top-color: {{separate_category_bg_hover}} !important; } |
| 965 | {{RTTPG}} .tpg-el-main-wrapper .post-meta-tags .categories-links a:hover {background-color: {{separate_category_bg_hover}} !important; } |
| 966 | ' |
| 967 | ] |
| 968 | ] |
| 969 | ], |
| 970 | |
| 971 | 'meta_link_colo_box_hover' => [ |
| 972 | 'type' => 'string', |
| 973 | 'default' => '', |
| 974 | 'style' => [ |
| 975 | (object) [ |
| 976 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .post-meta-tags * {color: {{meta_link_colo_box_hover}}; }' |
| 977 | ] |
| 978 | ] |
| 979 | ], |
| 980 | |
| 981 | 'separate_category_color_box_hover' => [ |
| 982 | 'type' => 'string', |
| 983 | 'default' => '', |
| 984 | 'style' => [ |
| 985 | (object) [ |
| 986 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-separate-category .categories-links a, |
| 987 | {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .post-meta-tags .categories-links a {color: {{separate_category_color_box_hover}}; }' |
| 988 | ] |
| 989 | ] |
| 990 | ], |
| 991 | |
| 992 | 'separate_category_bg_box_hover' => [ |
| 993 | 'type' => 'string', |
| 994 | 'default' => '', |
| 995 | 'style' => [ |
| 996 | (object) [ |
| 997 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-separate-category.style1 .categories-links a {background-color: {{separate_category_bg_box_hover}}; } |
| 998 | {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-separate-category .categories-links a::after {border-top-color: {{separate_category_bg_box_hover}}; } |
| 999 | {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-separate-category:not(.style1) .categories-links a, |
| 1000 | {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .post-meta-tags .categories-links a {background-color: {{separate_category_bg_box_hover}}; }' |
| 1001 | ] |
| 1002 | ] |
| 1003 | ], |
| 1004 | |
| 1005 | 'separate_category_icon_color_box_hover' => [ |
| 1006 | 'type' => 'string', |
| 1007 | 'default' => '', |
| 1008 | 'style' => [ |
| 1009 | (object) [ |
| 1010 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .tpg-separate-category .categories-links i, |
| 1011 | {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover .post-meta-tags .categories-links i {color: {{separate_category_icon_color_box_hover}}; }' |
| 1012 | ] |
| 1013 | ] |
| 1014 | ], |
| 1015 | |
| 1016 | //Social Icon Style |
| 1017 | |
| 1018 | "social_icon_margin" => [ |
| 1019 | "type" => "object", |
| 1020 | "default" => [ |
| 1021 | 'lg' => [ |
| 1022 | "isLinked" => true, |
| 1023 | "unit" => "px", |
| 1024 | "value" => '' |
| 1025 | ] |
| 1026 | ], |
| 1027 | 'style' => [ |
| 1028 | (object) [ |
| 1029 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a{{social_icon_margin}}' |
| 1030 | ] |
| 1031 | ] |
| 1032 | ], |
| 1033 | |
| 1034 | "social_wrapper_margin" => [ |
| 1035 | "type" => "object", |
| 1036 | "default" => [ |
| 1037 | 'lg' => [ |
| 1038 | "isLinked" => false, |
| 1039 | "unit" => "px", |
| 1040 | "value" => '' |
| 1041 | ] |
| 1042 | ], |
| 1043 | 'style' => [ |
| 1044 | (object) [ |
| 1045 | 'selector' => '{{RTTPG}} .rt-tpg-social-share{{social_wrapper_margin}}' |
| 1046 | ] |
| 1047 | ] |
| 1048 | ], |
| 1049 | |
| 1050 | "social_icon_radius" => [ |
| 1051 | "type" => "object", |
| 1052 | "default" => [ |
| 1053 | 'lg' => [ |
| 1054 | "isLinked" => true, |
| 1055 | "unit" => "px", |
| 1056 | "value" => '' |
| 1057 | ] |
| 1058 | ], |
| 1059 | 'style' => [ |
| 1060 | (object) [ |
| 1061 | 'selector' => '{{RTTPG}} .rt-tpg-social-share i{{social_icon_radius}}' |
| 1062 | ] |
| 1063 | ] |
| 1064 | ], |
| 1065 | 'social_icon_width' => [ |
| 1066 | 'type' => 'string', |
| 1067 | 'default' => '', |
| 1068 | 'style' => [ |
| 1069 | (object) [ |
| 1070 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i{width:{{social_icon_width}}px;text-align:center;}' |
| 1071 | ] |
| 1072 | ] |
| 1073 | ], |
| 1074 | 'social_icon_height' => [ |
| 1075 | 'type' => 'string', |
| 1076 | 'default' => '', |
| 1077 | 'style' => [ |
| 1078 | (object) [ |
| 1079 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i{height:{{social_icon_height}}px; line-height: {{social_icon_height}}px}' |
| 1080 | ] |
| 1081 | ] |
| 1082 | ], |
| 1083 | |
| 1084 | 'icon_font_size' => [ |
| 1085 | 'type' => 'object', |
| 1086 | "default" => (object) [ |
| 1087 | 'lg' => '', |
| 1088 | 'md' => '', |
| 1089 | 'sm' => '', |
| 1090 | ], |
| 1091 | 'style' => [ |
| 1092 | (object) [ |
| 1093 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i{font-size:{{icon_font_size}}}' |
| 1094 | ] |
| 1095 | ] |
| 1096 | ], |
| 1097 | |
| 1098 | 'social_share_style_tabs' => [ |
| 1099 | 'type' => 'string', |
| 1100 | 'default' => 'normal', |
| 1101 | ], |
| 1102 | 'social_icon_color' => [ |
| 1103 | 'type' => 'string', |
| 1104 | 'default' => '', |
| 1105 | 'style' => [ |
| 1106 | (object) [ |
| 1107 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i {color: {{social_icon_color}}; }' |
| 1108 | ] |
| 1109 | ] |
| 1110 | ], |
| 1111 | |
| 1112 | 'social_icon_bg_color' => [ |
| 1113 | 'type' => 'string', |
| 1114 | 'default' => '', |
| 1115 | 'style' => [ |
| 1116 | (object) [ |
| 1117 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i {background-color: {{social_icon_bg_color}}; }' |
| 1118 | ] |
| 1119 | ] |
| 1120 | ], |
| 1121 | |
| 1122 | 'social_icon_border' => [ |
| 1123 | 'type' => 'object', |
| 1124 | 'default' => (object) [ |
| 1125 | 'openTpgBorder' => 1, |
| 1126 | 'color' => '', |
| 1127 | 'style' => '', |
| 1128 | 'width' => '', |
| 1129 | ], |
| 1130 | 'style' => [ |
| 1131 | (object) [ |
| 1132 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a i' |
| 1133 | ] |
| 1134 | ] |
| 1135 | ], |
| 1136 | |
| 1137 | 'social_icon_color_hover' => [ |
| 1138 | 'type' => 'string', |
| 1139 | 'default' => '', |
| 1140 | 'style' => [ |
| 1141 | (object) [ |
| 1142 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a:hover i {color: {{social_icon_color_hover}} !important; }' |
| 1143 | ] |
| 1144 | ] |
| 1145 | ], |
| 1146 | |
| 1147 | 'social_icon_bg_color_hover' => [ |
| 1148 | 'type' => 'string', |
| 1149 | 'default' => '', |
| 1150 | 'style' => [ |
| 1151 | (object) [ |
| 1152 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a:hover i {background-color: {{social_icon_bg_color_hover}} !important; }' |
| 1153 | ] |
| 1154 | ] |
| 1155 | ], |
| 1156 | |
| 1157 | 'social_icon_color_box_hover' => [ |
| 1158 | 'type' => 'string', |
| 1159 | 'default' => '', |
| 1160 | 'style' => [ |
| 1161 | (object) [ |
| 1162 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder:hover .rt-tpg-social-share a i {color: {{social_icon_color_box_hover}}; }' |
| 1163 | ] |
| 1164 | ] |
| 1165 | ], |
| 1166 | |
| 1167 | 'social_icon_bg_color_box_hover' => [ |
| 1168 | 'type' => 'string', |
| 1169 | 'default' => '', |
| 1170 | 'style' => [ |
| 1171 | (object) [ |
| 1172 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-holder:hover .rt-tpg-social-share a i {background-color: {{social_icon_bg_color_box_hover}}; }' |
| 1173 | ] |
| 1174 | ] |
| 1175 | ], |
| 1176 | |
| 1177 | 'social_icon_border_hover' => [ |
| 1178 | 'type' => 'object', |
| 1179 | 'default' => (object) [ |
| 1180 | 'openTpgBorder' => 1, |
| 1181 | 'color' => '', |
| 1182 | 'style' => '', |
| 1183 | 'width' => '', |
| 1184 | ], |
| 1185 | 'style' => [ |
| 1186 | (object) [ |
| 1187 | 'selector' => '{{RTTPG}} .rt-tpg-social-share a:hover i' |
| 1188 | ] |
| 1189 | ] |
| 1190 | ], |
| 1191 | |
| 1192 | //ACF Style |
| 1193 | |
| 1194 | 'acf_group_title_typography' => [ |
| 1195 | 'type' => 'object', |
| 1196 | 'default' => (object) [ |
| 1197 | 'openTypography' => 1, |
| 1198 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1199 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1200 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1201 | 'transform' => '', |
| 1202 | 'weight' => '' |
| 1203 | ], |
| 1204 | 'style' => [ |
| 1205 | (object) [ 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-cf-group-title' ] |
| 1206 | ], |
| 1207 | ], |
| 1208 | |
| 1209 | 'acf_typography' => [ |
| 1210 | 'type' => 'object', |
| 1211 | 'default' => (object) [ |
| 1212 | 'openTypography' => 1, |
| 1213 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1214 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1215 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1216 | 'transform' => '', |
| 1217 | 'weight' => '' |
| 1218 | ], |
| 1219 | 'style' => [ |
| 1220 | (object) [ 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-cf-fields' ] |
| 1221 | ], |
| 1222 | ], |
| 1223 | |
| 1224 | 'acf_label_style' => [ |
| 1225 | 'type' => 'string', |
| 1226 | 'default' => 'inline', |
| 1227 | ], |
| 1228 | |
| 1229 | 'acf_label_width' => [ |
| 1230 | 'type' => 'object', |
| 1231 | "default" => (object) [ |
| 1232 | 'lg' => '', |
| 1233 | 'md' => '', |
| 1234 | 'sm' => '', |
| 1235 | ], |
| 1236 | 'style' => [ |
| 1237 | (object) [ |
| 1238 | 'selector' => '{{RTTPG}} .tgp-cf-field-label {min-width:{{acf_label_width}}}' |
| 1239 | ] |
| 1240 | ] |
| 1241 | ], |
| 1242 | 'acf_alignment' => [ |
| 1243 | 'type' => 'string', |
| 1244 | 'default' => '', |
| 1245 | 'style' => [ |
| 1246 | (object) [ |
| 1247 | 'selector' => '{{RTTPG}} .selector {text-align: {{acf_alignment}}; }' |
| 1248 | ] |
| 1249 | ] |
| 1250 | ], |
| 1251 | 'acf_style_tabs' => [ |
| 1252 | 'type' => 'string', |
| 1253 | 'default' => 'normal', |
| 1254 | ], |
| 1255 | |
| 1256 | 'acf_group_title_color' => [ |
| 1257 | 'type' => 'string', |
| 1258 | 'default' => '', |
| 1259 | 'style' => [ |
| 1260 | (object) [ |
| 1261 | 'selector' => '{{RTTPG}} .acf-custom-field-wrap .tpg-cf-group-title {color: {{acf_group_title_color}}; }' |
| 1262 | ] |
| 1263 | ] |
| 1264 | ], |
| 1265 | |
| 1266 | 'acf_label_color' => [ |
| 1267 | 'type' => 'string', |
| 1268 | 'default' => '', |
| 1269 | 'style' => [ |
| 1270 | (object) [ |
| 1271 | 'selector' => '{{RTTPG}} .acf-custom-field-wrap .tgp-cf-field-label {color: {{acf_label_color}}; }' |
| 1272 | ] |
| 1273 | ] |
| 1274 | ], |
| 1275 | |
| 1276 | 'acf_value_color' => [ |
| 1277 | 'type' => 'string', |
| 1278 | 'default' => '', |
| 1279 | 'style' => [ |
| 1280 | (object) [ |
| 1281 | 'selector' => '{{RTTPG}} .acf-custom-field-wrap .tgp-cf-field-value {color: {{acf_value_color}}; }' |
| 1282 | ] |
| 1283 | ] |
| 1284 | ], |
| 1285 | |
| 1286 | 'acf_group_title_color_hover' => [ |
| 1287 | 'type' => 'string', |
| 1288 | 'default' => '', |
| 1289 | 'style' => [ |
| 1290 | (object) [ |
| 1291 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder:hover .tpg-cf-group-title {color: {{acf_group_title_color_hover}}; }' |
| 1292 | ] |
| 1293 | ] |
| 1294 | ], |
| 1295 | |
| 1296 | 'acf_label_color_hover' => [ |
| 1297 | 'type' => 'string', |
| 1298 | 'default' => '', |
| 1299 | 'style' => [ |
| 1300 | (object) [ |
| 1301 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder:hover .tgp-cf-field-label {color: {{acf_label_color_hover}}; }' |
| 1302 | ] |
| 1303 | ] |
| 1304 | ], |
| 1305 | |
| 1306 | 'acf_value_color_hover' => [ |
| 1307 | 'type' => 'string', |
| 1308 | 'default' => '', |
| 1309 | 'style' => [ |
| 1310 | (object) [ |
| 1311 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-holder:hover .tgp-cf-field-value {color: {{acf_value_color_hover}}; }' |
| 1312 | ] |
| 1313 | ] |
| 1314 | ], |
| 1315 | |
| 1316 | //Read More Style |
| 1317 | |
| 1318 | 'readmore_typography' => [ |
| 1319 | 'type' => 'object', |
| 1320 | 'default' => (object) [ |
| 1321 | 'openTypography' => 1, |
| 1322 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1323 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1324 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1325 | 'transform' => '', |
| 1326 | 'weight' => '' |
| 1327 | ], |
| 1328 | 'style' => [ |
| 1329 | (object) [ 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a' ] |
| 1330 | ], |
| 1331 | ], |
| 1332 | |
| 1333 | "readmore_spacing" => [ |
| 1334 | "type" => "object", |
| 1335 | "default" => [ |
| 1336 | 'lg' => [ |
| 1337 | "isLinked" => false, |
| 1338 | "unit" => "px", |
| 1339 | "value" => '' |
| 1340 | ] |
| 1341 | ], |
| 1342 | 'style' => [ |
| 1343 | (object) [ |
| 1344 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more{{readmore_spacing}}' |
| 1345 | ] |
| 1346 | ] |
| 1347 | ], |
| 1348 | |
| 1349 | "readmore_padding" => [ |
| 1350 | "type" => "object", |
| 1351 | "default" => [ |
| 1352 | 'lg' => [ |
| 1353 | "isLinked" => true, |
| 1354 | "unit" => "px", |
| 1355 | "value" => '' |
| 1356 | ] |
| 1357 | ], |
| 1358 | 'style' => [ |
| 1359 | (object) [ |
| 1360 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a{{readmore_padding}}' |
| 1361 | ] |
| 1362 | ] |
| 1363 | ], |
| 1364 | |
| 1365 | 'readmore_btn_alignment' => [ |
| 1366 | 'type' => 'object', |
| 1367 | 'default' => [], |
| 1368 | 'style' => [ |
| 1369 | (object) [ |
| 1370 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more {text-align: {{readmore_btn_alignment}}; }' |
| 1371 | ] |
| 1372 | ] |
| 1373 | ], |
| 1374 | 'readmore_icon_position' => [ |
| 1375 | 'type' => 'string', |
| 1376 | 'default' => 'right', |
| 1377 | ], |
| 1378 | |
| 1379 | 'readmore_icon_size' => [ |
| 1380 | 'type' => 'object', |
| 1381 | "default" => (object) [ |
| 1382 | 'lg' => '', |
| 1383 | 'md' => '', |
| 1384 | 'sm' => '', |
| 1385 | ], |
| 1386 | 'style' => [ |
| 1387 | (object) [ |
| 1388 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a i {font-size: {{readmore_icon_size}}; }' |
| 1389 | ] |
| 1390 | ] |
| 1391 | ], |
| 1392 | 'readmore_icon_y_position' => [ |
| 1393 | 'type' => 'object', |
| 1394 | "default" => (object) [ |
| 1395 | 'lg' => '', |
| 1396 | 'md' => '', |
| 1397 | 'sm' => '', |
| 1398 | ], |
| 1399 | 'style' => [ |
| 1400 | (object) [ |
| 1401 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a i {transform: translateY({{readmore_icon_y_position}}); }' |
| 1402 | ] |
| 1403 | ] |
| 1404 | ], |
| 1405 | |
| 1406 | 'readmore_text_color' => [ |
| 1407 | 'type' => 'string', |
| 1408 | 'default' => '', |
| 1409 | 'style' => [ |
| 1410 | (object) [ |
| 1411 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a {color: {{readmore_text_color}}; }' |
| 1412 | ] |
| 1413 | ] |
| 1414 | ], |
| 1415 | |
| 1416 | 'readmore_icon_color' => [ |
| 1417 | 'type' => 'string', |
| 1418 | 'default' => '', |
| 1419 | 'style' => [ |
| 1420 | (object) [ |
| 1421 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a i {color: {{readmore_icon_color}}; }' |
| 1422 | ] |
| 1423 | ] |
| 1424 | ], |
| 1425 | |
| 1426 | 'readmore_bg' => [ |
| 1427 | 'type' => 'string', |
| 1428 | 'default' => '', |
| 1429 | 'style' => [ |
| 1430 | (object) [ |
| 1431 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a {background-color: {{readmore_bg}}; }' |
| 1432 | ] |
| 1433 | ] |
| 1434 | ], |
| 1435 | |
| 1436 | "readmore_icon_margin" => [ |
| 1437 | "type" => "object", |
| 1438 | "default" => [ |
| 1439 | 'lg' => [ |
| 1440 | "isLinked" => true, |
| 1441 | "unit" => "px", |
| 1442 | "value" => '' |
| 1443 | ] |
| 1444 | ], |
| 1445 | 'style' => [ |
| 1446 | (object) [ |
| 1447 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a i{{readmore_icon_margin}}' |
| 1448 | ] |
| 1449 | ] |
| 1450 | ], |
| 1451 | |
| 1452 | "border_radius" => [ |
| 1453 | "type" => "object", |
| 1454 | "default" => [ |
| 1455 | 'lg' => [ |
| 1456 | "isLinked" => true, |
| 1457 | "unit" => "px", |
| 1458 | "value" => '' |
| 1459 | ] |
| 1460 | ], |
| 1461 | 'style' => [ |
| 1462 | (object) [ |
| 1463 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a{{border_radius}}' |
| 1464 | ] |
| 1465 | ] |
| 1466 | ], |
| 1467 | 'readmore_border' => [ |
| 1468 | 'type' => 'object', |
| 1469 | 'default' => (object) [ |
| 1470 | 'openTpgBorder' => 1, |
| 1471 | 'color' => '', |
| 1472 | 'style' => '', |
| 1473 | 'width' => '', |
| 1474 | ], |
| 1475 | 'style' => [ |
| 1476 | (object) [ |
| 1477 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a' |
| 1478 | ] |
| 1479 | ] |
| 1480 | ], |
| 1481 | 'readmore_text_color_hover' => [ |
| 1482 | 'type' => 'string', |
| 1483 | 'default' => '', |
| 1484 | 'style' => [ |
| 1485 | (object) [ |
| 1486 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover {color: {{readmore_text_color_hover}}; }' |
| 1487 | ] |
| 1488 | ] |
| 1489 | ], |
| 1490 | |
| 1491 | 'readmore_icon_color_hover' => [ |
| 1492 | 'type' => 'string', |
| 1493 | 'default' => '', |
| 1494 | 'style' => [ |
| 1495 | (object) [ |
| 1496 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover i {color: {{readmore_icon_color_hover}}; }' |
| 1497 | ] |
| 1498 | ] |
| 1499 | ], |
| 1500 | |
| 1501 | 'readmore_bg_hover' => [ |
| 1502 | 'type' => 'string', |
| 1503 | 'default' => '', |
| 1504 | 'style' => [ |
| 1505 | (object) [ |
| 1506 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover {background-color: {{readmore_bg_hover}}; }' |
| 1507 | ] |
| 1508 | ] |
| 1509 | ], |
| 1510 | |
| 1511 | "readmore_icon_margin_hover" => [ |
| 1512 | "type" => "object", |
| 1513 | "default" => [ |
| 1514 | 'lg' => [ |
| 1515 | "isLinked" => false, |
| 1516 | "unit" => "px", |
| 1517 | "value" => '' |
| 1518 | ] |
| 1519 | ], |
| 1520 | 'style' => [ |
| 1521 | (object) [ |
| 1522 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover i{{readmore_icon_margin_hover}}' |
| 1523 | ] |
| 1524 | ] |
| 1525 | ], |
| 1526 | |
| 1527 | "border_radius_hover" => [ |
| 1528 | "type" => "object", |
| 1529 | "default" => [ |
| 1530 | 'lg' => [ |
| 1531 | "isLinked" => true, |
| 1532 | "unit" => "px", |
| 1533 | "value" => '' |
| 1534 | ] |
| 1535 | ], |
| 1536 | 'style' => [ |
| 1537 | (object) [ |
| 1538 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover{{border_radius_hover}}' |
| 1539 | ] |
| 1540 | ] |
| 1541 | ], |
| 1542 | |
| 1543 | 'readmore_border_hover' => [ |
| 1544 | 'type' => 'object', |
| 1545 | 'default' => (object) [ |
| 1546 | 'openTpgBorder' => 1, |
| 1547 | 'color' => '', |
| 1548 | 'style' => '', |
| 1549 | 'width' => '', |
| 1550 | 'important' => 1, |
| 1551 | ], |
| 1552 | 'style' => [ |
| 1553 | (object) [ |
| 1554 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .tpg-post-holder .rt-detail .read-more a:hover' |
| 1555 | ] |
| 1556 | ] |
| 1557 | ], |
| 1558 | |
| 1559 | 'readmore_text_color_box_hover' => [ |
| 1560 | 'type' => 'string', |
| 1561 | 'default' => '', |
| 1562 | 'style' => [ |
| 1563 | (object) [ |
| 1564 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder:hover .rt-detail .read-more a {color: {{readmore_text_color_box_hover}}; }' |
| 1565 | ] |
| 1566 | ] |
| 1567 | ], |
| 1568 | |
| 1569 | 'readmore_icon_color_box_hover' => [ |
| 1570 | 'type' => 'string', |
| 1571 | 'default' => '', |
| 1572 | 'style' => [ |
| 1573 | (object) [ |
| 1574 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder:hover .rt-detail .read-more a i {color: {{readmore_icon_color_box_hover}}; }' |
| 1575 | ] |
| 1576 | ] |
| 1577 | ], |
| 1578 | |
| 1579 | 'readmore_bg_box_hover' => [ |
| 1580 | 'type' => 'string', |
| 1581 | 'default' => '', |
| 1582 | 'style' => [ |
| 1583 | (object) [ |
| 1584 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder:hover .rt-detail .read-more a {background-color: {{readmore_bg_box_hover}}; }' |
| 1585 | ] |
| 1586 | ] |
| 1587 | ], |
| 1588 | |
| 1589 | 'readmore_border_box_hover' => [ |
| 1590 | 'type' => 'object', |
| 1591 | 'default' => (object) [ |
| 1592 | 'openTpgBorder' => 1, |
| 1593 | 'color' => '', |
| 1594 | 'style' => '', |
| 1595 | 'width' => '', |
| 1596 | ], |
| 1597 | 'style' => [ |
| 1598 | (object) [ |
| 1599 | 'selector' => '{{RTTPG}} .rt-tpg-container .tpg-post-holder:hover .rt-detail .read-more a' |
| 1600 | ] |
| 1601 | ] |
| 1602 | ], |
| 1603 | |
| 1604 | //Link Style |
| 1605 | |
| 1606 | 'popup_head_bg' => [ |
| 1607 | 'type' => 'string', |
| 1608 | 'default' => '', |
| 1609 | 'style' => [ |
| 1610 | (object) [ |
| 1611 | 'selector' => '{{RTTPG}} .selector {color: {{popup_head_bg}}; }' |
| 1612 | ] |
| 1613 | ] |
| 1614 | ], |
| 1615 | |
| 1616 | 'popup_head_txt_color' => [ |
| 1617 | 'type' => 'string', |
| 1618 | 'default' => '', |
| 1619 | 'style' => [ |
| 1620 | (object) [ |
| 1621 | 'selector' => '{{RTTPG}} .selector {color: {{popup_head_txt_color}}; }' |
| 1622 | ] |
| 1623 | ] |
| 1624 | ], |
| 1625 | |
| 1626 | 'popup_title_color' => [ |
| 1627 | 'type' => 'string', |
| 1628 | 'default' => '', |
| 1629 | 'style' => [ |
| 1630 | (object) [ |
| 1631 | 'selector' => '{{RTTPG}} .selector {color: {{popup_title_color}}; }' |
| 1632 | ] |
| 1633 | ] |
| 1634 | ], |
| 1635 | |
| 1636 | 'popup_meta_color' => [ |
| 1637 | 'type' => 'string', |
| 1638 | 'default' => '', |
| 1639 | 'style' => [ |
| 1640 | (object) [ |
| 1641 | 'selector' => '{{RTTPG}} .selector {color: {{popup_meta_color}}; }' |
| 1642 | ] |
| 1643 | ] |
| 1644 | ], |
| 1645 | |
| 1646 | 'popup_content_color' => [ |
| 1647 | 'type' => 'string', |
| 1648 | 'default' => '', |
| 1649 | 'style' => [ |
| 1650 | (object) [ |
| 1651 | 'selector' => '{{RTTPG}} .selector {color: {{popup_content_color}}; }' |
| 1652 | ] |
| 1653 | ] |
| 1654 | ], |
| 1655 | |
| 1656 | 'popup_bg' => [ |
| 1657 | 'type' => 'string', |
| 1658 | 'default' => '', |
| 1659 | 'style' => [ |
| 1660 | (object) [ |
| 1661 | 'selector' => '{{RTTPG}} .selector {color: {{popup_bg}}; }' |
| 1662 | ] |
| 1663 | ] |
| 1664 | ], |
| 1665 | |
| 1666 | //Pagination - Load more Style |
| 1667 | |
| 1668 | 'pagination_style_tabs' => [ |
| 1669 | 'type' => 'string', |
| 1670 | 'default' => 'normal', |
| 1671 | ], |
| 1672 | |
| 1673 | 'pagination_typography' => [ |
| 1674 | 'type' => 'object', |
| 1675 | 'default' => (object) [ |
| 1676 | 'openTypography' => 1, |
| 1677 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1678 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1679 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1680 | 'transform' => '', |
| 1681 | 'weight' => '' |
| 1682 | ], |
| 1683 | 'style' => [ |
| 1684 | (object) [ |
| 1685 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a, {{RTTPG}} .rt-pagination .pagination-list > li > span, {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn, {{RTTPG}} .rt-pagination .pagination-list > li i' |
| 1686 | ] |
| 1687 | ], |
| 1688 | ], |
| 1689 | |
| 1690 | 'pagination_text_align' => [ |
| 1691 | 'type' => 'object', |
| 1692 | 'default' => [], |
| 1693 | 'style' => [ |
| 1694 | (object) [ |
| 1695 | 'selector' => '{{RTTPG}} .rt-pagination-wrap {justify-content: {{pagination_text_align}}; }' |
| 1696 | ] |
| 1697 | ] |
| 1698 | ], |
| 1699 | |
| 1700 | "pagination_spacing" => [ |
| 1701 | "type" => "object", |
| 1702 | "default" => [ |
| 1703 | 'lg' => [ |
| 1704 | "isLinked" => false, |
| 1705 | "unit" => "px", |
| 1706 | "value" => '' |
| 1707 | ] |
| 1708 | ], |
| 1709 | 'style' => [ |
| 1710 | (object) [ |
| 1711 | 'selector' => '{{RTTPG}} .rt-pagination-wrap{{pagination_spacing}}' |
| 1712 | ] |
| 1713 | ] |
| 1714 | ], |
| 1715 | |
| 1716 | // "pagination_padding" => [ |
| 1717 | // "type" => "object", |
| 1718 | // "default" => [ |
| 1719 | // 'lg' => [ |
| 1720 | // "isLinked" => true, |
| 1721 | // "unit" => "px", |
| 1722 | // "value" => '' |
| 1723 | // ] |
| 1724 | // ], |
| 1725 | // 'style' => [ |
| 1726 | // (object) [ |
| 1727 | // 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a, |
| 1728 | // {{RTTPG}} .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a, |
| 1729 | // {{RTTPG}} .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > span, |
| 1730 | // {{RTTPG}} .rt-pagination .pagination-list > li > span{{pagination_padding}} |
| 1731 | // ' |
| 1732 | // ] |
| 1733 | // ] |
| 1734 | // ], |
| 1735 | |
| 1736 | |
| 1737 | 'pagination_btn_width' => [ |
| 1738 | 'type' => 'object', |
| 1739 | "default" => (object) [ |
| 1740 | 'lg' => '', |
| 1741 | 'md' => '', |
| 1742 | 'sm' => '', |
| 1743 | ], |
| 1744 | 'style' => [ |
| 1745 | (object) [ |
| 1746 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a, |
| 1747 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a, |
| 1748 | {{RTTPG}} .rt-pagination .pagination-list > li > span {min-width: {{pagination_btn_width}}; }' |
| 1749 | ] |
| 1750 | ] |
| 1751 | ], |
| 1752 | |
| 1753 | 'pagination_btn_height' => [ |
| 1754 | 'type' => 'object', |
| 1755 | "default" => (object) [ |
| 1756 | 'lg' => '', |
| 1757 | 'md' => '', |
| 1758 | 'sm' => '', |
| 1759 | ], |
| 1760 | 'style' => [ |
| 1761 | (object) [ |
| 1762 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a, |
| 1763 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a, |
| 1764 | {{RTTPG}} .rt-pagination .pagination-list > li > span {min-height: {{pagination_btn_height}}; line-height: {{pagination_btn_height}}; }' |
| 1765 | ] |
| 1766 | ] |
| 1767 | ], |
| 1768 | |
| 1769 | "pagination_border_radius" => [ |
| 1770 | "type" => "object", |
| 1771 | "default" => [ |
| 1772 | 'lg' => [ |
| 1773 | "isLinked" => true, |
| 1774 | "unit" => "px", |
| 1775 | "value" => '' |
| 1776 | ] |
| 1777 | ], |
| 1778 | 'style' => [ |
| 1779 | (object) [ |
| 1780 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn, |
| 1781 | {{RTTPG}} .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a, |
| 1782 | {{RTTPG}} .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > span, |
| 1783 | {{RTTPG}} .rt-pagination .pagination-list > li > a, |
| 1784 | {{RTTPG}} .rt-pagination .pagination-list > li > span{{pagination_border_radius}}' |
| 1785 | ] |
| 1786 | ] |
| 1787 | ], |
| 1788 | |
| 1789 | 'pagination_color' => [ |
| 1790 | 'type' => 'string', |
| 1791 | 'default' => '', |
| 1792 | 'style' => [ |
| 1793 | (object) [ |
| 1794 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li:not(:hover) > a, |
| 1795 | {{RTTPG}} .rt-pagination .pagination-list > li:not(:hover) > span, |
| 1796 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:not(:hover) > a, |
| 1797 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:not(:hover), |
| 1798 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn {color: {{pagination_color}}; }' |
| 1799 | ] |
| 1800 | ] |
| 1801 | ], |
| 1802 | |
| 1803 | 'pagination_bg' => [ |
| 1804 | 'type' => 'string', |
| 1805 | 'default' => '', |
| 1806 | 'style' => [ |
| 1807 | (object) [ |
| 1808 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a:not(:hover), |
| 1809 | {{RTTPG}} .rt-pagination .pagination-list > li:not(:hover) > span, |
| 1810 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:not(:hover) > a, |
| 1811 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn {background-color:{{pagination_bg}}; }' |
| 1812 | ] |
| 1813 | ] |
| 1814 | ], |
| 1815 | |
| 1816 | 'pagination_border_color' => [ |
| 1817 | 'type' => 'object', |
| 1818 | 'default' => (object) [ |
| 1819 | 'openTpgBorder' => 1, |
| 1820 | 'color' => '', |
| 1821 | 'style' => '', |
| 1822 | 'width' => '', |
| 1823 | ], |
| 1824 | 'style' => [ |
| 1825 | (object) [ |
| 1826 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li > a:not(:hover), |
| 1827 | {{RTTPG}} .rt-pagination .pagination-list > li:not(:hover) > span, |
| 1828 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:not(:hover) > a, |
| 1829 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn' |
| 1830 | ] |
| 1831 | ] |
| 1832 | ], |
| 1833 | |
| 1834 | 'pagination_border_color_hover' => [ |
| 1835 | 'type' => 'object', |
| 1836 | 'default' => (object) [ |
| 1837 | 'openTpgBorder' => 1, |
| 1838 | 'color' => '', |
| 1839 | 'style' => '', |
| 1840 | 'width' => '', |
| 1841 | ], |
| 1842 | 'style' => [ |
| 1843 | (object) [ |
| 1844 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li:hover > a, |
| 1845 | {{RTTPG}} .rt-pagination .pagination-list > li:hover > span, |
| 1846 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:hover > a, |
| 1847 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn:hover' |
| 1848 | ] |
| 1849 | ] |
| 1850 | ], |
| 1851 | |
| 1852 | 'pagination_border_color_active' => [ |
| 1853 | 'type' => 'object', |
| 1854 | 'default' => (object) [ |
| 1855 | 'openTpgBorder' => 1, |
| 1856 | 'color' => '', |
| 1857 | 'style' => '', |
| 1858 | 'width' => '', |
| 1859 | ], |
| 1860 | 'style' => [ |
| 1861 | (object) [ |
| 1862 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > .active > a, |
| 1863 | {{RTTPG}} .rt-pagination .pagination-list > .active > span, |
| 1864 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:hover, |
| 1865 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:hover, |
| 1866 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:focus, |
| 1867 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:focus, |
| 1868 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active > a' |
| 1869 | ] |
| 1870 | ] |
| 1871 | ], |
| 1872 | |
| 1873 | 'pagination_color_hover' => [ |
| 1874 | 'type' => 'string', |
| 1875 | 'default' => '', |
| 1876 | 'style' => [ |
| 1877 | (object) [ |
| 1878 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li:hover > a, |
| 1879 | {{RTTPG}} .rt-pagination .pagination-list > li:hover > span, |
| 1880 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:hover > a, |
| 1881 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn:hover {color: {{pagination_color_hover}}; }' |
| 1882 | ] |
| 1883 | ] |
| 1884 | ], |
| 1885 | |
| 1886 | |
| 1887 | 'pagination_bg_hover' => [ |
| 1888 | 'type' => 'string', |
| 1889 | 'default' => '', |
| 1890 | 'style' => [ |
| 1891 | (object) [ |
| 1892 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > li:hover > a, |
| 1893 | {{RTTPG}} .rt-pagination .pagination-list > li:hover > span, |
| 1894 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li:hover > a, |
| 1895 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn:hover {background-color: {{pagination_bg_hover}}; }' |
| 1896 | ] |
| 1897 | ] |
| 1898 | ], |
| 1899 | |
| 1900 | |
| 1901 | 'pagination_color_active' => [ |
| 1902 | 'type' => 'string', |
| 1903 | 'default' => '', |
| 1904 | 'style' => [ |
| 1905 | (object) [ |
| 1906 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > .active > a, |
| 1907 | {{RTTPG}} .rt-pagination .pagination-list > .active > span, |
| 1908 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:hover, |
| 1909 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:hover, |
| 1910 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:focus, |
| 1911 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:focus, |
| 1912 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active > a {color: {{pagination_color_active}} !important; }' |
| 1913 | ] |
| 1914 | ] |
| 1915 | ], |
| 1916 | |
| 1917 | |
| 1918 | 'pagination_bg_active' => [ |
| 1919 | 'type' => 'string', |
| 1920 | 'default' => '', |
| 1921 | 'style' => [ |
| 1922 | (object) [ |
| 1923 | 'selector' => '{{RTTPG}} .rt-pagination .pagination-list > .active > a, |
| 1924 | {{RTTPG}} .rt-pagination .pagination-list > .active > span, |
| 1925 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:hover, |
| 1926 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:hover, |
| 1927 | {{RTTPG}} .rt-pagination .pagination-list > .active > a:focus, |
| 1928 | {{RTTPG}} .rt-pagination .pagination-list > .active > span:focus, |
| 1929 | {{RTTPG}} .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active > a {background-color: {{pagination_bg_active}} !important; }' |
| 1930 | ] |
| 1931 | ] |
| 1932 | ], |
| 1933 | |
| 1934 | |
| 1935 | //Front-end Filter Style |
| 1936 | |
| 1937 | 'front_filter_typography' => [ |
| 1938 | 'type' => 'object', |
| 1939 | 'default' => (object) [ |
| 1940 | 'openTypography' => 1, |
| 1941 | 'size' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1942 | 'spacing' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1943 | 'height' => (object) [ 'lg' => '', 'unit' => 'px' ], |
| 1944 | 'transform' => '', |
| 1945 | 'weight' => '' |
| 1946 | ], |
| 1947 | 'style' => [ |
| 1948 | (object) [ 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap, {{RTTPG}} .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide' ] |
| 1949 | ], |
| 1950 | ], |
| 1951 | |
| 1952 | 'filter_text_alignment' => [ |
| 1953 | 'type' => 'string', |
| 1954 | 'default' => '', |
| 1955 | 'style' => [ |
| 1956 | (object) [ |
| 1957 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {justify-content: {{filter_text_alignment}}; text-align: {{filter_text_alignment}}; }' |
| 1958 | ] |
| 1959 | ] |
| 1960 | ], |
| 1961 | 'layout_vertical_align' => [ |
| 1962 | 'type' => 'string', |
| 1963 | 'default' => '', |
| 1964 | 'style' => [ |
| 1965 | (object) [ |
| 1966 | 'selector' => '{{RTTPG}} .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content {justify-content: {{layout_vertical_align}}; }' |
| 1967 | ] |
| 1968 | ] |
| 1969 | ], |
| 1970 | 'filter_v_alignment' => [ |
| 1971 | 'type' => 'string', |
| 1972 | 'default' => '', |
| 1973 | ], |
| 1974 | 'filter_button_width' => [ |
| 1975 | 'type' => 'object', |
| 1976 | "default" => (object) [ |
| 1977 | 'lg' => '', |
| 1978 | 'md' => '', |
| 1979 | 'sm' => '', |
| 1980 | ], |
| 1981 | 'style' => [ |
| 1982 | (object) [ |
| 1983 | 'selector' => '{{RTTPG}} .tpg-header-wrapper.carousel .rt-layout-filter-container {flex: 0 0 {{filter_button_width}}; max-width: {{filter_button_width}};}' |
| 1984 | ] |
| 1985 | ] |
| 1986 | ], |
| 1987 | 'border_style' => [ |
| 1988 | 'type' => 'string', |
| 1989 | 'default' => '', |
| 1990 | ], |
| 1991 | 'filter_next_prev_btn' => [ |
| 1992 | 'type' => 'string', |
| 1993 | 'default' => 'visible', |
| 1994 | ], |
| 1995 | 'filter_h_alignment' => [ |
| 1996 | 'type' => 'string', |
| 1997 | 'default' => '', |
| 1998 | ], |
| 1999 | |
| 2000 | |
| 2001 | "filter_btn_radius" => [ |
| 2002 | "type" => "object", |
| 2003 | "default" => [ |
| 2004 | 'lg' => [ |
| 2005 | "isLinked" => true, |
| 2006 | "unit" => "px", |
| 2007 | "value" => '' |
| 2008 | ] |
| 2009 | ], |
| 2010 | 'style' => [ |
| 2011 | (object) [ |
| 2012 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item, |
| 2013 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap, |
| 2014 | {{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{{filter_btn_radius}}' |
| 2015 | ] |
| 2016 | ] |
| 2017 | ], |
| 2018 | |
| 2019 | 'frontend_filter_style_tabs' => [ |
| 2020 | 'type' => 'string', |
| 2021 | 'default' => 'normal', |
| 2022 | ], |
| 2023 | 'filter_color' => [ |
| 2024 | 'type' => 'string', |
| 2025 | 'default' => '', |
| 2026 | 'style' => [ |
| 2027 | (object) [ |
| 2028 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item, |
| 2029 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item, |
| 2030 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action, |
| 2031 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap, |
| 2032 | {{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {color: {{filter_color}}; } |
| 2033 | {{RTTPG}} .rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:before, |
| 2034 | {{RTTPG}} .rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:after {background-color: {{filter_color}}; }' |
| 2035 | ] |
| 2036 | ] |
| 2037 | ], |
| 2038 | |
| 2039 | 'filter_bg_color' => [ |
| 2040 | 'type' => 'string', |
| 2041 | 'default' => '', |
| 2042 | 'style' => [ |
| 2043 | (object) [ |
| 2044 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item, |
| 2045 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap, |
| 2046 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action |
| 2047 | {background-color: {{filter_bg_color}}; }' |
| 2048 | ] |
| 2049 | ] |
| 2050 | ], |
| 2051 | |
| 2052 | 'filter_border_color' => [ |
| 2053 | 'type' => 'string', |
| 2054 | 'default' => '', |
| 2055 | 'style' => [ |
| 2056 | (object) [ |
| 2057 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item, |
| 2058 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap, |
| 2059 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action, |
| 2060 | {{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input, |
| 2061 | {{RTTPG}}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container |
| 2062 | {border-color: {{filter_border_color}}; }' |
| 2063 | ] |
| 2064 | ] |
| 2065 | ], |
| 2066 | |
| 2067 | 'filter_search_bg' => [ |
| 2068 | 'type' => 'string', |
| 2069 | 'default' => '', |
| 2070 | 'style' => [ |
| 2071 | (object) [ |
| 2072 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {background-color: {{filter_search_bg}}; }' |
| 2073 | ] |
| 2074 | ] |
| 2075 | ], |
| 2076 | |
| 2077 | |
| 2078 | 'sub_menu_bg_color' => [ |
| 2079 | 'type' => 'string', |
| 2080 | 'default' => '', |
| 2081 | 'style' => [ |
| 2082 | (object) [ |
| 2083 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown {background-color: {{sub_menu_bg_color}}; }' |
| 2084 | ] |
| 2085 | ] |
| 2086 | ], |
| 2087 | |
| 2088 | 'sub_menu_color' => [ |
| 2089 | 'type' => 'string', |
| 2090 | 'default' => '', |
| 2091 | 'style' => [ |
| 2092 | (object) [ |
| 2093 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item {color: {{sub_menu_color}}; }' |
| 2094 | ] |
| 2095 | ] |
| 2096 | ], |
| 2097 | |
| 2098 | 'sub_menu_border_bottom' => [ |
| 2099 | 'type' => 'string', |
| 2100 | 'default' => '', |
| 2101 | 'style' => [ |
| 2102 | (object) [ |
| 2103 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item {border-bottom-color: {{sub_menu_border_bottom}}; }' |
| 2104 | ] |
| 2105 | ] |
| 2106 | ], |
| 2107 | |
| 2108 | 'filter_nav_color' => [ |
| 2109 | 'type' => 'string', |
| 2110 | 'default' => '', |
| 2111 | 'style' => [ |
| 2112 | (object) [ |
| 2113 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn {color: {{filter_nav_color}}; }' |
| 2114 | ] |
| 2115 | ] |
| 2116 | ], |
| 2117 | |
| 2118 | 'filter_nav_bg' => [ |
| 2119 | 'type' => 'string', |
| 2120 | 'default' => '', |
| 2121 | 'style' => [ |
| 2122 | (object) [ |
| 2123 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn {background-color: {{filter_nav_bg}}; }' |
| 2124 | ] |
| 2125 | ] |
| 2126 | ], |
| 2127 | |
| 2128 | 'filter_nav_border' => [ |
| 2129 | 'type' => 'string', |
| 2130 | 'default' => '', |
| 2131 | 'style' => [ |
| 2132 | (object) [ |
| 2133 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn {border-color: {{filter_nav_border}}; }' |
| 2134 | ] |
| 2135 | ] |
| 2136 | ], |
| 2137 | |
| 2138 | 'filter_color_hover' => [ |
| 2139 | 'type' => 'string', |
| 2140 | 'default' => '', |
| 2141 | 'style' => [ |
| 2142 | (object) [ |
| 2143 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected, |
| 2144 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover, |
| 2145 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover {color: {{filter_color_hover}}; } |
| 2146 | {{RTTPG}} .rt-filter-item-wrap.rt-sort-order-action:hover .rt-sort-order-action-arrow > span:before, |
| 2147 | {{RTTPG}} .rt-filter-item-wrap.rt-sort-order-action:hover .rt-sort-order-action-arrow > span:after{background-color: {{filter_color_hover}}; }' |
| 2148 | ] |
| 2149 | ] |
| 2150 | ], |
| 2151 | |
| 2152 | |
| 2153 | 'filter_bg_color_hover' => [ |
| 2154 | 'type' => 'string', |
| 2155 | 'default' => '', |
| 2156 | 'style' => [ |
| 2157 | (object) [ |
| 2158 | 'selector' => ' |
| 2159 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected, |
| 2160 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover, |
| 2161 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover, |
| 2162 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover {background-color: {{filter_bg_color_hover}}; }' |
| 2163 | ] |
| 2164 | ] |
| 2165 | ], |
| 2166 | |
| 2167 | 'filter_border_color_hover' => [ |
| 2168 | 'type' => 'string', |
| 2169 | 'default' => '', |
| 2170 | 'style' => [ |
| 2171 | (object) [ |
| 2172 | 'selector' => ' |
| 2173 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected, |
| 2174 | {{RTTPG}} .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover, |
| 2175 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover, |
| 2176 | {{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover, |
| 2177 | {{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:hover, |
| 2178 | {{RTTPG}}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container:hover |
| 2179 | {border-color: {{filter_border_color_hover}}; }' |
| 2180 | ] |
| 2181 | ] |
| 2182 | ], |
| 2183 | |
| 2184 | 'filter_search_bg_hover' => [ |
| 2185 | 'type' => 'string', |
| 2186 | 'default' => '', |
| 2187 | 'style' => [ |
| 2188 | (object) [ |
| 2189 | 'selector' => '{{RTTPG}} .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:hover {background-color: {{filter_search_bg_hover}}; }' |
| 2190 | ] |
| 2191 | ] |
| 2192 | ], |
| 2193 | |
| 2194 | 'sub_menu_bg_color_hover' => [ |
| 2195 | 'type' => 'string', |
| 2196 | 'default' => '', |
| 2197 | 'style' => [ |
| 2198 | (object) [ |
| 2199 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item:hover {background-color: {{sub_menu_bg_color_hover}}; }' |
| 2200 | ] |
| 2201 | ] |
| 2202 | ], |
| 2203 | |
| 2204 | 'sub_menu_color_hover' => [ |
| 2205 | 'type' => 'string', |
| 2206 | 'default' => '', |
| 2207 | 'style' => [ |
| 2208 | (object) [ |
| 2209 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item:hover {color: {{sub_menu_bg_color_hover}}; }' |
| 2210 | ] |
| 2211 | ] |
| 2212 | ], |
| 2213 | |
| 2214 | 'sub_menu_border_bottom_hover' => [ |
| 2215 | 'type' => 'string', |
| 2216 | 'default' => '', |
| 2217 | 'style' => [ |
| 2218 | (object) [ |
| 2219 | 'selector' => '{{RTTPG}} .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item:hover {border-bottom-color: {{sub_menu_border_bottom_hover}}; }' |
| 2220 | ] |
| 2221 | ] |
| 2222 | ], |
| 2223 | |
| 2224 | 'filter_nav_color_hover' => [ |
| 2225 | 'type' => 'string', |
| 2226 | 'default' => '', |
| 2227 | 'style' => [ |
| 2228 | (object) [ |
| 2229 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn:hover {color: {{filter_nav_color_hover}}; }' |
| 2230 | ] |
| 2231 | ] |
| 2232 | ], |
| 2233 | |
| 2234 | 'filter_nav_bg_hover' => [ |
| 2235 | 'type' => 'string', |
| 2236 | 'default' => '', |
| 2237 | 'style' => [ |
| 2238 | (object) [ |
| 2239 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn:hover {background-color: {{filter_nav_bg_hover}}; }' |
| 2240 | ] |
| 2241 | ] |
| 2242 | ], |
| 2243 | |
| 2244 | 'filter_nav_border_hover' => [ |
| 2245 | 'type' => 'string', |
| 2246 | 'default' => '', |
| 2247 | 'style' => [ |
| 2248 | (object) [ |
| 2249 | 'selector' => '{{RTTPG}} .rt-tpg-container .swiper-navigation .slider-btn:hover {border-color: {{filter_nav_border_hover}}; }' |
| 2250 | ] |
| 2251 | ] |
| 2252 | ], |
| 2253 | |
| 2254 | //Box Settings |
| 2255 | |
| 2256 | "box_margin" => [ |
| 2257 | "type" => "object", |
| 2258 | "default" => [ |
| 2259 | 'lg' => [ |
| 2260 | "isLinked" => true, |
| 2261 | "unit" => "px", |
| 2262 | "value" => '' |
| 2263 | ] |
| 2264 | ], |
| 2265 | 'style' => [ |
| 2266 | (object) [ |
| 2267 | 'selector' => '{{RTTPG}} .rt-tpg-container .grid_hover-layout8 .display-grid-wrapper, |
| 2268 | {{RTTPG}} .tpg-el-main-wrapper .rt-row [class*="rt-col"] |
| 2269 | {{box_margin}}' |
| 2270 | ] |
| 2271 | ] |
| 2272 | ], |
| 2273 | |
| 2274 | "box_margin_extra" => [ |
| 2275 | "type" => "object", |
| 2276 | "default" => [ |
| 2277 | 'lg' => [ |
| 2278 | "isLinked" => true, |
| 2279 | "unit" => "px", |
| 2280 | "value" => '' |
| 2281 | ] |
| 2282 | ], |
| 2283 | 'style' => [ |
| 2284 | (object) [ |
| 2285 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .rt-row [class*="rt-col"]{{box_margin_extra}}' |
| 2286 | ] |
| 2287 | ] |
| 2288 | ], |
| 2289 | //TODO: should apply condition |
| 2290 | |
| 2291 | "content_box_padding" => [ |
| 2292 | "type" => "object", |
| 2293 | "default" => [ |
| 2294 | 'lg' => [ |
| 2295 | "isLinked" => true, |
| 2296 | "unit" => "px", |
| 2297 | "value" => '' |
| 2298 | ] |
| 2299 | ], |
| 2300 | 'style' => [ |
| 2301 | (object) [ |
| 2302 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .rt-el-content-wrapper, |
| 2303 | body {{RTTPG}} .rt-tpg-container .rt-el-content-wrapper-flex .post-right-content{{content_box_padding}}' |
| 2304 | ] |
| 2305 | ] |
| 2306 | ], |
| 2307 | |
| 2308 | "content_box_padding_offset" => [ |
| 2309 | "type" => "object", |
| 2310 | "default" => [ |
| 2311 | 'lg' => [ |
| 2312 | "isLinked" => true, |
| 2313 | "unit" => "px", |
| 2314 | "value" => '' |
| 2315 | ] |
| 2316 | ], |
| 2317 | 'style' => [ |
| 2318 | (object) [ |
| 2319 | 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .offset-left .tpg-post-holder .offset-content, {{RTTPG}} .rt-tpg-container .list-layout4 .post-right-content{{content_box_padding_offset}}' |
| 2320 | ] |
| 2321 | ] |
| 2322 | ], |
| 2323 | |
| 2324 | "content_box_padding_2" => [ |
| 2325 | "type" => "object", |
| 2326 | "default" => [ |
| 2327 | 'lg' => [ |
| 2328 | "isLinked" => true, |
| 2329 | "unit" => "px", |
| 2330 | "value" => '' |
| 2331 | ] |
| 2332 | ], |
| 2333 | 'style' => [ |
| 2334 | (object) [ |
| 2335 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content{{content_box_padding_2}}' |
| 2336 | ] |
| 2337 | ] |
| 2338 | ], |
| 2339 | |
| 2340 | "box_radius" => [ |
| 2341 | "type" => "object", |
| 2342 | "default" => [ |
| 2343 | 'lg' => [ |
| 2344 | "isLinked" => true, |
| 2345 | "unit" => "px", |
| 2346 | "value" => '' |
| 2347 | ] |
| 2348 | ], |
| 2349 | 'style' => [ |
| 2350 | (object) [ |
| 2351 | 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder, body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content{{box_radius}}' |
| 2352 | ] |
| 2353 | ] |
| 2354 | ], |
| 2355 | |
| 2356 | 'is_box_border' => [ |
| 2357 | 'type' => 'string', |
| 2358 | 'default' => '', |
| 2359 | ], |
| 2360 | |
| 2361 | 'box_border_bottom' => [ |
| 2362 | 'type' => 'string', |
| 2363 | 'default' => 'disable', |
| 2364 | ], |
| 2365 | |
| 2366 | 'box_border_bottom_color' => [ |
| 2367 | 'type' => 'string', |
| 2368 | 'default' => '', |
| 2369 | 'style' => [ |
| 2370 | (object) [ |
| 2371 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder {border-bottom-color: {{box_border_bottom_color}}; }' |
| 2372 | ] |
| 2373 | ] |
| 2374 | ], |
| 2375 | |
| 2376 | 'box_border_spacing' => [ |
| 2377 | 'type' => 'object', |
| 2378 | "default" => (object) [ |
| 2379 | 'lg' => '', |
| 2380 | 'md' => '', |
| 2381 | 'sm' => '', |
| 2382 | ], |
| 2383 | 'style' => [ |
| 2384 | (object) [ |
| 2385 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder {padding-bottom: {{box_border_spacing}}; }' |
| 2386 | ] |
| 2387 | ] |
| 2388 | ], |
| 2389 | |
| 2390 | 'box_style_tabs' => [ |
| 2391 | 'type' => 'string', |
| 2392 | 'default' => 'normal', |
| 2393 | ], |
| 2394 | |
| 2395 | "box_background" => [ |
| 2396 | "type" => "object", |
| 2397 | "default" => (object) [ |
| 2398 | 'openBGColor' => 0, |
| 2399 | 'type' => 'classic', |
| 2400 | 'classic' => (object) [ |
| 2401 | 'color' => '', |
| 2402 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 2403 | 'imgProperty' => (object) [ |
| 2404 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 2405 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 2406 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 2407 | 'imgSize' => (object) [ 'lg' => '' ], |
| 2408 | ] |
| 2409 | ], |
| 2410 | 'gradient' => '' |
| 2411 | ], |
| 2412 | 'style' => [ |
| 2413 | (object) [ |
| 2414 | 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder' |
| 2415 | ] |
| 2416 | ] |
| 2417 | ], |
| 2418 | |
| 2419 | "box_background2" => [ |
| 2420 | "type" => "object", |
| 2421 | "default" => (object) [ |
| 2422 | 'openBGColor' => 0, |
| 2423 | 'type' => 'classic', |
| 2424 | 'classic' => (object) [ |
| 2425 | 'color' => '', |
| 2426 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 2427 | 'imgProperty' => (object) [ |
| 2428 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 2429 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 2430 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 2431 | 'imgSize' => (object) [ 'lg' => '' ], |
| 2432 | ] |
| 2433 | ], |
| 2434 | 'gradient' => '' |
| 2435 | ], |
| 2436 | 'style' => [ |
| 2437 | (object) [ |
| 2438 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content' |
| 2439 | ] |
| 2440 | ] |
| 2441 | ], |
| 2442 | |
| 2443 | 'box_border' => [ |
| 2444 | 'type' => 'string', |
| 2445 | 'default' => '', |
| 2446 | 'style' => [ |
| 2447 | (object) [ |
| 2448 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder {border: 1px solid {{box_border}}; }' |
| 2449 | ] |
| 2450 | ] |
| 2451 | ], |
| 2452 | |
| 2453 | 'box_box_shadow_normal' => [ |
| 2454 | 'type' => 'object', |
| 2455 | 'default' => (object) [ |
| 2456 | 'openShadow' => 1, |
| 2457 | 'width' => (object) [ |
| 2458 | 'top' => 0, |
| 2459 | 'right' => 0, |
| 2460 | 'bottom' => 0, |
| 2461 | 'left' => 0 |
| 2462 | ], |
| 2463 | 'color' => '', |
| 2464 | 'inset' => false, |
| 2465 | 'transition' => 0.5 |
| 2466 | ], |
| 2467 | 'style' => [ |
| 2468 | (object) [ 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder' ] |
| 2469 | ], |
| 2470 | ], |
| 2471 | |
| 2472 | 'box_box_shadow_hover' => [ |
| 2473 | 'type' => 'object', |
| 2474 | 'default' => (object) [ |
| 2475 | 'openShadow' => 1, |
| 2476 | 'width' => (object) [ |
| 2477 | 'top' => 0, |
| 2478 | 'right' => 0, |
| 2479 | 'bottom' => 0, |
| 2480 | 'left' => 0 |
| 2481 | ], |
| 2482 | 'color' => '', |
| 2483 | 'inset' => false, |
| 2484 | 'transition' => 0.5 |
| 2485 | ], |
| 2486 | 'style' => [ |
| 2487 | (object) [ 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover' ] |
| 2488 | ], |
| 2489 | ], |
| 2490 | |
| 2491 | 'box_box_shadow2' => [ |
| 2492 | 'type' => 'object', |
| 2493 | 'default' => (object) [ |
| 2494 | 'openShadow' => 1, |
| 2495 | 'width' => (object) [ |
| 2496 | 'top' => 0, |
| 2497 | 'right' => 0, |
| 2498 | 'bottom' => 0, |
| 2499 | 'left' => 0 |
| 2500 | ], |
| 2501 | 'color' => '', |
| 2502 | 'inset' => false, |
| 2503 | 'transition' => 0.5 |
| 2504 | ], |
| 2505 | 'style' => [ |
| 2506 | (object) [ 'selector' => 'body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content' ] |
| 2507 | ], |
| 2508 | ], |
| 2509 | |
| 2510 | 'box_box_shadow_hover2' => [ |
| 2511 | 'type' => 'object', |
| 2512 | 'default' => (object) [ |
| 2513 | 'openShadow' => 1, |
| 2514 | 'width' => (object) [ |
| 2515 | 'top' => 0, |
| 2516 | 'right' => 0, |
| 2517 | 'bottom' => 0, |
| 2518 | 'left' => 0 |
| 2519 | ], |
| 2520 | 'color' => '', |
| 2521 | 'inset' => false, |
| 2522 | 'transition' => 0.5 |
| 2523 | ], |
| 2524 | 'style' => [ |
| 2525 | (object) [ 'selector' => 'body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content' ] |
| 2526 | ], |
| 2527 | ], |
| 2528 | |
| 2529 | |
| 2530 | "box_background_hover" => [ |
| 2531 | "type" => "object", |
| 2532 | "default" => (object) [ |
| 2533 | 'openBGColor' => 0, |
| 2534 | 'type' => 'classic', |
| 2535 | 'classic' => (object) [ |
| 2536 | 'color' => '', |
| 2537 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 2538 | 'imgProperty' => (object) [ |
| 2539 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 2540 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 2541 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 2542 | 'imgSize' => (object) [ 'lg' => '' ], |
| 2543 | ] |
| 2544 | ], |
| 2545 | 'gradient' => '' |
| 2546 | ], |
| 2547 | 'style' => [ |
| 2548 | (object) [ |
| 2549 | 'selector' => 'body {{RTTPG}} .tpg-el-main-wrapper .tpg-post-holder:hover' |
| 2550 | ] |
| 2551 | ] |
| 2552 | ], |
| 2553 | |
| 2554 | "box_background_hover2" => [ |
| 2555 | "type" => "object", |
| 2556 | "default" => (object) [ |
| 2557 | 'openBGColor' => 0, |
| 2558 | 'type' => 'classic', |
| 2559 | 'classic' => (object) [ |
| 2560 | 'color' => '', |
| 2561 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 2562 | 'imgProperty' => (object) [ |
| 2563 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 2564 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 2565 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 2566 | 'imgSize' => (object) [ 'lg' => '' ], |
| 2567 | ] |
| 2568 | ], |
| 2569 | 'gradient' => '' |
| 2570 | ], |
| 2571 | 'style' => [ |
| 2572 | (object) [ |
| 2573 | 'selector' => 'body {{RTTPG}} .rt-tpg-container .slider-layout13 .rt-holder .post-content' |
| 2574 | ] |
| 2575 | ] |
| 2576 | ], |
| 2577 | 'box_border_hover' => [ |
| 2578 | 'type' => 'string', |
| 2579 | 'default' => '', |
| 2580 | ], |
| 2581 | |
| 2582 | "tpg_wrapper_padding" => [ |
| 2583 | "type" => "object", |
| 2584 | "default" => [ |
| 2585 | 'lg' => [ |
| 2586 | "isLinked" => false, |
| 2587 | "unit" => "px", |
| 2588 | "value" => '' |
| 2589 | ] |
| 2590 | ], |
| 2591 | 'style' => [ |
| 2592 | (object) [ |
| 2593 | 'selector' => 'body {{RTTPG}} .rt-tpg-container {{tpg_wrapper_padding}}' |
| 2594 | ] |
| 2595 | ] |
| 2596 | ], |
| 2597 | |
| 2598 | "tpg_wrapper_radius" => [ |
| 2599 | "type" => "object", |
| 2600 | "default" => [ |
| 2601 | 'lg' => [ |
| 2602 | "isLinked" => true, |
| 2603 | "unit" => "px", |
| 2604 | "value" => '' |
| 2605 | ] |
| 2606 | ], |
| 2607 | 'style' => [ |
| 2608 | (object) [ |
| 2609 | 'selector' => 'body {{RTTPG}} {{tpg_wrapper_radius}}' |
| 2610 | ] |
| 2611 | ] |
| 2612 | ], |
| 2613 | |
| 2614 | "tpg_wrapper_margin" => [ |
| 2615 | "type" => "object", |
| 2616 | "default" => [ |
| 2617 | 'lg' => [ |
| 2618 | "isLinked" => false, |
| 2619 | "unit" => "px", |
| 2620 | "value" => '', |
| 2621 | ] |
| 2622 | ], |
| 2623 | 'style' => [ |
| 2624 | (object) [ |
| 2625 | 'selector' => 'body {{RTTPG}} .rt-tpg-container {{tpg_wrapper_margin}}' |
| 2626 | ] |
| 2627 | ] |
| 2628 | ], |
| 2629 | |
| 2630 | 'tpg_wrapper_width' => [ |
| 2631 | 'type' => 'object', |
| 2632 | "default" => (object) [ |
| 2633 | 'lg' => '', |
| 2634 | 'md' => '', |
| 2635 | 'sm' => '', |
| 2636 | ], |
| 2637 | 'style' => [ |
| 2638 | (object) [ |
| 2639 | 'selector' => 'body {{RTTPG}} .rt-tpg-container{max-width:{{tpg_wrapper_width}}; width:100%;}' |
| 2640 | ] |
| 2641 | ] |
| 2642 | ], |
| 2643 | |
| 2644 | "tpg_wrapper_background" => [ |
| 2645 | "type" => "object", |
| 2646 | "default" => (object) [ |
| 2647 | 'openBGColor' => 0, |
| 2648 | 'type' => 'classic', |
| 2649 | 'classic' => (object) [ |
| 2650 | 'color' => '', |
| 2651 | 'img' => (object) [ 'imgURL' => '', 'imgID' => '' ], |
| 2652 | 'imgProperty' => (object) [ |
| 2653 | 'imgPosition' => (object) [ 'lg' => '' ], |
| 2654 | 'imgAttachment' => (object) [ 'lg' => '' ], |
| 2655 | 'imgRepeat' => (object) [ 'lg' => '' ], |
| 2656 | 'imgSize' => (object) [ 'lg' => '' ], |
| 2657 | ] |
| 2658 | ], |
| 2659 | 'gradient' => '' |
| 2660 | ], |
| 2661 | 'style' => [ |
| 2662 | (object) [ |
| 2663 | 'selector' => 'body {{RTTPG}}' |
| 2664 | ] |
| 2665 | ] |
| 2666 | ], |
| 2667 | |
| 2668 | 'scroll_bar_color' => [ |
| 2669 | 'type' => 'string', |
| 2670 | 'default' => '', |
| 2671 | 'style' => [ |
| 2672 | (object) [ |
| 2673 | 'selector' => ' |
| 2674 | {{RTTPG}} .tpg-el-main-wrapper .swiper-thumb-pagination .swiper-pagination-progressbar-fill {background-color: {{scroll_bar_color}}; } |
| 2675 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before {background-color: {{scroll_bar_color}}; } |
| 2676 | ' |
| 2677 | ] |
| 2678 | ] |
| 2679 | ], |
| 2680 | |
| 2681 | 'scroll_bar_bg_color' => [ |
| 2682 | 'type' => 'string', |
| 2683 | 'default' => '', |
| 2684 | 'style' => [ |
| 2685 | (object) [ |
| 2686 | 'selector' => ' |
| 2687 | {{RTTPG}} .tpg-el-main-wrapper .slider-thumb-main-wrapper .swiper-pagination-progressbar {background-color: {{scroll_bar_bg_color}}; } |
| 2688 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper::before {background-color: {{scroll_bar_bg_color}};opacity:1; } |
| 2689 | ' |
| 2690 | ] |
| 2691 | ] |
| 2692 | ], |
| 2693 | |
| 2694 | 'thumb_font_color' => [ |
| 2695 | 'type' => 'string', |
| 2696 | 'default' => '', |
| 2697 | 'style' => [ |
| 2698 | (object) [ |
| 2699 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content *, |
| 2700 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content * {color: {{thumb_font_color}}; }' |
| 2701 | ] |
| 2702 | ] |
| 2703 | ], |
| 2704 | |
| 2705 | 'slider_thumb_bg_active' => [ |
| 2706 | 'type' => 'string', |
| 2707 | 'default' => '', |
| 2708 | 'style' => [ |
| 2709 | (object) [ |
| 2710 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide:hover .p-thumbnail img, |
| 2711 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide-thumb-active .p-thumbnail img, |
| 2712 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail {background-color: {{slider_thumb_bg_active}}; }' |
| 2713 | ] |
| 2714 | ] |
| 2715 | ], |
| 2716 | |
| 2717 | 'thumb_wrapper_bg' => [ |
| 2718 | 'type' => 'string', |
| 2719 | 'default' => '', |
| 2720 | 'style' => [ |
| 2721 | (object) [ |
| 2722 | 'selector' => '{{RTTPG}} .tpg-el-main-wrapper .slider-thumb-main-wrapper, |
| 2723 | {{RTTPG}} .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {background-color: {{thumb_wrapper_bg}}; }' |
| 2724 | ] |
| 2725 | ] |
| 2726 | ], |
| 2727 | |
| 2728 | 'enable_loader' => [ |
| 2729 | 'type' => 'string', |
| 2730 | 'default' => 'disable', |
| 2731 | ], |
| 2732 | |
| 2733 | ]; |
| 2734 | |
| 2735 | return apply_filters( 'rttpg_guten_style_attribute', $style_attribute ); |
| 2736 | } |
| 2737 | } |