Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
seb-montana committed Dec 23, 2024
2 parents 29d55f7 + 99adc23 commit 23fe04b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woody-wordpress/woody-theme",
"type": "wordpress-theme",
"version": "1.85.68",
"version": "1.85.69",
"description": "Parent theme of Woody Wordpresss Builder",
"license": "GPL-2.0",
"authors": [
Expand Down
3 changes: 2 additions & 1 deletion src/scss/front/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
@import "woody";

// Plugins
@import "./global/misc";
@import "./global/accessibility";
@import "./global/woody_access";
@import "./global/touristic_sheet";
Expand All @@ -63,4 +64,4 @@
// @import "./plugins/leaflet";
@import "./plugins/scroll_to_top";
@import "./plugins/flatpickr";
@import "./plugins/plyr";
@import "./plugins/plyr";
22 changes: 22 additions & 0 deletions src/scss/front/global/misc.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
$woody-loader-size: 1rem;
$woody-loader-color-primary: #f3f3f3;
$woody-loader-color-secondary: #a3a3a3;

.woody-loader {
border: calc(var(--woody-loader-size, #{$woody-loader-size}) / 10) solid var(--woody-loader-primary, $woody-loader-color-primary);
border-top: calc(var(--woody-loader-size, #{$woody-loader-size}) / 10) solid var(--woody-loader-secondary, $woody-loader-color-secondary);
border-radius: 50%;
width: var(--woody-loader-size, $woody-loader-size);
height: var(--woody-loader-size, $woody-loader-size);
animation: woody-loader-spin 2s linear infinite;
}

@keyframes woody-loader-spin {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Theme Name: Woody (Parent theme)
Description: Parent theme of the Raccourci Agency themes
Version: 1.85.68
Version: 1.85.69
Author: Raccourci Agency
*/

0 comments on commit 23fe04b

Please sign in to comment.