first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
.elementor-aspect-ratio- {
&219 {
.elementor-fit-aspect-ratio {
padding-bottom: 42.8571%;
}
}
&169 {
.elementor-fit-aspect-ratio {
padding-bottom: 56.25%;
}
}
&43 {
.elementor-fit-aspect-ratio {
padding-bottom: 75%;
}
}
&32 {
.elementor-fit-aspect-ratio {
padding-bottom: 66.6666%;
}
}
&11 {
.elementor-fit-aspect-ratio {
padding-bottom: 100%;
}
}
&916 {
.elementor-fit-aspect-ratio {
padding-bottom: 177.8%;
}
}
}
.elementor-fit-aspect-ratio {
position: relative;
height: 0;
iframe {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
border: 0;
background-color: #000;
}
video {
width: 100%;
}
}

View File

@@ -0,0 +1,145 @@
//
// Dialog
//
.dialog-widget-content {
background-color: #fff;
position: absolute;
border-radius: 3px;
box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
.dialog-message {
font-size: 12px;
line-height: 1.5;
box-sizing: border-box;
}
.dialog-type-lightbox {
position: fixed;
height: 100%;
width: 100%;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9999;
user-select: none;
.dialog-widget-content {
margin: auto;
width: 375px;
}
.dialog-header {
font-size: 15px;
color: $editor-darkest;
padding: 30px 0 10px;
font-weight: 500;
}
.dialog-message {
padding: 0 30px 30px;
min-height: 50px;
}
&:not(.elementor-popup-modal) {
.dialog-header,
.dialog-message {
text-align: center;
}
}
.dialog-buttons-wrapper {
border-top: 1px solid $editor-background;
text-align: center;
> .dialog-button {
font-family: $admin-font-family;
width: 50%;
border: none;
background: none;
color: $editor-dark;
font-size: 15px;
cursor: pointer;
padding: 13px 0;
outline: 0;
&:hover {
background-color: lighten($editor-background, 5%);
}
&.dialog-ok {
color: $editor-warning;
}
&.dialog-take_over {
color: $editor-success;
}
&:active {
background-color: fade-out($editor-background, .5);
}
&::-moz-focus-inner {
border: 0;
}
}
}
}
.dialog-close-button {
cursor: pointer;
position: absolute;
margin-top: 15px;
@include end(15px);
font-size: 15px;
line-height: 1;
&:not(:hover) {
opacity: .4;
}
}
.dialog-alert-widget {
.dialog-buttons-wrapper {
> button {
width: 100%;
}
}
}
.dialog-confirm-widget {
.dialog-button {
&:first-child {
@include border-end(1px solid $editor-background);
}
}
}
.dialog-prevent-scroll {
overflow: hidden;
max-height: 100vh;
}
@media (min-width: $editor-screen-md-max) {
body.admin-bar {
.dialog-lightbox-widget {
height: calc(100vh - 32px);
}
}
}
@media (max-width: $editor-screen-md-max) {
body.admin-bar {
.dialog-type-lightbox {
position: sticky;
height: 100vh;
}
}
}

View File

@@ -0,0 +1,26 @@
.flatpickr-calendar {
width: 280px;
.flatpickr-current-month {
span.cur-month {
font-weight: 300;
}
}
.dayContainer {
width: 280px;
min-width: 280px;
max-width: 280px;
}
.flatpickr-days {
width: 280px;
}
.flatpickr-day {
max-width: 37px;
height: 37px;
line-height: 37px;
}
}

View File

@@ -0,0 +1,172 @@
.elementor-templates-modal {
.dialog-widget-content {
font-family: $admin-font-family;
background-color: $editor-background-light;
width: 100%;
@media (max-width: $library_screen_breakpoint) {
max-width: 990px;
}
@media (min-width: $library_screen_breakpoint + 1) {
max-width: 1200px;
}
}
.dialog {
&-header {
padding: 0;
background-color: #fff;
box-shadow: $panel-bottom-shadow;
position: relative; // Show the shadow above the scrolled list
z-index: 1;
}
&-buttons-wrapper {
background-color: #fff;
border: none;
display: none;
justify-content: flex-end;
padding: 5px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
position: relative;
.elementor-button {
height: 40px;
@include margin-start(5px);
&-success {
padding: 12px 36px;
color: #fff;
width: initial;
font-size: 15px;
&:hover {
background-color: $editor-success;
}
}
}
}
&-message {
height: 750px;
max-height: 85vh;
overflow: auto;
padding-top: 25px;
}
&-content {
height: 100%;
}
&-loading {
display: none;
}
}
&__header {
display: flex;
align-items: center;
justify-content: space-between;
height: 50px;
&__logo {
line-height: 1;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
&-area {
text-align: $start;
@include padding-start(15px);
> * {
display: flex;
align-items: center;
}
}
&__icon-wrapper {
@include margin-end(10px);
font-size: 12px;
}
&__title {
padding-top: 2px;
}
}
&__items-area {
display: flex;
flex-direction: row-reverse;
}
&__item {
position: relative;
display: flex;
align-items: center;
justify-content: center;
box-sizing: content-box;
> i {
font-size: 20px;
transition: $transition-hover;
cursor: pointer;
&:not(:hover) {
color: $editor-light;
}
}
}
&__close {
&--normal {
width: 47px;
@include border-start(1px solid $editor-background);
i {
font-size: 18px;
}
}
&--skip {
padding: 10px;
@include padding-start(20px);
@include margin-end(10px);
color: #fff;
background-color: $editor-light;
font-size: 11px;
font-weight: normal;
line-height: 1;
text-transform: uppercase;
border-radius: 2px;
cursor: pointer;
> i {
font-size: inherit;
@include padding-start(10px);
@include margin-start(15px);
@include border-start(1px solid);
&:not(:hover) { // Overwrite the default
color: #fff;
}
}
}
}
}
&__sidebar {
flex-shrink: 0;
width: 25%;
background-color: rgba(255, 255, 255, 0.3);
}
&__content {
flex-grow: 1;
box-shadow: 0 0 13px inset rgba(0, 0, 0, 0.05);
}
}

View File

@@ -0,0 +1,49 @@
@import "../../../../assets/dev/scss/helpers/variables";
@import "../../../../assets/dev/scss/editor/breakpoints";
@import "dialog";
@import "aspect_ratio";
@import "flatpicker";
@import "modal-wrapper";
@import "core/app/modules/site-editor/assets/scss/admin/admin-bar";
.elementor-hidden {
display: none;
}
.elementor-screen-only,
.screen-reader-text, // wp - common.css
.screen-reader-text span, // wp - common.css
.ui-helper-hidden-accessible // wp - common.css
{
position: absolute;
top: -10000em; //for safari browser compatibility
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
.elementor-clearfix:after{
content: '';
display: block;
clear: both;
width: 0;
height: 0;
}
//Elementor icon logo wrapper
.e-logo-wrapper {
background: $editor-accent;
display: inline-block;
padding: 0.75em;
border-radius: 50%;
line-height: 1;
i {
color: #fff;
font-size: 1em;
}
}