Changeset 195882
- Timestamp:
- 07/04/2023 11:53:20 AM (2 years ago)
- Location:
- xolo/2.3
- Files:
-
- 1 added
- 8 edited
- 1 copied
-
. (copied) (copied from xolo/2.0)
-
assets/css/main.css (modified) (6 diffs)
-
assets/css/widgets.css (modified) (3 diffs)
-
assets/css/woo.css (added)
-
changelog.txt (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
inc/dynamic_style.php (modified) (46 diffs)
-
inc/enqueue.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
xolo/2.3/assets/css/main.css
r188922 r195882 1314 1314 font-weight: 500; 1315 1315 line-height: 1.1; 1316 text-align: left; 1316 1317 } 1317 1318 … … 1383 1384 .comments-title { 1384 1385 margin-bottom: 1.5rem; 1385 text-align: center;1386 text-align: left; 1386 1387 } 1387 1388 … … 1389 1390 .comments-title h3 { 1390 1391 font-weight: 500; 1392 text-align: left; 1391 1393 } 1392 1394 … … 1467 1469 .comment-content p { 1468 1470 margin: 0; 1471 text-align: left; 1469 1472 } 1470 1473 … … 1555 1558 .comment-reply-title { 1556 1559 font-weight: 500; 1557 text-align: center; 1560 text-align: left; 1561 } 1562 1563 1564 .comment-form p { 1565 text-align: left; 1558 1566 } 1559 1567 … … 1938 1946 border-radius:inherit; 1939 1947 } */ 1948 1949 1950 1951 1952 /* extra */ 1953 .calendar_wrap .wp-calendar-nav a { 1954 background: none; 1955 } 1956 1957 .header-top-info .widget-right .widget.widget_social_widget:first-child li a:hover, 1958 .header-top-info .widget-right .widget.widget_social_widget:first-child li a:focus-within 1959 { 1960 background: -webkit-linear-gradient(-90deg, #FF9300 10%, #FF0056 100%) !important; 1961 -webkit-text-fill-color: #fff; 1962 -webkit-background-clip: text; 1963 } -
xolo/2.3/assets/css/widgets.css
r139673 r195882 103 103 } 104 104 105 .header .widget:not(.widget_social_widget) li:last-child , .tagcloud a:last-child{105 .header .widget:not(.widget_social_widget) li:last-child { 106 106 margin: 0; 107 107 } … … 527 527 528 528 .widget_social_widget li a { 529 width: 45px;529 /* width: 45px; */ 530 530 text-align: center; 531 line-height: 45px; 531 /* line-height: 45px; */ 532 } 533 534 .widget_social_widget li a i { 535 vertical-align: middle; 532 536 } 533 537 … … 930 934 color: #fff; 931 935 border-color: #fff; 932 border-left-color: #492cdd;936 /* border-left-color: #492cdd; */ 933 937 } 934 938 -
xolo/2.3/changelog.txt
r188922 r195882 1 @version 2.3 2 * Fixed: Footer Widget Link Color Issue 3 * Removed: Commented Code From Dynamic Css 4 5 @version 2.2 6 * Fixed: Styling Issues 7 * Added: Woo Files 8 9 @version 2.1 10 * Updated : Screenshot 11 1 12 @version 2.0 2 13 * Updated : Added Gradiant Color Picker Setting -
xolo/2.3/functions.php
r145411 r195882 6 6 * Define Constants 7 7 */ 8 define( 'XOLO_THEME_VERSION', ' 1.0.68' );8 define( 'XOLO_THEME_VERSION', '2.3' ); 9 9 10 10 // Root path/URI. -
xolo/2.3/inc/dynamic_style.php
r188922 r195882 6 6 7 7 $output_css = ''; 8 /**9 * Colors10 */11 /* $xolo_link_color = get_theme_mod('xolo_link_color','#492cdd');12 $xolo_link_hov_color = get_theme_mod('xolo_link_hov_color','#381CC5');13 $xolo_text_color = get_theme_mod('xolo_text_color','#ff9300');14 $xolo_theme_color = get_theme_mod('theme_color','#492cdd');15 16 if($xolo_link_color) {17 $output_css .=" a {18 color: " .esc_attr($xolo_link_color). ";19 }\n";20 }21 22 if($xolo_link_hov_color) {23 $output_css .=" a:hover, a:focus {24 color: " .esc_attr($xolo_link_hov_color). ";25 }\n";26 }27 28 if($xolo_text_color) {29 $output_css .=" .widget_none .widget_title, p {30 color: " .esc_attr($xolo_text_color). ";31 }\n";32 }33 34 if($xolo_theme_color) {35 $output_css .="36 ::selection,.sidebar .calendar_wrap table th, .sidebar input[type='submit'],37 .footer .calendar_wrap table th, .footer .widget input[type='submit'],38 input[type=radio]:checked:before {39 background-color:" .esc_attr($xolo_theme_color). ";40 }41 input[type='text']:focus, input[type='email']:focus, input[type='url']:focus, input[type='password']:focus, input[type='search']:focus, input[type='number']:focus, input[type='tel']:focus, input[type='range']:focus, input[type='date']:focus, input[type='month']:focus, input[type='week']:focus, input[type='time']:focus, input[type='datetime']:focus, input[type='datetime-local']:focus, input[type='color']:focus, textarea:focus, select:focus {42 background-image: linear-gradient(" .esc_attr($xolo_theme_color). ", " .esc_attr($xolo_theme_color). "), linear-gradient(#e9e9ea, #e9e9ea);43 }44 45 div.wpforms-container-full .wpforms-form button[type='submit']:hover,46 div.wpforms-container-full .wpforms-form button[type='submit']:focus,47 button:hover, button:focus, input[type='button']:hover,48 input[type='button']:focus, input[type='reset']:hover,49 input[type='reset']:focus, input[type='submit']:hover,50 input[type='submit']:focus, .bt-primary:hover, .bt-primary:focus,51 .prealoader, input[type='button'],52 button, input[type='reset'], input[type='submit'],53 .bt-primary, .badge.badge-primary, .header-three .menubar .badge.badge-primary, table th {54 background: " .esc_attr($xolo_theme_color). ";55 }56 .badge.badge-primary:before, .header-three .menubar .badge.badge-primary:before {57 border-right-color: " .esc_attr($xolo_theme_color). ";58 }59 60 .edd-submit, [type=submit].edd-submit,61 input[type=checkbox], input[type=radio],62 form[id*=give-form] #give-gateway-radio-list>li input[type=radio],63 form[id*=give-form] #give-gateway-radio-list>li input[type=checkbox],64 div.wpforms-container-full .wpforms-form input[type=radio],65 div.wpforms-container-full .wpforms-form input[type=checkbox],66 div.wpforms-container-full .wpforms-form button[type='submit']:hover,67 div.wpforms-container-full .wpforms-form button[type='submit']:focus,68 button:hover, button:focus, input[type='button']:hover,69 input[type='button']:focus, input[type='reset']:hover,70 input[type='reset']:focus, input[type='submit']:hover,71 input[type='submit']:focus, .bt-primary:hover, .bt-primary:focus,72 div.wpforms-container-full .wpforms-form button[type=submit],73 button, input[type='button'], input[type='reset'], input[type='submit'],74 .bt-primary,.sidebar .calendar_wrap table th, .sidebar input[type='submit'],75 .sidebar .calendar_wrap table caption, .footer .calendar_wrap table th,76 .footer .widget input[type='submit'], .footer .calendar_wrap table caption {77 border-color: " .esc_attr($xolo_theme_color). ";78 }79 input[type=checkbox]:checked:before,80 em, cite, q, form.xl-search-form:not(.xl-search-normal) .xl-search-submit:hover, form.xl-search-form:not(.xl-search-normal) .xl-search-submit:focus, .calendar_wrap table tbody #today, .calendar_wrap table caption, .calendar_wrap table td a, .calendar_wrap .wp-calendar-nav a {81 color: " .esc_attr($xolo_theme_color). ";82 }83 blockquote, .footer div.tagcloud a {84 border-left-color: " .esc_attr($xolo_theme_color). ";85 }\n";86 } */87 88 8 89 9 /** … … 425 345 }\n"; 426 346 427 428 429 /**430 * Search431 */432 /* $xolo_hdr_search_color = get_theme_mod('hdr_search_color');433 $xolo_hdr_search_bg_color = get_theme_mod('hdr_search_bg_color');434 */435 436 /**437 * Header Button438 */439 /* $xolo_hdr_btn_color = get_theme_mod('hdr_btn_color');440 $xolo_hdr_btn_bg_color = get_theme_mod('hdr_btn_bg_color');441 $hdr_btn_brdr_clr = get_theme_mod('hdr_btn_brdr_clr');442 443 444 if($xolo_hdr_btn_color !== '' || $xolo_hdr_btn_bg_color !== '' || $hdr_btn_brdr_clr !== '' || $xolo_hdr_btn_radius !== '') {445 $output_css .=".header .header_btn a.bt-primary, .header .header_btn a.bt-primary:hover, .header .header_btn a.bt-primary:focus {446 color: " .esc_attr($xolo_hdr_btn_color). ";447 background-color: " .esc_attr($xolo_hdr_btn_bg_color). ";448 border-radius: " .esc_attr($xolo_hdr_btn_radius). "px;449 border-color: " .esc_attr($hdr_btn_brdr_clr). ";450 border-width: " .esc_attr($xolo_hdr_btn_width). "px;451 }\n";452 } */453 347 454 348 /** … … 574 468 575 469 576 /* if($xolo_hdr_search_color !== '') {577 $output_css .="[class*='header-'] .header .search-button .header-search-toggle i {578 color: " .esc_attr($xolo_hdr_search_color). ";579 }\n";580 }581 */582 583 470 /** 584 471 * search color Start … … 667 554 668 555 669 /* if($xolo_hdr_search_bdr_radius !== '') {670 $output_css .=" .search-button #view-search-btn {671 border-radius: " .esc_attr($xolo_hdr_search_bdr_radius). "px;672 border-color: " .esc_attr($xolo_hdr_search_bg_color). ";673 }\n";674 } */675 676 556 /** 677 557 * Logo Width … … 686 566 * Toggle Style 687 567 */ 688 /* $xolo_mobile_top_clr = get_theme_mod('mobile_top_clr','#ffffff');689 $xolo_tgl_btn_clr = get_theme_mod('tgl_btn_clr');690 691 if($xolo_header_menu_break !== '') {692 $output_css .=" @media (max-width: " .esc_attr($xolo_header_menu_break). "px) {693 div.theme-mobile-nav {694 display: block;695 }696 div.xl-nav-area {697 display: none;698 }.header .theme-mobile-menu, .header .mobile-logo {699 display: flex!important;700 -webkit-flex-wrap: wrap;701 flex-wrap: wrap;702 -webkit-flex-direction: row;703 flex-direction: row;704 -webkit-align-items: center;705 align-items: center;706 }.header .mobile-logo {707 -webkit-flex-direction: column;708 flex-direction: column;709 }.header-widget-info{710 display: none!important;711 }.header .theme-mobile-nav {712 background: " .esc_attr($xolo_mobile_top_clr). ";713 }.mobile-menu li > span{714 display: block!important;715 }}\n";716 }717 718 */719 720 721 568 722 569 /** … … 780 627 */ 781 628 782 /*783 if($xolo_tgl_btn_clr !== '') {784 $output_css .=".menu-toggle-wrap .hamburger-menu div {785 background: " .esc_attr($xolo_tgl_btn_clr). ";786 }\n";787 788 $output_css .="span.tgl-lbl {789 color: " .esc_attr($xolo_tgl_btn_clr). ";790 }.mobile-menu{791 background: " .esc_attr($xolo_tgl_btn_clr). ";792 }\n";793 }794 */795 796 629 $xolo_theme_tgl_btn_clr = get_theme_mod('xolo_theme_tgl_btn_clr','theme_tgl_btn_clr'); 797 630 $xolo_theme_tgl_btn_clr_background = get_theme_mod('xolo_theme_tgl_btn_clr_background','#ff0056'); … … 851 684 852 685 /** 853 * Mobile Menu Color854 */855 /* $xolo_mbl_menu_color = get_theme_mod('mbl_menu_color','#ff9300');856 $xolo_mbl_menu_hover_color = get_theme_mod('mbl_menu_hover_color','#492cdd');857 $xolo_mbl_menu_bg_color = get_theme_mod('mbl_menu_bg_color','#ffffff');858 859 if($xolo_mbl_menu_color !== '') {860 $output_css .=".theme-mobile-menu div.mobile-menu li > a {861 color: " .esc_attr($xolo_mbl_menu_color). ";862 }span.close-menu:before, span.close-menu:after{863 background-color: " .esc_attr($xolo_mbl_menu_color). ";864 }\n";865 }866 867 /**868 686 * Mobile Menu color Start 869 687 */ … … 918 736 /* Mobile Menu color END */ 919 737 920 /* if($xolo_mbl_menu_hover_color !== '') {921 $output_css .=".theme-mobile-menu div.mobile-menu .dropdown.current > a, .theme-mobile-menu div.mobile-menu a:hover, .theme-mobile-menu div.mobile-menu a:focus, .theme-mobile-menu div.mobile-menu li > span a {922 color: " .esc_attr($xolo_mbl_menu_hover_color). ";923 }\n";924 }925 926 738 927 739 /** … … 965 777 /* Mobile Menu Hover color END */ 966 778 967 968 969 970 971 /*if($xolo_mbl_menu_bg_color !== '') {972 $output_css .=".theme-mobile-menu div.mobile-menu {973 background-color: " .esc_attr($xolo_mbl_menu_bg_color). ";974 }\n";975 } */976 977 978 779 /** 979 780 * Mobile Menu Background color Start … … 1016 817 /* Mobile Menu Background color END */ 1017 818 1018 1019 1020 /**1021 * Header Global Color1022 */1023 /* $xolo_menu_link_color = get_theme_mod('xolo_menu_link_color');1024 $xolo_menu_link_hov_color = get_theme_mod('xolo_menu_link_hov_color');1025 $xolo_menu_drp_link_color = get_theme_mod('xolo_menu_drp_link_color');1026 $xolo_menu_drp_link_hov_color = get_theme_mod('xolo_menu_drp_link_hov_color');1027 $xolo_menu_drp_bg_color = get_theme_mod('xolo_menu_drp_bg_color');1028 $xolo_menu_drp_brder_color = get_theme_mod('xolo_menu_drp_brder_color');1029 $xolo_header_bg_color = get_theme_mod('xolo_header_bg_color');1030 1031 $xolo_header_color = get_theme_mod('header_color','#492cdd');1032 1033 if($xolo_header_bg_color !== '') {1034 $output_css .="body .header, body[class*='header-'].page .header, .header-four .header {1035 background: " .esc_attr($xolo_header_bg_color). ";1036 }\n";1037 }1038 1039 if($xolo_menu_link_color !== '') {1040 $output_css .="1041 body .header .menubar ul.menu-wrap > li.menu-item > a,1042 .header-two.xolo-transparent .navigation:not(.sticky-menu) .menu-wrap > .menu-item:not(.active):not(.focus):not(:hover) > a {1043 color: " .esc_attr($xolo_menu_link_color). ";1044 }\n";1045 }1046 1047 if($xolo_menu_link_hov_color !== '') {1048 $output_css .="1049 [class*='header-']:matches(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {1050 color: ".esc_attr($xolo_menu_link_hov_color).";1051 }1052 [class*='header-']:-moz-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {1053 color: ".esc_attr($xolo_menu_link_hov_color).";1054 }1055 [class*='header-']:-webkit-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {1056 color: ".esc_attr($xolo_menu_link_hov_color).";1057 }1058 1059 [class*='header-']:matches(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {1060 background-color: ".esc_attr($xolo_menu_link_hov_color).";1061 }1062 [class*='header-']:-moz-any(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {1063 background-color: ".esc_attr($xolo_menu_link_hov_color).";1064 }1065 [class*='header-']:-webkit-any(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {1066 background-color: ".esc_attr($xolo_menu_link_hov_color).";1067 }1068 1069 [class*='header-']:matches(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:matches(li,.dropdown) > a:after {1070 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1071 }1072 [class*='header-']:-moz-any(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:-moz-any(li,.dropdown) > a:after {1073 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1074 }1075 [class*='header-']:-webkit-any(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:-webkit-any(li,.dropdown) > a:after {1076 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1077 }1078 1079 [class*='header-']:matches(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {1080 color: #ffffff;1081 }1082 [class*='header-']:-moz-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {1083 color: #ffffff;1084 }1085 [class*='header-']:-webkit-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {1086 color: #ffffff;1087 }1088 1089 [class*='header-']:matches(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:matches(.btn-home.current) > a.nav-link {1090 color: ".esc_attr($xolo_menu_link_hov_color).";1091 }1092 [class*='header-']:-moz-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a.nav-link {1093 color: ".esc_attr($xolo_menu_link_hov_color).";1094 }1095 [class*='header-']:-webkit-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a.nav-link {1096 color: ".esc_attr($xolo_menu_link_hov_color).";1097 }1098 1099 [class*='header-']:matches(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:matches(.btn-home.current) > a {1100 background-color: ".esc_attr($xolo_menu_link_hov_color).";1101 }1102 [class*='header-']:-moz-any(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a {1103 background-color: ".esc_attr($xolo_menu_link_hov_color).";1104 }1105 [class*='header-']:-webkit-any(.active-one, .active-five):not(.header-three) .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a {1106 background-color: ".esc_attr($xolo_menu_link_hov_color).";1107 }1108 1109 [class*='header-']:matches(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:matches(.btn-home.current) > a.nav-link:after {1110 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1111 }1112 [class*='header-']:-moz-any(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a.nav-link:after {1113 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1114 }1115 [class*='header-']:-webkit-any(.active-one, .active-two, .active-three, .active-four, .active-five) .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a.nav-link:after {1116 border-bottom-color: ".esc_attr($xolo_menu_link_hov_color).";1117 }1118 1119 [class*='header-']:matches(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li.menu-item:matches(.btn-home.current) > a {1120 color: #ffffff;1121 }1122 [class*='header-']:-moz-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li.menu-item:-moz-any(.btn-home.current) > a {1123 color: #ffffff;1124 }1125 [class*='header-']:-webkit-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .menubar .menu-wrap > li.menu-item:-webkit-any(.btn-home.current) > a {1126 color: #ffffff;1127 }1128 [class*='header-']:matches(.header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li.menu-item:matches(.btn-home.current) > a {1129 background-color: #ffffff;1130 }1131 [class*='header-']:-moz-any(.header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li.menu-item:-moz-any(.btn-home.current) > a {1132 background-color: #ffffff;1133 }1134 [class*='header-']:-webkit-any(.header-three.active-one, .header-three.active-five) .menubar .menu-wrap > li.menu-item:-webkit-any(.btn-home.current) > a {1135 background-color: #ffffff;1136 }1137 \n";1138 }1139 1140 if($xolo_menu_drp_link_color !== '') {1141 $output_css .="1142 .footer ul.menu-wrap ul.dropdown-menu li a,1143 .footer-copyright .widget_nav_menu ul.sub-menu li a,1144 .header .widget_nav_menu ul.sub-menu li a,1145 div.navigation .menubar ul.dropdown-menu li a.dropdown-item {1146 color: " .esc_attr($xolo_menu_drp_link_color). ";1147 }1148 \n";1149 }1150 1151 if($xolo_menu_drp_link_hov_color !== '') {1152 $output_css .="1153 .footer ul.menu-wrap ul.dropdown-menu li:hover > a,1154 .footer ul.menu-wrap ul.dropdown-menu li.focus > a,1155 .footer-copyright .widget_nav_menu ul.sub-menu li:hover > a,1156 .footer-copyright .widget_nav_menu ul.sub-menu li.focus > a,1157 .header .widget_nav_menu ul.sub-menu li:hover > a,1158 .header .widget_nav_menu ul.sub-menu li.focus > a,1159 div.navigation .menubar ul.dropdown-menu li:hover > a,1160 div.navigation .menubar ul.dropdown-menu li.focus > a {1161 background-color : " .esc_attr($xolo_menu_drp_link_hov_color). ";1162 }\n";1163 }1164 1165 if($xolo_menu_drp_bg_color !== '') {1166 $output_css .="1167 .header .widget_nav_menu ul.sub-menu, .navigation .menubar ul.dropdown-menu {1168 background-color: " .esc_attr($xolo_menu_drp_bg_color). ";1169 }\n";1170 }1171 1172 if($xolo_menu_drp_brder_color !== '') {1173 $output_css .="1174 .header .widget_nav_menu ul.sub-menu, .header .navigation .menubar .dropdown-menu {1175 border-color: " .esc_attr($xolo_menu_drp_brder_color). ";1176 }\n";1177 } */1178 1179 1180 1181 819 /** 1182 820 * Menu Link color Start … … 1788 1426 } 1789 1427 /* Header Background Color END */ 1790 1791 1792 /* $xolo_header_color = get_theme_mod('header_color','#492cdd');1793 if($xolo_header_color !== '') {1794 $output_css .="1795 .header .calendar_wrap table caption,1796 .header .calendar_wrap table th,1797 .header-widget:not(.wrap-right) .emergency-call:before {1798 border-color: ".esc_attr($xolo_header_color).";1799 }1800 .header-five .header, .header.header-five,1801 .header .calendar_wrap table th,1802 .wrap-right .emergency-call, .header-widget:not(.wrap-right) .emergency-call:before,1803 .header-sidebar-toggle.active span, .header-sidebar-toggle.active span:before, .header-sidebar-toggle.active span:after, .hamburger-menu > a:hover div, .hamburger-menu > a:focus div, .header-three .navigation:not(.pagination) {1804 background-color: ".esc_attr($xolo_header_color).";1805 }1806 .header input[type='search']:focus {1807 background-image: linear-gradient(".esc_attr($xolo_header_color).", ".esc_attr($xolo_header_color)."), linear-gradient(#e9e9ea, #e9e9ea);1808 }1809 1810 .header .calendar_wrap table tbody a,1811 [class^='header-']:not(.header-four) .widget_nav_menu .menu > li:hover > a,1812 [class^='header-']:not(.header-four) .widget_nav_menu .menu > li.focus > a,1813 .mobile-menu li > span, .mobile-menu .dropdown.current > a,1814 .mobile-menu a:hover, .mobile-menu ul > li.active > a,1815 .mobi-head-top .header-widget .widget_social_widget li a:hover i,1816 .view-search form, .p-menu, .header-info .contact-icon i,1817 [class^='header-']:not(.header-four) .header-widget .widget:not(.widget_social_widget) i,1818 .mobi-head-top .header-widget .widget:not(.widget_social_widget) i,1819 .header .widget a:focus,1820 .header .widget a:hover,1821 .header .widget a:active,1822 .header .widget_social_widget li a:hover i, .widget_social_widget li a:focus i,1823 .header [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a:before {1824 color: " .esc_attr($xolo_header_color). ";1825 }1826 .view-search form .form-control {1827 border-bottom-color: " .esc_attr($xolo_header_color). ";1828 }1829 .cart-wrapper .shopping-cart {1830 border-top-color: " .esc_attr($xolo_header_color). ";1831 }1832 .header div.tagcloud a {1833 border-left-color: " .esc_attr($xolo_header_color). ";1834 }1835 \n";1836 } */1837 1838 1428 1839 1429 /** … … 1966 1556 } 1967 1557 1968 /**1969 * Sticky Header Color1970 */1971 /* $xolo_sticky_menu_bg_color = get_theme_mod('xolo_sticky_menu_bg_color');1972 $xolo_sticky_menu_link_color = get_theme_mod('xolo_sticky_menu_link_color');1973 $xolo_sticky_menu_link_hov_color = get_theme_mod('xolo_sticky_menu_link_hov_color');1974 */1975 1976 1977 /* if($xolo_sticky_menu_bg_color !== '') {1978 $output_css .="body .header .navigation:not(.pagination).sticky-menu, body .header .sticky-menu {1979 background-color: " .esc_attr($xolo_sticky_menu_bg_color). ";1980 }\n";1981 } */1982 1983 1558 /** 1984 1559 * Sticky Header Background Color Start … … 2019 1594 } 2020 1595 /* Sticky Header Background Color END */ 2021 2022 /* if($xolo_sticky_menu_link_color !== '') { 2023 $output_css .=" 2024 body .header .sticky-nav.sticky-menu .menubar ul.menu-wrap > li > a,body .header .navigation.sticky-menu .menubar ul.menu-wrap > li > a { 2025 color: " .esc_attr($xolo_sticky_menu_link_color). "; 2026 } 2027 \n"; 2028 } */ 2029 1596 2030 1597 2031 1598 /** … … 2068 1635 /* Sticky Header Link Color END */ 2069 1636 2070 /*if($xolo_sticky_menu_link_hov_color !== '') {2071 $output_css .="2072 .header .sticky-menu .site-title {2073 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2074 }2075 [class*='header-']:matches(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {2076 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2077 }2078 [class*='header-']:-moz-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {2079 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2080 }2081 [class*='header-']:-webkit-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {2082 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2083 }2084 2085 [class*='header-']:matches(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {2086 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2087 }2088 [class*='header-']:-moz-any(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {2089 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2090 }2091 [class*='header-']:-webkit-any(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {2092 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2093 }2094 2095 [class*='header-']:matches(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:matches(li,.dropdown) > a:after {2096 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2097 }2098 [class*='header-']:-moz-any(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(li,.dropdown) > a:after {2099 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2100 }2101 [class*='header-']:-webkit-any(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(li,.dropdown) > a:after {2102 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2103 }2104 2105 [class*='header-']:matches(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {2106 color: #ffffff;2107 }2108 [class*='header-']:-moz-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {2109 color: #ffffff;2110 }2111 [class*='header-']:-webkit-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {2112 color: #ffffff;2113 }2114 [class*='header-']:matches(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:matches(:hover, :focus, .focus, .active) > a {2115 background-color: #ffffff;2116 }2117 [class*='header-']:-moz-any(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(:hover, :focus, .focus, .active) > a {2118 background-color: #ffffff;2119 }2120 [class*='header-']:-webkit-any(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(:hover, :focus, .focus, .active) > a {2121 background-color: #ffffff;2122 }2123 2124 [class*='header-']:matches(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:matches(.btn-home.current) > a {2125 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2126 }2127 [class*='header-']:-moz-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a {2128 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2129 }2130 [class*='header-']:-webkit-any(.active-default, .active-two, .active-three, .active-four, .active-six, .header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a {2131 color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2132 }2133 2134 [class*='header-']:matches(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:matches(.btn-home.current) > a {2135 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2136 }2137 [class*='header-']:-moz-any(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a {2138 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2139 }2140 [class*='header-']:-webkit-any(.active-one, .active-five):not(.header-three) .sticky-menu .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a {2141 background-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2142 }2143 2144 [class*='header-']:matches(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:matches(.btn-home.current) > a:after {2145 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2146 }2147 [class*='header-']:-moz-any(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:-moz-any(.btn-home.current) > a:after {2148 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2149 }2150 [class*='header-']:-webkit-any(.active-one, .active-two, .active-three, .active-four, .active-five) .sticky-menu .menubar .menu-wrap > li:-webkit-any(.btn-home.current) > a:after {2151 border-bottom-color: ".esc_attr($xolo_sticky_menu_link_hov_color).";2152 }2153 2154 [class*='header-']:matches(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:matches(.btn-home.current) > a {2155 color: #ffffff;2156 }2157 [class*='header-']:-moz-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:-moz-any(.btn-home.current) > a {2158 color: #ffffff;2159 }2160 [class*='header-']:-webkit-any(.header-default.active-one, .header-default.active-five, .header-two.active-one, .header-two.active-five, .header-four.active-one, .header-four.active-five, .header-five.active-one, .header-five.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:-webkit-any(.btn-home.current) > a {2161 color: #ffffff;2162 }2163 [class*='header-']:matches(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:matches(.btn-home.current) > a {2164 background-color: #ffffff;2165 }2166 [class*='header-']:-moz-any(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:-moz-any(.btn-home.current) > a {2167 background-color: #ffffff;2168 }2169 [class*='header-']:-webkit-any(.header-three.active-one, .header-three.active-five) .sticky-menu .menubar .menu-wrap > li.menu-item:-webkit-any(.btn-home.current) > a {2170 background-color: #ffffff;2171 }2172 \n";2173 } */2174 2175 2176 1637 /** 2177 1638 * Sticky Header Link Hover Color Start … … 2387 1848 $xolo_footer_widget_top_border_width = get_theme_mod('footer_widget_top_border_width','1'); 2388 1849 $xolo_footer_widget_bottom_border_width = get_theme_mod('footer_widget_bottom_border_width','1'); 2389 //$xolo_footer_widget_top_brdr_clr = get_theme_mod('footer_widget_top_brdr_clr','#ffffff');2390 //$xolo_footer_widget_btm_border_clr = get_theme_mod('footer_widget_btm_border_clr','#ffffff');2391 1850 $xolo_footer_wid_top_border_style = get_theme_mod('footer_wid_top_border_style','solid'); 2392 1851 $xolo_footer_wid_btm_border_style = get_theme_mod('footer_wid_btm_border_style','solid'); … … 2395 1854 if($xolo_footer_widget_layout !== 'disable') { 2396 1855 if($xolo_footer_wid_top_border_style !== 'hidden') { 2397 /* $output_css .=".footer-wrapper { 2398 border-top: ".esc_attr($xolo_footer_widget_top_border_width)."px ".esc_attr($xolo_footer_wid_top_border_style)." ".esc_attr($xolo_footer_widget_top_brdr_clr)."; 2399 }\n"; */ 2400 2401 1856 2402 1857 /** 2403 1858 * Footer Widget Top Border Color Start … … 2440 1895 } 2441 1896 if($xolo_footer_wid_btm_border_style !== 'hidden') { 2442 /* $output_css .=" .footer-wrapper {2443 border-bottom: ".esc_attr($xolo_footer_widget_bottom_border_width)."px ".esc_attr($xolo_footer_wid_btm_border_style)." ".esc_attr($xolo_footer_widget_btm_border_clr).";2444 }\n"; */2445 1897 2446 1898 /** … … 2485 1937 * Footer Widget Style 2486 1938 */ 2487 //$xolo_footer_widget_ttl_clr = get_theme_mod('footer_widget_ttl_clr','#ffffff'); 2488 //$footer_widget_ttl_btm_clr = get_theme_mod('footer_widget_ttl_btm_clr','#492cdd'); 2489 //$xolo_foot_wid_link_clr = get_theme_mod('foot_wid_link_clr','#ffffff'); 2490 //$xolo_foot_wid_link_hov_clr = get_theme_mod('foot_wid_link_hov_clr','#381CC5'); 1939 2491 1940 $xolo_foot_wid_ttl_size = get_theme_mod('foot_wid_ttl_size','20'); 2492 1941 … … 2537 1986 /* footer Widget Title Color END */ 2538 1987 2539 /* $output_css .=" .footer .widget_title:not([class^='widget_title_']):after{2540 background-color: " .esc_attr($footer_widget_ttl_btm_clr). ";2541 }\n"; */2542 2543 1988 /** 2544 1989 * footer Widget Bottom Line Color Start … … 2600 2045 2601 2046 if($xolo_footer_wid_clr !== '') { 2602 /* $output_css .=".footer-wrapper,.footer-wrapper p {2603 color :" .esc_attr($xolo_footer_wid_clr). ";2604 }\n"; */2605 2606 2047 /** 2607 2048 * Footer Widget Color Start … … 2644 2085 } 2645 2086 2646 /* if($xolo_footer_widget_bg == 'bg_color') {2647 $output_css .=".footer-wrapper {2648 background: " .esc_attr($xolo_footer_wid_bg_color). ";2649 }\n";2650 } */2651 2652 2653 2087 /** 2654 2088 * Footer Widget Background Color Start … … 2713 2147 */ 2714 2148 if($xolo_footer_copy_txt_clr !== '') { 2715 /* $output_css .=".footer-copyright, .footer-copyright p, .footer-copy ul.menu-wrap a, .footer-copyright p.no-widget-text a { 2716 color :" .esc_attr($xolo_footer_copy_txt_clr). "; 2717 }\n"; */ 2718 2149 2719 2150 $xolo_footer_copy_txt_clr = get_theme_mod('xolo_footer_copy_txt_clr','footer_copy_txt_clr'); 2720 2151 $xolo_footer_copy_txt_clr_background = get_theme_mod('xolo_footer_copy_txt_clr_background'); … … 2760 2191 */ 2761 2192 if($xolo_foot_copy_wid_link_clr !== '') { 2762 /* $output_css .=".footer-copyright .widget li a, .footer-copyright .widget:not(.widget_calendar) a,.footer-copyright a { 2763 color: " .esc_attr($xolo_foot_copy_wid_link_clr). "; 2764 }\n"; */ 2765 2766 2193 2767 2194 $xolo_foot_copy_wid_link_clr_background = get_theme_mod('xolo_foot_copy_wid_link_clr_background','#ff0056'); 2768 2195 … … 2806 2233 */ 2807 2234 if($xolo_foot_copy_wid_link_hov_clr !== '') { 2808 /* $output_css .="2809 .footer-copyright .widget a:focus, .footer-copyright .widget a:hover,.footer-copyright a:hover {2810 color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr). ";2811 }2812 .footer-copyright div.tagcloud a:hover,2813 .footer-copyright div.tagcloud a:focus,2814 .footer-copyright div.tagcloud a:active {2815 border-left-color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr). ";2816 }\n"; */2817 2235 2818 2236 $xolo_foot_copy_wid_link_hov_clr = get_theme_mod('xolo_foot_copy_wid_link_hov_clr','foot_copy_wid_link_hov_clr'); … … 2821 2239 if($xolo_foot_copy_wid_link_hov_clr == 'foot_copy_wid_link_hov_clr') { 2822 2240 $output_css .=".footer-copyright .widget a:focus, .footer-copyright .widget a:hover, .footer-copyright p a:hover { 2823 color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr ). ";2241 color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr_background). "; 2824 2242 } 2825 2243 .footer-copyright div.tagcloud a:hover, .footer-copyright div.tagcloud a:focus, .footer-copyright div.tagcloud a:active { 2826 border-left-color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr ). ";2244 border-left-color: " .esc_attr($xolo_foot_copy_wid_link_hov_clr_background). "; 2827 2245 }\n"; 2828 2246 } … … 2866 2284 2867 2285 /** 2868 * Footer Widget Style2869 */2870 //$xolo_foot_wid_link_clr = get_theme_mod('foot_wid_link_clr','#ffffff');2871 //$xolo_foot_wid_link_hov_clr = get_theme_mod('foot_wid_link_hov_clr','#381CC5');2872 2873 /* $output_css .=" .footer-wrapper .widget li a, .footer-wrapper .widget:not(.widget_calendar) a {2874 color: " .esc_attr($xolo_foot_wid_link_clr). ";2875 }\n"; */2876 2877 /**2878 2286 * Footer Widget Link Color Start 2879 2287 */ … … 2913 2321 } 2914 2322 /* Footer Widget Link Color END */ 2915 2916 2917 /* $output_css .="2918 .footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover {2919 color: " .esc_attr($xolo_foot_wid_link_hov_clr). ";2920 }\n"; */2921 2922 2323 2923 2324 /** … … 2931 2332 $output_css .=".footer-wrapper div.tagcloud a:hover, .footer-wrapper div.tagcloud a:focus, .footer-wrapper div.tagcloud a:active { 2932 2333 border-left-color: " .esc_attr($xolo_foot_wid_link_hov_clr_background). "; 2933 }.footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a: before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i {2334 }.footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a:hover:before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i { 2934 2335 color: " .esc_attr($xolo_foot_wid_link_hov_clr_background). "; 2935 2336 }\n"; … … 2946 2347 if($xolo_foot_wid_link_hov_clr == 'gradient_color') { 2947 2348 if($xolo_foot_wid_link_hov_clr_text_grad_type == 'linear') { 2948 $output_css .=".footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a: before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i {2349 $output_css .=".footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a:hover:before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i { 2949 2350 background: -webkit-linear-gradient(" .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_degree). "deg, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_1). "%, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color2). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_2). "%);-webkit-background-clip: text; -webkit-text-fill-color: transparent; 2950 2351 background: -o-linear-gradient(" .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_degree). "deg, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_1). "%, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color2). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_2). "%);-webkit-background-clip: text; -webkit-text-fill-color: transparent; … … 2957 2358 \n"; 2958 2359 }else{ 2959 $output_css .=".footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a: before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i {2360 $output_css .=".footer-wrapper .widget a:focus, .footer-wrapper .widget a:hover, .widget:not(.widget_calendar) a:focus, .widget:not(.widget_calendar) a:hover, .widget:not(.widget_calendar) a:active, .mobile-menu li > span, .mobile-menu .dropdown.current > a, .mobile-menu a:hover, .mobile-menu ul > li.active > a, .widget_social_widget li a:hover i, .widget_social_widget li a:focus i, .mobi-head-top .header-widget .widget_social_widget li a:hover i, .view-search form, .p-menu, [class*='widget_']:not(.widget_info):not(.widget_social_widget) li a:hover:before, .header-info .contact-icon i, .mobi-head-top .header-widget .widget:not(.widget_social_widget) i { 2960 2361 background: -webkit-radial-gradient(" .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_position). ", circle, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_1). "%, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color2). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_2). "%);-webkit-background-clip: text; -webkit-text-fill-color: transparent; 2961 2362 background: -o-radial-gradient(" .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_position). ", circle, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_1). "%, " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_color2). " " .esc_attr($xolo_foot_wid_link_hov_clr_text_grad_loc_2). "%);-webkit-background-clip: text; -webkit-text-fill-color: transparent; … … 2988 2389 2989 2390 if($xolo_footer_bottom_layout !== 'disable') { 2990 2991 /* $output_css .=".footer-copyright {2992 background: " .esc_attr($xolo_footer_copy_bg_color). ";2993 }\n"; */2994 2391 2995 2392 $footer_copy_bg = get_theme_mod('footer_copy_bg','bg_color'); … … 3055 2452 $xolo_breadcrumb_top_brdr_width = get_theme_mod('breadcrumb_top_brdr_width','2'); 3056 2453 $xolo_breadcrumb_btm_brdr_width = get_theme_mod('breadcrumb_btm_brdr_width','2'); 3057 /* $xolo_breadcrumb_text_clr = get_theme_mod('breadcrumb_text_clr','#ff9300');3058 $xolo_breadcrumb_link_clr = get_theme_mod('breadcrumb_link_clr','#492cdd');3059 $xolo_breadcrumb_link_hov_clr = get_theme_mod('breadcrumb_link_hov_clr','#381CC5');3060 $xolo_breadcrumb_top_brdr_clr = get_theme_mod('breadcrumb_top_brdr_clr','#f5f5f5');3061 $xolo_breadcrumb_btm_brdr_clr = get_theme_mod('breadcrumb_btm_brdr_clr','#f5f5f5'); */3062 3063 /* $output_css .=".breadcrumb-area h2, .breadcrumb-list li {3064 color: " .esc_attr($xolo_breadcrumb_text_clr). ";3065 }\n";3066 3067 $output_css .=".breadcrumb-list li a {3068 color: " .esc_attr($xolo_breadcrumb_link_clr). ";3069 }.breadcrumb-list li a:hover {3070 color: " .esc_attr($xolo_breadcrumb_link_hov_clr). ";3071 }\n"; */3072 2454 3073 2455 /** … … 3272 2654 } 3273 2655 /* Breadcrumb Bottom Border Color END */ 3274 3275 /* if($xolo_breadcrumb_top_brdr_width !== '0') { 3276 $output_css .=".breadcrumb-area { 3277 border-top-width: " .esc_attr($xolo_breadcrumb_top_brdr_width). "px; 3278 }\n"; 3279 } 3280 3281 if($xolo_breadcrumb_btm_brdr_width !== '0') { 3282 $output_css .=".breadcrumb-area { 3283 border-bottom-width: " .esc_attr($xolo_breadcrumb_btm_brdr_width). "px; 3284 }\n"; 3285 } */ 2656 3286 2657 /** 3287 2658 * Sidebar Width … … 3303 2674 * Sidebar Color 3304 2675 */ 3305 /* $xolo_sidebar_bg_clr = get_theme_mod('sidebar_bg_clr','#ffffff');3306 $xolo_sidebar_widget_ttl_clr = get_theme_mod('sidebar_widget_ttl_clr','#ff9300');3307 $xolo_sidebar_wid_link_clr = get_theme_mod('sidebar_wid_link_clr','#492cdd');3308 $xolo_sidebar_wid_link_hov_clr = get_theme_mod('sidebar_wid_link_hov_clr','#381CC5'); */3309 2676 3310 2677 $output_css .= xolo_customizer_value( 'sidebar_wid_ttl_size', '.sidebar .widget .widget_title', array( 'font-size' ), array( 20, 20, 20 ), 'px' ); … … 3312 2679 $output_css .= xolo_customizer_value( 'sidebar_wid_padding', 'div.sidebar [class*="widget_"]:not(.widget_social_widget):not(.widget_info):not(.widget_social_widget):not(.widget_menu_top):not(.widget_calender):not(.widget_tag) ul:not(.days) li a', array( 'padding-bottom' ), array( 15, 15, 15 ), 'px' ); 3313 2680 3314 /* $output_css .=".sidebar-3 .sidebar, .sidebar-2 .sidebar .widget, .sidebar {3315 background-color: " .esc_attr($xolo_sidebar_bg_clr). ";3316 }\n"; */3317 3318 2681 /** 3319 2682 * Sidebar Background color Start … … 3355 2718 3356 2719 /* Sidebar Background color END */ 3357 3358 3359 /* $output_css .=" .sidebar .widget .widget_title{ 3360 color: " .esc_attr($xolo_sidebar_widget_ttl_clr). "; 3361 }\n"; */ 3362 2720 3363 2721 /** 3364 2722 * Sidebar Widget Title color Start … … 3400 2758 3401 2759 /* Sidebar Widget Title color END */ 3402 3403 /* $output_css .=" .sidebar .widget:not(.widget_edd_cart_widget) li a {3404 color: " .esc_attr($xolo_sidebar_wid_link_clr). ";3405 }.sidebar div.tagcloud a {3406 border-left-color: " .esc_attr($xolo_sidebar_wid_link_clr). ";3407 }\n"; */3408 2760 3409 2761 /** … … 3456 2808 3457 2809 /* Sidebar Widget Link color END */ 3458 3459 /* $output_css .=" .sidebar div.tagcloud a:hover, .sidebar div.tagcloud a:focus, .sidebar div.tagcloud a:active {3460 border-left-color: " .esc_attr($xolo_sidebar_wid_link_hov_clr). ";3461 }.sidebar .widget a:focus, .sidebar .widget a:hover, .sidebar .widget a:active,.sidebar .widget:not(.widget_edd_cart_widget) li a:hover, .sidebar .widget:not(.widget_edd_cart_widget) li a:focus {3462 color: " .esc_attr($xolo_sidebar_wid_link_hov_clr). ";3463 }\n"; */3464 3465 2810 3466 2811 /** … … 3674 3019 $output_css .= xolo_customizer_value( 'breadcrumb_content_size', '.breadcrumb-area li', array( 'font-size' ), array( 16, 16, 16 ), 'px' ); 3675 3020 3676 /**3677 * Archive post3678 */3679 /* $xolo_archive_post_txt_clr = get_theme_mod('archive_post_txt_clr','#ff9300');3680 $xolo_archive_post_link_clr = get_theme_mod('archive_post_link_clr','#ff9300');3681 $xolo_archive_post_link_hov_clr = get_theme_mod('archive_post_link_hov_clr','#381CC5');3682 $xolo_archive_post_icon_clr = get_theme_mod('archive_post_icon_clr','#492cdd');3683 $xolo_archive_post_bg_clr = get_theme_mod('archive_post_bg_clr','#ffffff');3684 $xolo_archive_post_meta_clr = get_theme_mod('archive_post_meta_clr','#ff9300');3685 $archive_post_overlay_clr = get_theme_mod('archive_post_overlay_clr','#ffffff'); */3686 3687 3688 /* $output_css .=".blog-items, .blog-items p, .blog-items .blog-meta {3689 color: " .esc_attr($xolo_archive_post_txt_clr). ";3690 }\n"; */3691 3021 3692 3022 /** … … 3730 3060 /* Post text color END */ 3731 3061 3732 3733 /* $output_css .=".blog-items .post-title a {3734 color: " .esc_attr($xolo_archive_post_link_clr). ";3735 }3736 3737 3062 /** 3738 3063 * Post link color Start … … 3775 3100 /* Post link color END */ 3776 3101 3777 3778 3779 /*.blog-items .post-title a:hover, .blog-items .post-title a:focus {3780 color: " .esc_attr($xolo_archive_post_link_hov_clr). ";3781 }\n"; */3782 3783 3102 /** 3784 3103 * Post link hover color Start … … 3818 3137 } 3819 3138 /* Post link hover color END */ 3820 3821 /* $output_css .=".blog-items .blog-meta i {3822 color: " .esc_attr($xolo_archive_post_icon_clr). ";3823 }.blog-items .post-date{3824 background-color: " .esc_attr($xolo_archive_post_icon_clr). ";3825 }\n"; */3826 3827 3139 3828 3140 /** … … 3874 3186 /* Post icon color END */ 3875 3187 3876 /* $output_css .=".blog-items .blog-meta a,.blog-items .blog-img .blog-meta,.blog-items .post-date a {3877 color: " .esc_attr($xolo_archive_post_meta_clr). ";3878 }\n"; */3879 3880 3188 /** 3881 3189 * Post meta color Start … … 3915 3223 } 3916 3224 /* Post meta color END */ 3917 3918 /* $output_css .=".blog-items .blog-img .blog-meta:before {3919 background: " .esc_attr($archive_post_overlay_clr). ";3920 }\n"; */3921 3922 3225 3923 3226 /** … … 3959 3262 /* Post meta color END */ 3960 3263 3961 /* $output_css .=".blog-items {3962 background-color: " .esc_attr($xolo_archive_post_bg_clr). ";3963 }\n"; */3964 3965 3264 /** 3966 3265 * Post background color Start … … 4000 3299 } 4001 3300 /* Post background color END */ 4002 4003 /**4004 * Pagination4005 */4006 /* $xolo_pagination_clr = get_theme_mod('xolo_pagination_clr','#492cdd');4007 4008 $output_css .="body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .page-numbers.current,body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .next.page-numbers,body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .prev.page-numbers {4009 border-color: " .esc_attr($xolo_pagination_clr). ";4010 }.pagination .nav-links .page-numbers.current {4011 color: " .esc_attr($xolo_pagination_clr). ";4012 }body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .next:hover,4013 body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .next:focus,4014 body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .prev:hover,4015 body:not(.pagination-minimal):not(.pagination-outline):not(.pagination-fill) .pagination .nav-links .prev:focus {4016 color: #ffffff;4017 background-color: " .esc_attr($xolo_pagination_clr). ";4018 }\n"; */4019 4020 3301 4021 3302 /** -
xolo/2.3/inc/enqueue.php
r139673 r195882 20 20 21 21 wp_enqueue_style('xolo-widgets',get_template_directory_uri().'/assets/css/widgets.css'); 22 23 wp_enqueue_style('xolo-woo',get_template_directory_uri().'/assets/css/woo.css'); 22 24 23 25 wp_enqueue_style('xolo-menus', get_template_directory_uri() . '/assets/css/menus.css'); … … 28 30 29 31 // Scripts 30 wp_enqueue_script('xolo- custom-js', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), false, true);32 wp_enqueue_script('xolo-theme-custom-js', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), false, true); 31 33 wp_enqueue_script( 'xolo-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20151215', true ); 32 34 -
xolo/2.3/readme.txt
r188922 r195882 5 5 Tested up to: 6.2 6 6 Requires PHP: 5.6 7 Stable tag: 2. 08 Version: 2. 07 Stable tag: 2.3 8 Version: 2.3 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
xolo/2.3/style.css
r188922 r195882 5 5 Author URI: https://wpxolo.com/ 6 6 Description: Xolo is a fast, fully customizable, and multi header new generation WordPress theme. Xolo is the perfect choice for Elementor's developer & designer. With Xolo you can make the perfect website for every business such as a blog, portfolio, agency, landing page, application page, freelancer's, magazine, and more. Xolo provides you fast speed to your website because the theme package is less than 1 MB. #5 header layouts are ready to change in the theme. Some popular features like SEO friendly, Responsive, Translation Ready, Gutenberg compatible, and many other WordPress plugins compatible are also included in the theme. Limitless customizations in a theme, we know what you want in the theme. It works well with almost all page builders as Elementor, SiteOrigin, Beaver Builder, Visual Composer, Divi, etc. Just install the recommended plugin and Navigate to Xolo Website from WordPress admin menu, Import any one demo within minutes. If you like Xolo, share your feedback on the theme. Try Xolo theme now https://wpxolo.com/ 7 Version: 2. 08 Tested up to: 6. 17 Version: 2.3 8 Tested up to: 6.2 9 9 Requires PHP: 5.6 10 10 License: GPLv3 or later
Note: See TracChangeset
for help on using the changeset viewer.