Skip to content

Commit

Permalink
Merge pull request #447 from templaza/v3
Browse files Browse the repository at this point in the history
v3.0.5
  • Loading branch information
sonvnn authored Nov 23, 2023
2 parents 22f728d + b9a9408 commit 10119c2
Show file tree
Hide file tree
Showing 59 changed files with 4,108 additions and 1,772 deletions.
File renamed without changes.
12 changes: 12 additions & 0 deletions assets/vendor/astroid/scss/_preloader.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#astroid-preloader {
position: fixed;
align-items:center;
justify-content:center;
width:100%;
height:100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index:99999;
}
4 changes: 3 additions & 1 deletion assets/vendor/astroid/scss/astroid.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import "variables";
@import "mixins";
@import "base";
@import "colormode";
@import "error";
@import "layouts";
@import "header";
Expand All @@ -14,4 +15,5 @@
@import "pagination";
@import "utilities/utilities";
@import "components/components";
@import "joomla/joomla";
@import "joomla/joomla";
@import "preloader";
28 changes: 0 additions & 28 deletions assets/vendor/astroid/scss/components/_blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,34 +36,6 @@ $article-posttype-spacing: 40px;
}
}

// Tags
ul.tags{
list-style: none;
margin: 0 0 10px;
padding: 0;
display: flex;
flex-wrap: wrap;
li:not(:last-child) {
margin-right: 10px;
margin-bottom: 10px;
}
&:before {
content: "\f02c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
color: $tag-icon-color;
font-size: 20px;
}
.label {
background-color: $tag-bg;
padding: $tag-padding;
font-size: $tag-font-size;
line-height: normal;
color: $tag-text-color;
}
}

.article-wraper {
height: 100%;
padding-bottom: 30px;
Expand Down
22 changes: 22 additions & 0 deletions assets/vendor/astroid/scss/joomla/_base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.hidden {
display: none;
visibility: hidden;
}
.as-form-group {
.control-label {
> label {
margin-bottom: 0.5rem;
}
}
}
.password-group {
meter {
width: 100%;
}
}
ul.tags {
.btn-sm {
--bs-btn-padding-y: 0.3rem;
--bs-btn-padding-x: 1rem;
}
}
66 changes: 66 additions & 0 deletions assets/vendor/astroid/scss/joomla/_com_contact.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
.com-contact {
.col-md-4{
&:empty {
padding: 0;
width: 0;
}
}
.contact-title-first {
margin-bottom: 0;
}
* + .contact-title-second {
border-top: 1px solid var(--bs-border-color);
padding-top: 1rem;
margin-top: 1.5rem;
}
.com-contact__form {
margin-bottom: 1.5rem;
legend {
display: none;
}
.control-group{
&:not(.field-spacer) {
margin-bottom: 1rem;
}
label {
margin-bottom: 0.5rem;
}
}
}
@include media-breakpoint-up(lg) {
dl.dl-horizontal {
display: grid;
grid-template-columns: auto 1fr;
dt {
grid-column-start: 1;
grid-column-end: 2;
}
dd {
grid-column-start: 2;
grid-column-end: 3;
padding: 0 0 0 10px;
}
}
}
.com-contact__articles {
li{
padding: 10px 0;
&:not(:last-child) {
border-bottom: 1px solid var(--bs-border-color);
}
}
}
.fields-container {
list-style: none;
padding: 0;
margin: 1rem 0;
> li {
&:not(:last-child) {
margin-bottom: 0.5rem;
}
.field-label {
font-weight: bold;
}
}
}
}
36 changes: 36 additions & 0 deletions assets/vendor/astroid/scss/joomla/_com_content.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.blog {
.com-content-category-blog__items + .com-content-category-blog__items {
margin-top: 3rem;
}
.items-more {
margin-top: 2rem;
}
.item-image {
margin-bottom: 1.5rem;
}
}
.as-readmore {
position: relative;
text-decoration: none;
font-size: 0.895rem;
font-weight: bold;
&:after {
position: absolute;
content: '';
bottom: 0;
left: 0;
width: 100%;
border-bottom: 1px solid var(--bs-border-color);
transition: transform 0.2s ease;
-ms-transform: scaleX(0);
transform: scaleX(0);
transform-origin: 0 0;
}
&:hover {
text-decoration: none;
&:after {
-ms-transform: scaleX(1);
transform: scaleX(1);
}
}
}
Loading

0 comments on commit 10119c2

Please sign in to comment.