Make WordPress Themes

Changeset 198734


Ignore:
Timestamp:
08/08/2023 11:03:08 AM (2 years ago)
Author:
themedropbox
Message:

New version of Xolo - 3.6

Location:
xolo/3.6
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • xolo/3.6/changelog.txt

    r198589 r198734  
     1@version 3.6
     2Added - Jetpack Gallery Support
     3* Tiled Mosaic Gallary
     4* Circle Gallery
     5* Square Gallery
     6* Tiled Columns
     7
    18@version 3.5
    29* Sidebar, Block Images Improvement
  • xolo/3.6/functions.php

    r198589 r198734  
    66 * Define Constants
    77 */
    8 define( 'XOLO_THEME_VERSION', '3.5' );
     8define( 'XOLO_THEME_VERSION', '3.6' );
    99
    1010// Root path/URI.
  • xolo/3.6/readme.txt

    r198589 r198734  
    55Tested up to: 6.2.2
    66Requires PHP: 5.6
    7 Stable tag: 3.5
    8 Version: 3.5
     7Stable tag: 3.6
     8Version: 3.6
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • xolo/3.6/style.css

    r198589 r198734  
    55Author URI: https://xolotheme.com/
    66Description: 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.5
     7Version: 3.6
    88Tested up to: 6.2
    99Requires PHP: 5.6
     
    5959    margin-bottom: 0;
    6060}
     61
     62/* gallery cross button style */
     63button.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.