Changeset 198734
- Timestamp:
- 08/08/2023 11:03:08 AM (2 years ago)
- Location:
- xolo/3.6
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from xolo/3.5)
-
changelog.txt (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xolo/3.6/changelog.txt
r198589 r198734 1 @version 3.6 2 Added - Jetpack Gallery Support 3 * Tiled Mosaic Gallary 4 * Circle Gallery 5 * Square Gallery 6 * Tiled Columns 7 1 8 @version 3.5 2 9 * Sidebar, Block Images Improvement -
xolo/3.6/functions.php
r198589 r198734 6 6 * Define Constants 7 7 */ 8 define( 'XOLO_THEME_VERSION', '3. 5' );8 define( 'XOLO_THEME_VERSION', '3.6' ); 9 9 10 10 // Root path/URI. -
xolo/3.6/readme.txt
r198589 r198734 5 5 Tested up to: 6.2.2 6 6 Requires PHP: 5.6 7 Stable tag: 3. 58 Version: 3. 57 Stable tag: 3.6 8 Version: 3.6 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
xolo/3.6/style.css
r198589 r198734 5 5 Author URI: https://xolotheme.com/ 6 6 Description: Unleash your creativity with the Xolo theme, a fully supported WordPress theme compatible with the Elementor plugin. Elementor's powerful drag-and-drop editor to design your online vision with ease. The perfect fusion of style and functionality. View Demo Pro Version. https://xolotheme.com/pro/xolo 7 Version: 3. 57 Version: 3.6 8 8 Tested up to: 6.2 9 9 Requires PHP: 5.6 … … 59 59 margin-bottom: 0; 60 60 } 61 62 /* gallery cross button style */ 63 button.featherlight-close-icon.featherlight-close { 64 background-color: var(--sp-primary); 65 border: 1px solid var(--sp-white); 66 top: 40px; 67 right: 40px; 68 border-radius: 0; 69 } 70 /* circle hover */ 71 .is-style-circle figure.tiled-gallery__item:before { 72 content: ''; 73 position: absolute; 74 inset: 0; 75 background: #000; 76 border-radius: 100%; 77 opacity: 0; 78 visibility: hidden; 79 transition: 0.65s; 80 } 81 .is-style-circle figure.tiled-gallery__item:hover:before, 82 .is-style-circle figure.tiled-gallery__item:focus:before{ 83 visibility: visible; 84 opacity: 0.5; 85 } 86 /* circle spacing */ 87 .wp-block-jetpack-tiled-gallery .tiled-gallery__row{ 88 margin-right: calc(-.4 * var(--bs-gutter-x)); 89 margin-left: calc(-.4 * var(--bs-gutter-x)); 90 --bs-gutter-x: 1.5rem; 91 } 92 .wp-block-jetpack-tiled-gallery .tiled-gallery__row>* { 93 padding-right: calc(var(--bs-gutter-x) * .4); 94 padding-left: calc(var(--bs-gutter-x) * .4); 95 } 96 .wp-block-jetpack-tiled-gallery .tiled-gallery__row:not(:last-child) { 97 margin-bottom: 20px; 98 } 99 .wp-block-jetpack-tiled-gallery .tiled-gallery__row+.tiled-gallery__row { 100 margin-top: 0px; 101 } 102 .wp-block-jetpack-tiled-gallery .tiled-gallery__col+.tiled-gallery__col { 103 margin-left: 0px; 104 } 105 /* circle box shadow */ 106 .wp-block-jetpack-tiled-gallery.is-style-circle .tiled-gallery__item { 107 border-radius: 50%; 108 box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px; 109 } 110 .wp-block-jetpack-tiled-gallery.is-style-rectangular .tiled-gallery__item { 111 width: 100%!important; 112 height: 100%!important; 113 box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px; 114 } 115 .wp-block-jetpack-tiled-gallery .tiled-gallery__item { 116 box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px; 117 } 118 .wp-block-jetpack-tiled-gallery .tiled-gallery__gallery{ 119 justify-content: center; 120 } 121 .wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item{ 122 width: 100%!important; 123 margin-bottom: 20px 124 } 125 .wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item:last-child{ 126 margin-bottom: 0px 127 } 128 .wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item { 129 margin-top: 0px; 130 }
Note: See TracChangeset
for help on using the changeset viewer.