Skip to content

Commit

Permalink
Merge pull request #825 from templaza/v3
Browse files Browse the repository at this point in the history
v3.1.7
  • Loading branch information
sonvnn authored Oct 30, 2024
2 parents ccd9ae0 + 38486bb commit b54d769
Show file tree
Hide file tree
Showing 83 changed files with 35,006 additions and 1,349 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Github All Releases](https://img.shields.io/github/downloads/templaza/astroid-framework/total.svg)](https://github.com/templaza/astroid-framework/releases)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
[![GitHub release](https://img.shields.io/github/release/templaza/astroid-framework.svg)](https://github.com/templaza/astroid-framework/releases)
[![Discord](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/2MwtsAX4Py)
[![Discord](https://img.shields.io/discord/1098077651496874005)](https://discord.gg/2MwtsAX4Py)
[![Donate](https://img.shields.io/badge/donate-Buy%20me%20a%20coffee-blueviolet)](https://ko-fi.com/astroidframework)

# Astroid Framework - Powerful Joomla Template Framework
Expand Down
1 change: 1 addition & 0 deletions assets/vendor/astroid/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ $as-width-ranges: (
) !default;

$as-gutters: (
none: 0,
sm: 0.3rem,
md: 0.5rem,
lg: 1rem,
Expand Down
34 changes: 34 additions & 0 deletions assets/vendor/astroid/scss/utilities/_animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@
transition: all 300ms;
}

.as-loading {
&::before {
content: '';
position: absolute;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bs-body-bg);
}
&::after {
content: '';
position: absolute;
z-index: 1000;
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--bs-body-color) !important;
animation: loaderAnimation 0.7s linear infinite alternate forwards;
}
}

@keyframes loaderAnimation {
to {
opacity: 1;
transform: scale3d(0.5,0.5,1);
}
}

@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
Expand Down
18 changes: 18 additions & 0 deletions assets/vendor/astroid/scss/utilities/_cursor.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.as-cursor {
display: none;
}

@media (any-pointer:fine) {
.as-cursor {
position: fixed;
top: 0;
left: 0;
display: block;
pointer-events: none;
z-index: 10000;
}

.no-js .as-cursor {
display: none;
}
}
12 changes: 12 additions & 0 deletions assets/vendor/astroid/scss/utilities/_gutters.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,16 @@
margin-left: #{$gutter-value};
}
}
.as-gutter-y-#{$gutter-point} {
margin-top: -#{$gutter-value};
> * {
margin-top: #{$gutter-value};
}
}
.as-gutter-x-#{$gutter-point} {
margin-left: -#{$gutter-value};
> * {
margin-left: #{$gutter-value};
}
}
}
18 changes: 18 additions & 0 deletions assets/vendor/astroid/scss/utilities/_lenis.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
html.lenis {
height: auto;
body {
height: auto;
}
}
.lenis.lenis-smooth {
scroll-behavior: auto !important;
[data-lenis-prevent] {
overscroll-behavior: contain;
}
iframe {
pointer-events: none;
}
}
.lenis.lenis-stopped {
overflow: hidden;
}
4 changes: 3 additions & 1 deletion assets/vendor/astroid/scss/utilities/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
@import "responsive";
@import "animations";
@import "modal";
@import "carousel";
@import "carousel";
@import "lenis";
@import "cursor";
6 changes: 5 additions & 1 deletion assets/vendor/astroid/scss/widgets/_articles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
top: auto;
}
}

.astroid-article-heading {
> a {
color: inherit;
}
}
.card-img-overlay {
--bs-card-img-overlay-padding: 2.5rem;
&.card-size-large {
Expand Down
16 changes: 16 additions & 0 deletions assets/vendor/astroid/scss/widgets/_articles_listing.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.article-listing {
.astroid-article-heading::before {
counter-increment: menucounter;
content: counters(menucounter, ".", decimal-leading-zero)".";
display: flex;
align-items: center;
line-height: 1;
font-weight: bold;
min-width: 60px;
}
.astroid-article-info {
> dd {
display: inline;
}
}
}
28 changes: 28 additions & 0 deletions assets/vendor/astroid/scss/widgets/_imagegroup.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.astroid-imagegroup {
.as-image-group-item {
.astroid-heading {
opacity: 0;
transform:translate3d(0,100%,0);
transition: opacity 600ms, transform 600ms;
z-index: 1;
}
&:hover {
.astroid-heading {
opacity: 1;
transform:translateZ(0)
}
}
}
.astroid-image-overlay-cover {
&:after {
pointer-events: none;
opacity: 0;
transition: opacity 600ms;
}
&:hover {
&:after {
opacity: 1;
}
}
}
}
10 changes: 10 additions & 0 deletions assets/vendor/astroid/scss/widgets/_listing_pro.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.as-listing-pro-item {
.astroid-text > * {
&:last-child {
margin-bottom: 0;
}
}
.astroid-meta {
min-width: 60px;
}
}
5 changes: 4 additions & 1 deletion assets/vendor/astroid/scss/widgets/_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
@import "video_button";
@import "articles";
@import "slideshow";
@import "list";
@import "list";
@import "articles_listing";
@import "listing_pro";
@import "imagegroup";
11 changes: 11 additions & 0 deletions assets/vendor/gsap/ScrollTrigger.min.js

Large diffs are not rendered by default.

130 changes: 0 additions & 130 deletions assets/vendor/hover_motion/css/base.css

This file was deleted.

1 change: 0 additions & 1 deletion assets/vendor/hover_motion/css/base.min.css

This file was deleted.

Loading

0 comments on commit b54d769

Please sign in to comment.