Initial commit: Atomaste website
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,266 @@
|
||||
.astra-sites-welcome .astra-notice-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .astra-notice-container .notice-welcome-container {
|
||||
background-image: url( "../images/st-banner-background.svg" );
|
||||
justify-content: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left top;
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .astra-notice-container .notice-welcome-container::after {
|
||||
padding: 2.5%;
|
||||
content: "";
|
||||
display: block;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 51%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
padding: 40px 40px 40px 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .showcase-section {
|
||||
flex: 0 0 45%;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.astra-sites-welcome h1.text-heading {
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-size: 30px;
|
||||
line-height: 36px;
|
||||
color: #0f172a;
|
||||
padding: 24px 0px 12px 0px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .logo-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.astra-sites-welcome .logo-section img {
|
||||
width: 24px;
|
||||
}
|
||||
.astra-sites-welcome .logo-section h3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 30px;
|
||||
text-align: right;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .button-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.astra-sites-welcome a.text-button {
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
padding: 10px 16px;
|
||||
max-width: fit-content;
|
||||
border-radius: 6px;
|
||||
background: #2271b1;
|
||||
box-shadow: 0px 1px 2px 0px rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
|
||||
.astra-sites-welcome a.scratch-link {
|
||||
color: #475569;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
display: inline-block;
|
||||
width: fit-content;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .content-section {
|
||||
display: flex;
|
||||
padding: 20px 16px;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
flex: 1 0 0;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .content-section:hover {
|
||||
border-radius: 6px;
|
||||
background: var( --Colors-base-white, #fff );
|
||||
box-shadow: 0px 8px 22px 0px rgba( 0, 0, 0, 0.08 );
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: flex;
|
||||
padding: 32px 60px;
|
||||
align-items: flex-start;
|
||||
gap: 32px;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .icon-section {
|
||||
border-radius: 24px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .link-section h4 {
|
||||
margin: 0;
|
||||
color: var( --gray-900, #111827 );
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .link-section p {
|
||||
margin-bottom: 8px;
|
||||
padding: 0;
|
||||
color: var( --gray-500, #6b7280 );
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 20px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section p {
|
||||
color: var( --Theme-Body, #475569 );
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section p {
|
||||
margin-bottom: 24px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome.notice.is-dismissible {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome.notice {
|
||||
padding: 0;
|
||||
border-right-width: 0;
|
||||
border: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-dismiss:before {
|
||||
background-image: url( ../images/cross.svg );
|
||||
content: "";
|
||||
position: relative;
|
||||
background-size: 10px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center top;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-dismiss {
|
||||
top: 3px;
|
||||
left: 3px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .link-section .link-text {
|
||||
display: flex;
|
||||
text-decoration: none;
|
||||
gap: 8px;
|
||||
border-radius: 4px;
|
||||
color: #5d5e61;
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .content-section {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media only screen and ( min-width: 1024px ) and ( max-width: 1280px ) {
|
||||
.astra-sites-welcome .notice-content-container .link-section h4 {
|
||||
font-size: 14px;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container .link-section p {
|
||||
font-size: 12px;
|
||||
}
|
||||
.astra-sites-welcome .link-section .link-text {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( min-width: 768px ) and ( max-width: 1024px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 75.5%;
|
||||
padding-right: 28px;
|
||||
padding-top: 38px;
|
||||
padding-bottom: 38px;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( max-width: 767px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 80.5%;
|
||||
padding: 32px 32px 32px 0;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( max-width: 420px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 86.5%;
|
||||
text-align: center;
|
||||
}
|
||||
.astra-sites-welcome .button-section {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.astra-sites-welcome .logo-section {
|
||||
justify-content: center;
|
||||
}
|
||||
.astra-sites-welcome h1.text-heading {
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,266 @@
|
||||
.astra-sites-welcome .astra-notice-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .astra-notice-container .notice-welcome-container {
|
||||
background-image: url( "../images/st-banner-background.svg" );
|
||||
justify-content: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right top;
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .astra-notice-container .notice-welcome-container::after {
|
||||
padding: 2.5%;
|
||||
content: "";
|
||||
display: block;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 51%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
padding: 40px 0 40px 40px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .showcase-section {
|
||||
flex: 0 0 45%;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.astra-sites-welcome h1.text-heading {
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-size: 30px;
|
||||
line-height: 36px;
|
||||
color: #0f172a;
|
||||
padding: 24px 0px 12px 0px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .logo-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.astra-sites-welcome .logo-section img {
|
||||
width: 24px;
|
||||
}
|
||||
.astra-sites-welcome .logo-section h3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 30px;
|
||||
text-align: left;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .button-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.astra-sites-welcome a.text-button {
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
padding: 10px 16px;
|
||||
max-width: fit-content;
|
||||
border-radius: 6px;
|
||||
background: #2271b1;
|
||||
box-shadow: 0px 1px 2px 0px rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
|
||||
.astra-sites-welcome a.scratch-link {
|
||||
color: #475569;
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
display: inline-block;
|
||||
width: fit-content;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .content-section {
|
||||
display: flex;
|
||||
padding: 20px 16px;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
flex: 1 0 0;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .content-section:hover {
|
||||
border-radius: 6px;
|
||||
background: var( --Colors-base-white, #fff );
|
||||
box-shadow: 0px 8px 22px 0px rgba( 0, 0, 0, 0.08 );
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: flex;
|
||||
padding: 32px 60px;
|
||||
align-items: flex-start;
|
||||
gap: 32px;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .icon-section {
|
||||
border-radius: 24px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .link-section h4 {
|
||||
margin: 0;
|
||||
color: var( --gray-900, #111827 );
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-content-container .link-section p {
|
||||
margin-bottom: 8px;
|
||||
padding: 0;
|
||||
color: var( --gray-500, #6b7280 );
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 20px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section p {
|
||||
color: var( --Theme-Body, #475569 );
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .text-section p {
|
||||
margin-bottom: 24px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome.notice.is-dismissible {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome.notice {
|
||||
padding: 0;
|
||||
border-left-width: 0;
|
||||
border: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-dismiss:before {
|
||||
background-image: url( ../images/cross.svg );
|
||||
content: "";
|
||||
position: relative;
|
||||
background-size: 10px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center top;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .notice-dismiss {
|
||||
top: 3px;
|
||||
right: 3px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .link-section .link-text {
|
||||
display: flex;
|
||||
text-decoration: none;
|
||||
gap: 8px;
|
||||
border-radius: 4px;
|
||||
color: #5d5e61;
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.astra-sites-welcome .content-section {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media only screen and ( min-width: 1024px ) and ( max-width: 1280px ) {
|
||||
.astra-sites-welcome .notice-content-container .link-section h4 {
|
||||
font-size: 14px;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container .link-section p {
|
||||
font-size: 12px;
|
||||
}
|
||||
.astra-sites-welcome .link-section .link-text {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( min-width: 768px ) and ( max-width: 1024px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 75.5%;
|
||||
padding-left: 28px;
|
||||
padding-top: 38px;
|
||||
padding-bottom: 38px;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( max-width: 767px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 80.5%;
|
||||
padding: 32px 0 32px 32px;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and ( max-width: 420px ) {
|
||||
.astra-sites-welcome .text-section {
|
||||
flex: 0 0 86.5%;
|
||||
text-align: center;
|
||||
}
|
||||
.astra-sites-welcome .button-section {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.astra-sites-welcome .logo-section {
|
||||
justify-content: center;
|
||||
}
|
||||
.astra-sites-welcome h1.text-heading {
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.astra-sites-welcome .showcase-section img {
|
||||
display: none;
|
||||
}
|
||||
.astra-sites-welcome .notice-content-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,283 @@
|
||||
.dialog-widget-content {
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: -2px 8px 23px 3px rgba( 0, 0, 0, 0.2 );
|
||||
box-shadow: -2px 8px 23px 3px rgba( 0, 0, 0, 0.2 );
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dialog-message {
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
right: 0;
|
||||
background-color: rgba( 0, 0, 0, 0.8 );
|
||||
z-index: 9999;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-widget-content {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-header {
|
||||
font-size: 15px;
|
||||
color: #495157;
|
||||
padding: 30px 0 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-message {
|
||||
padding: 0 30px 30px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox:not( .elementor-popup-modal ) .dialog-header,
|
||||
.dialog-type-lightbox:not( .elementor-popup-modal ) .dialog-message {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper {
|
||||
border-top: 1px solid #e6e9ec;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button {
|
||||
font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
|
||||
width: 50%;
|
||||
border: none;
|
||||
background: none;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
padding: 13px 0;
|
||||
outline: 0;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:hover {
|
||||
background-color: #f4f6f7;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-ok {
|
||||
color: #b01b1b;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-take_over {
|
||||
color: #39b54a;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:active {
|
||||
background-color: rgba( 230, 233, 236, 0.5 );
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button::-moz-focus-inner {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
|
||||
background-color: #f1f3f5;
|
||||
width: 100%;
|
||||
}
|
||||
@media ( max-width: 1439px ) {
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
max-width: 990px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1440px ) {
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-header {
|
||||
padding: 0;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-buttons-wrapper {
|
||||
background-color: #fff;
|
||||
border: none;
|
||||
display: none;
|
||||
-webkit-box-pack: end;
|
||||
-webkit-justify-content: flex-end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
padding: 5px;
|
||||
-webkit-box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
position: relative;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button {
|
||||
height: 40px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button-success {
|
||||
padding: 12px 36px;
|
||||
color: #fff;
|
||||
width: initial;
|
||||
font-size: 15px;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button-success:hover {
|
||||
background-color: #39b54a;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-message {
|
||||
height: 750px;
|
||||
max-height: 85vh;
|
||||
overflow: auto;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-loading {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-sites-modal__header {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
height: 50px;
|
||||
}
|
||||
.ast-sites-modal__header__logo {
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__logo-area {
|
||||
text-align: right;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.ast-sites-modal__header__logo-area > * {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.ast-sites-modal__header__logo__icon-wrapper {
|
||||
padding: 4px 7px 6px;
|
||||
background-image: -webkit-linear-gradient( -225deg, #f2295b, #434363 );
|
||||
background-image: -o-linear-gradient( -225deg, #f2295b, #434363 );
|
||||
background-image: linear-gradient( 135deg, #f2295b, #434363 );
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.ast-sites-modal__header__logo__title {
|
||||
padding-top: 2px;
|
||||
}
|
||||
.ast-sites-modal__header__logo i {
|
||||
color: #fff;
|
||||
font-size: 10px;
|
||||
}
|
||||
.ast-sites-modal__header__items-area {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: reverse;
|
||||
-webkit-flex-direction: row-reverse;
|
||||
-ms-flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
.ast-sites-modal__header__item {
|
||||
position: relative;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.ast-sites-modal__header__item > i {
|
||||
font-size: 20px;
|
||||
-webkit-transition: all 0.3s;
|
||||
-o-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__item > i:not( :hover ) {
|
||||
color: #a4afb7;
|
||||
}
|
||||
.ast-sites-modal__header__close--normal {
|
||||
width: 45px;
|
||||
border-right: 1px solid #e6e9ec;
|
||||
}
|
||||
.ast-sites-modal__header__close--normal i {
|
||||
font-size: 18px;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip {
|
||||
padding: 10px;
|
||||
padding-right: 20px;
|
||||
margin-left: 10px;
|
||||
color: #fff;
|
||||
background-color: #a4afb7;
|
||||
font-size: 11px;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip > i {
|
||||
font-size: inherit;
|
||||
padding-right: 10px;
|
||||
margin-right: 15px;
|
||||
border-right: 1px solid;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip > i:not( :hover ) {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ast-sites-modal__sidebar {
|
||||
width: 25%;
|
||||
background-color: rgba( 255, 255, 255, 0.3 );
|
||||
}
|
||||
|
||||
.ast-sites-modal__content {
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
-webkit-box-shadow: 0 0 13px inset rgba( 0, 0, 0, 0.05 );
|
||||
box-shadow: 0 0 13px inset rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
@@ -0,0 +1,283 @@
|
||||
.dialog-widget-content {
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: 2px 8px 23px 3px rgba( 0, 0, 0, 0.2 );
|
||||
box-shadow: 2px 8px 23px 3px rgba( 0, 0, 0, 0.2 );
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dialog-message {
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba( 0, 0, 0, 0.8 );
|
||||
z-index: 9999;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-widget-content {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-header {
|
||||
font-size: 15px;
|
||||
color: #495157;
|
||||
padding: 30px 0 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-message {
|
||||
padding: 0 30px 30px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox:not( .elementor-popup-modal ) .dialog-header,
|
||||
.dialog-type-lightbox:not( .elementor-popup-modal ) .dialog-message {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper {
|
||||
border-top: 1px solid #e6e9ec;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button {
|
||||
font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
|
||||
width: 50%;
|
||||
border: none;
|
||||
background: none;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
padding: 13px 0;
|
||||
outline: 0;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:hover {
|
||||
background-color: #f4f6f7;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-ok {
|
||||
color: #b01b1b;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-take_over {
|
||||
color: #39b54a;
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:active {
|
||||
background-color: rgba( 230, 233, 236, 0.5 );
|
||||
}
|
||||
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button::-moz-focus-inner {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
|
||||
background-color: #f1f3f5;
|
||||
width: 100%;
|
||||
}
|
||||
@media ( max-width: 1439px ) {
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
max-width: 990px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1440px ) {
|
||||
.ast-sites-modal .dialog-widget-content {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-header {
|
||||
padding: 0;
|
||||
background-color: #fff;
|
||||
-webkit-box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-buttons-wrapper {
|
||||
background-color: #fff;
|
||||
border: none;
|
||||
display: none;
|
||||
-webkit-box-pack: end;
|
||||
-webkit-justify-content: flex-end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
padding: 5px;
|
||||
-webkit-box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
position: relative;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button {
|
||||
height: 40px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button-success {
|
||||
padding: 12px 36px;
|
||||
color: #fff;
|
||||
width: initial;
|
||||
font-size: 15px;
|
||||
}
|
||||
.ast-sites-modal .dialog-buttons-wrapper .elementor-button-success:hover {
|
||||
background-color: #39b54a;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-message {
|
||||
height: 750px;
|
||||
max-height: 85vh;
|
||||
overflow: auto;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ast-sites-modal .dialog-loading {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-sites-modal__header {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
height: 50px;
|
||||
}
|
||||
.ast-sites-modal__header__logo {
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__logo-area {
|
||||
text-align: left;
|
||||
padding-left: 15px;
|
||||
}
|
||||
.ast-sites-modal__header__logo-area > * {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.ast-sites-modal__header__logo__icon-wrapper {
|
||||
padding: 4px 7px 6px;
|
||||
background-image: -webkit-linear-gradient( 225deg, #f2295b, #434363 );
|
||||
background-image: -o-linear-gradient( 225deg, #f2295b, #434363 );
|
||||
background-image: linear-gradient( -135deg, #f2295b, #434363 );
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.ast-sites-modal__header__logo__title {
|
||||
padding-top: 2px;
|
||||
}
|
||||
.ast-sites-modal__header__logo i {
|
||||
color: #fff;
|
||||
font-size: 10px;
|
||||
}
|
||||
.ast-sites-modal__header__items-area {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: reverse;
|
||||
-webkit-flex-direction: row-reverse;
|
||||
-ms-flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
.ast-sites-modal__header__item {
|
||||
position: relative;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.ast-sites-modal__header__item > i {
|
||||
font-size: 20px;
|
||||
-webkit-transition: all 0.3s;
|
||||
-o-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__item > i:not( :hover ) {
|
||||
color: #a4afb7;
|
||||
}
|
||||
.ast-sites-modal__header__close--normal {
|
||||
width: 45px;
|
||||
border-left: 1px solid #e6e9ec;
|
||||
}
|
||||
.ast-sites-modal__header__close--normal i {
|
||||
font-size: 18px;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip {
|
||||
padding: 10px;
|
||||
padding-left: 20px;
|
||||
margin-right: 10px;
|
||||
color: #fff;
|
||||
background-color: #a4afb7;
|
||||
font-size: 11px;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip > i {
|
||||
font-size: inherit;
|
||||
padding-left: 10px;
|
||||
margin-left: 15px;
|
||||
border-left: 1px solid;
|
||||
}
|
||||
.ast-sites-modal__header__close--skip > i:not( :hover ) {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ast-sites-modal__sidebar {
|
||||
width: 25%;
|
||||
background-color: rgba( 255, 255, 255, 0.3 );
|
||||
}
|
||||
|
||||
.ast-sites-modal__content {
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
-webkit-box-shadow: 0 0 13px inset rgba( 0, 0, 0, 0.05 );
|
||||
box-shadow: 0 0 13px inset rgba( 0, 0, 0, 0.05 );
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
.ast-sites-dark-mode {
|
||||
--dark-mode-background-color: #1f2124;
|
||||
--dark-mode-background-hover-color: #2b2c31;
|
||||
--dark-mode-border-color: #3f444b;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-library-template-inner,
|
||||
.ast-sites-dark-mode #ast-sites-modal .inner,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-library-template:not( .elementor-template-library-template-page ) .elementor-template-library-template-footer,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites__sync-wrap:hover span,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__close--normal:hover i,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input {
|
||||
border-color: var( --dark-mode-border-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #e0e1e3 transparent transparent transparent;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-content-wrap::-webkit-scrollbar,
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar {
|
||||
background-color: #34383c;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-content-wrap::-webkit-scrollbar-thumb,
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar-thumb {
|
||||
background-color: #7d7e82;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #e0e1e3 transparent;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-floating-notice-wrap {
|
||||
background: #404349;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .notice-dismiss:before {
|
||||
color: #e0e1e3;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-widget-content,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-menu-item,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-sync-library-button span,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__item > i:not( :hover ),
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input,
|
||||
.ast-sites-dark-mode.astra-sites__elementor-open #ast-sites-modal .select2-container--default .select2-selection__rendered,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-no-sites h3,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip .dashicons-editor-help {
|
||||
color: #e0e1e3;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-widget-content,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-no-sites .inner {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-header {
|
||||
border-block-end: 1px solid #333438;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal.dialog-type-lightbox .dialog-header {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-tooltip-wrap::before {
|
||||
border: 8px solid #7d7e82;
|
||||
border-bottom-style: solid;
|
||||
border-right-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-tooltip-wrap {
|
||||
background: #7d7e82;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal #wp-filter-search-input {
|
||||
border-color: #d5dadf;
|
||||
border-block-end: 1px solid var( --dark-mode-border-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__logo,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip {
|
||||
border-left: 1px solid #32363a;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites__sync-wrap,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__close--normal,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip {
|
||||
border-right: 1px solid #32363a;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-menu-item.elementor-active {
|
||||
background-image: none;
|
||||
border-color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#ast-sites-modal .inner {
|
||||
border: 1px solid var( --dark-mode-border-color );
|
||||
}
|
||||
.ast-sites-dark-mode #ast-sites-modal .inner:hover {
|
||||
background: var( --dark-mode-background-hover-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .astra-blocks-filter option {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
.ast-sites-dark-mode .astra-blocks-filter option:hover {
|
||||
background: var( --dark-mode-background-hover-color );
|
||||
color: var( --dark-mode-border-color );
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
.ast-sites-dark-mode {
|
||||
--dark-mode-background-color: #1f2124;
|
||||
--dark-mode-background-hover-color: #2b2c31;
|
||||
--dark-mode-border-color: #3f444b;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-library-template-inner,
|
||||
.ast-sites-dark-mode #ast-sites-modal .inner,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-library-template:not( .elementor-template-library-template-page ) .elementor-template-library-template-footer,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites__sync-wrap:hover span,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__close--normal:hover i,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input {
|
||||
border-color: var( --dark-mode-border-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #e0e1e3 transparent transparent transparent;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-content-wrap::-webkit-scrollbar,
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar {
|
||||
background-color: #34383c;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-content-wrap::-webkit-scrollbar-thumb,
|
||||
.ast-sites-dark-mode #ast-sites-modal .single-site-pages::-webkit-scrollbar-thumb {
|
||||
background-color: #7d7e82;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #e0e1e3 transparent;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-floating-notice-wrap {
|
||||
background: #404349;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .notice-dismiss:before {
|
||||
color: #e0e1e3;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-widget-content,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-menu-item,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-sync-library-button span,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__item > i:not( :hover ),
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter,
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-order-input,
|
||||
.ast-sites-dark-mode.astra-sites__elementor-open #ast-sites-modal .select2-container--default .select2-selection__rendered,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-no-sites h3,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip .dashicons-editor-help {
|
||||
color: #e0e1e3;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-widget-content,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-no-sites .inner {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .dialog-header {
|
||||
border-block-end: 1px solid #333438;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal.dialog-type-lightbox .dialog-header {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-tooltip-wrap::before {
|
||||
border: 8px solid #7d7e82;
|
||||
border-bottom-style: solid;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-tooltip-wrap {
|
||||
background: #7d7e82;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal #wp-filter-search-input {
|
||||
border-color: #d5dadf;
|
||||
border-block-end: 1px solid var( --dark-mode-border-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__logo,
|
||||
.ast-sites-dark-mode #ast-sites-modal .back-to-layout,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip {
|
||||
border-right: 1px solid #32363a;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites__sync-wrap,
|
||||
.ast-sites-dark-mode #ast-sites-modal .ast-sites-modal__header__close--normal,
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-sites-tooltip {
|
||||
border-left: 1px solid #32363a;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .elementor-template-library-menu-item.elementor-active {
|
||||
background-image: none;
|
||||
border-color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#ast-sites-modal .inner {
|
||||
border: 1px solid var( --dark-mode-border-color );
|
||||
}
|
||||
.ast-sites-dark-mode #ast-sites-modal .inner:hover {
|
||||
background: var( --dark-mode-background-hover-color );
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode #ast-sites-modal .astra-blocks-filter {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.ast-sites-dark-mode .astra-blocks-filter option {
|
||||
background-color: var( --dark-mode-background-color );
|
||||
}
|
||||
.ast-sites-dark-mode .astra-blocks-filter option:hover {
|
||||
background: var( --dark-mode-background-hover-color );
|
||||
color: var( --dark-mode-border-color );
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,630 @@
|
||||
@font-face {
|
||||
font-family: "icomoon";
|
||||
src: url( "../fonts/astra-sites.eot?9i8jex" );
|
||||
src: url( "../fonts/astra-sites.eot?9i8jex#iefix" ) format( "embedded-opentype" ), url( "../fonts/astra-sites.ttf?9i8jex" ) format( "truetype" ), url( "../fonts/astra-sites.woff?9i8jex" ) format( "woff" ), url( "../fonts/astra-sites.svg?9i8jex#icomoon" ) format( "svg" );
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
[class^="ast-icon-"],
|
||||
[class*=" ast-icon-"] {
|
||||
font-family: "icomoon" !important;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.ast-icon-chevron-left:before {
|
||||
content: "\e904";
|
||||
}
|
||||
|
||||
.ast-icon-search:before {
|
||||
content: "\e900";
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__search.has-input + .search-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .search-icon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
color: #2b2b2b;
|
||||
opacity: 0.3;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__skeleton {
|
||||
column-count: 5;
|
||||
column-gap: 20px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__search-wrap {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin-left: 1%;
|
||||
}
|
||||
|
||||
.ast-attachments-browser input.ast-image__search {
|
||||
line-height: 1.8em;
|
||||
width: 620px;
|
||||
height: 35px;
|
||||
background: #fff;
|
||||
border-color: #d5dadf;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap.loaded .ast-image__list-img-wrap {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap.loaded .imported.ast-image__list-inner-wrap:before {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__list-img-overlay span,
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__save {
|
||||
color: #fff;
|
||||
}
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__list-img-overlay .ast-image__download-icon {
|
||||
color: #767676;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay span {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
width: calc( 100% - 20px );
|
||||
text-align: right;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon {
|
||||
margin: 10px;
|
||||
padding: 5px 7px;
|
||||
width: auto;
|
||||
border-radius: 2px;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
font-size: 16px;
|
||||
right: auto;
|
||||
background: #fff;
|
||||
color: #767676;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon:hover {
|
||||
color: #111;
|
||||
box-shadow: rgb( 0 0 0 / 30% ) 0px 4px 14px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon.installing:before {
|
||||
content: "\f463";
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
-webkit-animation: cssAnimation 2s linear infinite;
|
||||
-moz-animation: cssAnimation 2s linear infinite;
|
||||
-o-animation: cssAnimation 2s linear infinite;
|
||||
-ms-animation: cssAnimation 2s linear infinite;
|
||||
animation: cssAnimation 2s linear infinite;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-wrap {
|
||||
display: flex;
|
||||
opacity: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-wrap:hover {
|
||||
box-shadow: 0 3px 10px rgba( 0, 0, 0, 0.12 );
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba( 0, 0, 0, 0.4 );
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s, visibility 0s 0.5s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-inner-wrap:hover .ast-image__list-img-overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter-wrap {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap {
|
||||
margin-left: 25px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap > span {
|
||||
font-size: 12px;
|
||||
color: #50575e;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap > img {
|
||||
height: 1.2em;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-attachments-search-wrap {
|
||||
padding: 10px 20px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
display: block;
|
||||
height: 36px;
|
||||
align-items: center;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li {
|
||||
padding: 0 8px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li:first-child {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li select {
|
||||
height: 35px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.fl-builder .ast-attachments-browser .ast-image__filter li select {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__skeleton-inner-wrap {
|
||||
overflow-y: scroll;
|
||||
height: inherit;
|
||||
padding: 10px;
|
||||
padding-bottom: 0;
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .button.ast-image__validate-btn {
|
||||
height: 38px;
|
||||
line-height: 37px;
|
||||
padding: 0 15px 2px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser.preview-mode .ast-image__skeleton-inner-wrap {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
grid-template-rows: 1fr auto;
|
||||
margin-bottom: 20px;
|
||||
break-inside: avoid;
|
||||
}
|
||||
.ast-attachments-browser .ast-image__skeleton-wrap {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-inner-wrap img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-wrap {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview {
|
||||
height: auto;
|
||||
margin-left: 0;
|
||||
max-height: calc( 100vh - 280px );
|
||||
overflow-y: auto;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__preview-skeleton {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview img,
|
||||
.ast-attachments-browser .single-site-preview-wrap {
|
||||
width: 100%;
|
||||
}
|
||||
.ast-image__list-inner-wrap.imported {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .imported.ast-image__list-inner-wrap:before {
|
||||
content: "IMPORTED";
|
||||
background: rgba( 0, 0, 0, 0.5 );
|
||||
color: #fff;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
z-index: 9;
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__go-back {
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
align-items: center;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__go-back i {
|
||||
font-size: 14px;
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save-wrap {
|
||||
padding: 0 20px;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap {
|
||||
display: none;
|
||||
margin: 0 auto;
|
||||
min-height: 58px;
|
||||
line-height: 58px;
|
||||
width: 160px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 50%;
|
||||
bottom: 0;
|
||||
transform: translateX( 50% );
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap > div {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background-color: #0085ba;
|
||||
-webkit-border-radius: 100%;
|
||||
border-radius: 100%;
|
||||
display: inline-block;
|
||||
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap .ast-image__loader-1 {
|
||||
-webkit-animation-delay: -0.32s;
|
||||
animation-delay: -0.32s;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap .ast-image__loader-2 {
|
||||
-webkit-animation-delay: -0.16s;
|
||||
animation-delay: -0.16s;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-heading {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
margin-top: 0;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-description {
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
margin: 2em 4em;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-get-wrap {
|
||||
font-size: 1em;
|
||||
margin-top: 40px;
|
||||
padding: 18px;
|
||||
border-top: 1px solid #eae5e5;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-wrap {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-get-wrap h4 {
|
||||
color: #444;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .astra-sites-no-sites {
|
||||
width: 100%;
|
||||
padding: 7em 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .astra-sites-no-sites h3 {
|
||||
font-size: 1.3rem;
|
||||
font-weight: normal;
|
||||
color: #666;
|
||||
margin-top: 0;
|
||||
text-align: center;
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-heading-wrap {
|
||||
background: #fff;
|
||||
margin-bottom: 50px;
|
||||
padding: 16px 35px;
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
border-radius: 2px 2px 0 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-wrap {
|
||||
position: absolute;
|
||||
background: #fcfcfc;
|
||||
top: 50%;
|
||||
right: 50%;
|
||||
transform: translateX( 50% ) translateY( -40% );
|
||||
width: 600px;
|
||||
box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.15 );
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-inner-wrap {
|
||||
display: inline-grid;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-inner-wrap .ast-image__license-msg {
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #cc3333;
|
||||
border-radius: 2px;
|
||||
text-align: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
display: none;
|
||||
color: #cc3333;
|
||||
background: #ffeeee;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-msg i {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-msg span {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.ast-attachments-browser input.ast-image__license {
|
||||
margin-left: 10px;
|
||||
width: 300px;
|
||||
height: 40px;
|
||||
padding-right: 13px;
|
||||
border-color: #d6d6d6;
|
||||
}
|
||||
|
||||
.ast-attachments-browser li.ast-image__license-edit-key {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-right: 5px;
|
||||
align-items: center;
|
||||
border-right: 1px solid #ededed;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-edit-key + div {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser li.ast-image__license-edit-key a:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image-valid-license {
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
left: 20px;
|
||||
top: 0;
|
||||
color: green;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__browse-images {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ast-image__save.button-primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-image__filter-safesearch > label input {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save.installing:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save.installing:after {
|
||||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: middle;
|
||||
-webkit-animation: cssAnimation 0.72s ease infinite;
|
||||
-moz-animation: cssAnimation 0.72s ease infinite;
|
||||
-o-animation: cssAnimation 0.72s ease infinite;
|
||||
-ms-animation: cssAnimation 0.72s ease infinite;
|
||||
animation: cssAnimation 0.72s ease infinite;
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-right: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@-webkit-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( -360deg );
|
||||
-moz-transform: rotate( -360deg );
|
||||
-o-transform: rotate( -360deg );
|
||||
-ms-transform: rotate( -360deg );
|
||||
transform: rotate( -360deg );
|
||||
}
|
||||
}
|
||||
@-moz-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( -360deg );
|
||||
-moz-transform: rotate( -360deg );
|
||||
-o-transform: rotate( -360deg );
|
||||
-ms-transform: rotate( -360deg );
|
||||
transform: rotate( -360deg );
|
||||
}
|
||||
}
|
||||
@-o-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( -360deg );
|
||||
-moz-transform: rotate( -360deg );
|
||||
-o-transform: rotate( -360deg );
|
||||
-ms-transform: rotate( -360deg );
|
||||
transform: rotate( -360deg );
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes sk-bouncedelay {
|
||||
0%,
|
||||
80%,
|
||||
100% {
|
||||
-webkit-transform: scale( 0 );
|
||||
transform: scale( 0 );
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale( 1 );
|
||||
transform: scale( 1 );
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes sk-bouncedelay {
|
||||
0%,
|
||||
80%,
|
||||
100% {
|
||||
-webkit-transform: scale( 0 );
|
||||
transform: scale( 0 );
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale( 1 );
|
||||
transform: scale( 1 );
|
||||
}
|
||||
}
|
||||
|
||||
@media ( max-width: 767px ) {
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
width: 33.33%;
|
||||
}
|
||||
.ast-attachments-browser:not( .preview-mode ) .ast-attachments-search-wrap {
|
||||
display: inline-block;
|
||||
height: 76px;
|
||||
width: 100%;
|
||||
}
|
||||
.ast-attachments-browser .search-icon {
|
||||
right: 265px;
|
||||
}
|
||||
.ast-attachments-browser .imported.ast-image__list-inner-wrap:before {
|
||||
top: 15px;
|
||||
padding: 4px;
|
||||
margin: 0 15px 0 5px;
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
@media ( min-width: 768px ) and ( max-width: 1024px ) {
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
width: 33.33%;
|
||||
}
|
||||
.ast-attachments-browser .ast-image__filter li select {
|
||||
width: 100px;
|
||||
}
|
||||
.ast-attachments-browser input.ast-image__search {
|
||||
width: 240px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1025px ) and ( max-width: 1200px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 220px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1201px ) and ( max-width: 1321px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 360px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1322px ) and ( max-width: 1430px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 500px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,630 @@
|
||||
@font-face {
|
||||
font-family: "icomoon";
|
||||
src: url( "../fonts/astra-sites.eot?9i8jex" );
|
||||
src: url( "../fonts/astra-sites.eot?9i8jex#iefix" ) format( "embedded-opentype" ), url( "../fonts/astra-sites.ttf?9i8jex" ) format( "truetype" ), url( "../fonts/astra-sites.woff?9i8jex" ) format( "woff" ), url( "../fonts/astra-sites.svg?9i8jex#icomoon" ) format( "svg" );
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
[class^="ast-icon-"],
|
||||
[class*=" ast-icon-"] {
|
||||
font-family: "icomoon" !important;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.ast-icon-chevron-left:before {
|
||||
content: "\e904";
|
||||
}
|
||||
|
||||
.ast-icon-search:before {
|
||||
content: "\e900";
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__search.has-input + .search-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .search-icon {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #2b2b2b;
|
||||
opacity: 0.3;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__skeleton {
|
||||
column-count: 5;
|
||||
column-gap: 20px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__search-wrap {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin-right: 1%;
|
||||
}
|
||||
|
||||
.ast-attachments-browser input.ast-image__search {
|
||||
line-height: 1.8em;
|
||||
width: 620px;
|
||||
height: 35px;
|
||||
background: #fff;
|
||||
border-color: #d5dadf;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap.loaded .ast-image__list-img-wrap {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap.loaded .imported.ast-image__list-inner-wrap:before {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__list-img-overlay span,
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__save {
|
||||
color: #fff;
|
||||
}
|
||||
.fl-builder-edit .media-modal .media-frame-content .ast-image__list-img-overlay .ast-image__download-icon {
|
||||
color: #767676;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay span {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
width: calc( 100% - 20px );
|
||||
text-align: left;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon {
|
||||
margin: 10px;
|
||||
padding: 5px 7px;
|
||||
width: auto;
|
||||
border-radius: 2px;
|
||||
right: 0;
|
||||
text-align: right;
|
||||
font-size: 16px;
|
||||
left: auto;
|
||||
background: #fff;
|
||||
color: #767676;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon:hover {
|
||||
color: #111;
|
||||
box-shadow: rgb( 0 0 0 / 30% ) 0px 4px 14px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay .ast-image__download-icon.installing:before {
|
||||
content: "\f463";
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
-webkit-animation: cssAnimation 2s linear infinite;
|
||||
-moz-animation: cssAnimation 2s linear infinite;
|
||||
-o-animation: cssAnimation 2s linear infinite;
|
||||
-ms-animation: cssAnimation 2s linear infinite;
|
||||
animation: cssAnimation 2s linear infinite;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-wrap {
|
||||
display: flex;
|
||||
opacity: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-wrap:hover {
|
||||
box-shadow: 0 3px 10px rgba( 0, 0, 0, 0.12 );
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-img-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba( 0, 0, 0, 0.4 );
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s, visibility 0s 0.5s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-inner-wrap:hover .ast-image__list-img-overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter-wrap {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap {
|
||||
margin-right: 25px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap > span {
|
||||
font-size: 12px;
|
||||
color: #50575e;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.ast-powered-by-pixabay-wrap > img {
|
||||
height: 1.2em;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-attachments-search-wrap {
|
||||
padding: 10px 20px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
display: block;
|
||||
height: 36px;
|
||||
align-items: center;
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li {
|
||||
padding: 0 8px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li:first-child {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__filter li select {
|
||||
height: 35px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.fl-builder .ast-attachments-browser .ast-image__filter li select {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__skeleton-inner-wrap {
|
||||
overflow-y: scroll;
|
||||
height: inherit;
|
||||
padding: 10px;
|
||||
padding-bottom: 0;
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .button.ast-image__validate-btn {
|
||||
height: 38px;
|
||||
line-height: 37px;
|
||||
padding: 0 15px 2px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser.preview-mode .ast-image__skeleton-inner-wrap {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
grid-template-rows: 1fr auto;
|
||||
margin-bottom: 20px;
|
||||
break-inside: avoid;
|
||||
}
|
||||
.ast-attachments-browser .ast-image__skeleton-wrap {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__list-inner-wrap img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-wrap {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview {
|
||||
height: auto;
|
||||
margin-right: 0;
|
||||
max-height: calc( 100vh - 280px );
|
||||
overflow-y: auto;
|
||||
border-radius: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__preview-skeleton {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .single-site-preview img,
|
||||
.ast-attachments-browser .single-site-preview-wrap {
|
||||
width: 100%;
|
||||
}
|
||||
.ast-image__list-inner-wrap.imported {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .imported.ast-image__list-inner-wrap:before {
|
||||
content: "IMPORTED";
|
||||
background: rgba( 0, 0, 0, 0.5 );
|
||||
color: #fff;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
z-index: 9;
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__go-back {
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
align-items: center;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__go-back i {
|
||||
font-size: 14px;
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save-wrap {
|
||||
padding: 0 20px;
|
||||
display: inline-block;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap {
|
||||
display: none;
|
||||
margin: 0 auto;
|
||||
min-height: 58px;
|
||||
line-height: 58px;
|
||||
width: 160px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: 0;
|
||||
transform: translateX( -50% );
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap > div {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background-color: #0085ba;
|
||||
-webkit-border-radius: 100%;
|
||||
border-radius: 100%;
|
||||
display: inline-block;
|
||||
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap .ast-image__loader-1 {
|
||||
-webkit-animation-delay: -0.32s;
|
||||
animation-delay: -0.32s;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__loader-wrap .ast-image__loader-2 {
|
||||
-webkit-animation-delay: -0.16s;
|
||||
animation-delay: -0.16s;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-heading {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 1.4em;
|
||||
font-weight: 600;
|
||||
margin-top: 0;
|
||||
color: #23282d;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-description {
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
margin: 2em 4em;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-get-wrap {
|
||||
font-size: 1em;
|
||||
margin-top: 40px;
|
||||
padding: 18px;
|
||||
border-top: 1px solid #eae5e5;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-wrap {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-get-wrap h4 {
|
||||
color: #444;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .astra-sites-no-sites {
|
||||
width: 100%;
|
||||
padding: 7em 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .astra-sites-no-sites h3 {
|
||||
font-size: 1.3rem;
|
||||
font-weight: normal;
|
||||
color: #666;
|
||||
margin-top: 0;
|
||||
text-align: center;
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-heading-wrap {
|
||||
background: #fff;
|
||||
margin-bottom: 50px;
|
||||
padding: 16px 35px;
|
||||
box-shadow: 0 0 8px rgba( 0, 0, 0, 0.1 );
|
||||
border-radius: 2px 2px 0 0;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-wrap {
|
||||
position: absolute;
|
||||
background: #fcfcfc;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX( -50% ) translateY( -40% );
|
||||
width: 600px;
|
||||
box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.15 );
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-inner-wrap {
|
||||
display: inline-grid;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-input-inner-wrap .ast-image__license-msg {
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #cc3333;
|
||||
border-radius: 2px;
|
||||
text-align: left;
|
||||
margin-right: 10px;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px;
|
||||
margin-left: 0;
|
||||
display: none;
|
||||
color: #cc3333;
|
||||
background: #ffeeee;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-msg i {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-msg span {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.ast-attachments-browser input.ast-image__license {
|
||||
margin-right: 10px;
|
||||
width: 300px;
|
||||
height: 40px;
|
||||
padding-left: 13px;
|
||||
border-color: #d6d6d6;
|
||||
}
|
||||
|
||||
.ast-attachments-browser li.ast-image__license-edit-key {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-left: 5px;
|
||||
align-items: center;
|
||||
border-left: 1px solid #ededed;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__license-edit-key + div {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser li.ast-image__license-edit-key a:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image-valid-license {
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: 0;
|
||||
color: green;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__browse-images {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ast-image__save.button-primary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ast-image__filter-safesearch > label input {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save.installing:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ast-attachments-browser .ast-image__save.installing:after {
|
||||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: middle;
|
||||
-webkit-animation: cssAnimation 0.72s ease infinite;
|
||||
-moz-animation: cssAnimation 0.72s ease infinite;
|
||||
-o-animation: cssAnimation 0.72s ease infinite;
|
||||
-ms-animation: cssAnimation 0.72s ease infinite;
|
||||
animation: cssAnimation 0.72s ease infinite;
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-left: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@-webkit-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( 360deg );
|
||||
-moz-transform: rotate( 360deg );
|
||||
-o-transform: rotate( 360deg );
|
||||
-ms-transform: rotate( 360deg );
|
||||
transform: rotate( 360deg );
|
||||
}
|
||||
}
|
||||
@-moz-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( 360deg );
|
||||
-moz-transform: rotate( 360deg );
|
||||
-o-transform: rotate( 360deg );
|
||||
-ms-transform: rotate( 360deg );
|
||||
transform: rotate( 360deg );
|
||||
}
|
||||
}
|
||||
@-o-keyframes cssAnimation {
|
||||
from {
|
||||
-webkit-transform: rotate( 0 );
|
||||
-moz-transform: rotate( 0 );
|
||||
-o-transform: rotate( 0 );
|
||||
-ms-transform: rotate( 0 );
|
||||
transform: rotate( 0 );
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate( 360deg );
|
||||
-moz-transform: rotate( 360deg );
|
||||
-o-transform: rotate( 360deg );
|
||||
-ms-transform: rotate( 360deg );
|
||||
transform: rotate( 360deg );
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes sk-bouncedelay {
|
||||
0%,
|
||||
80%,
|
||||
100% {
|
||||
-webkit-transform: scale( 0 );
|
||||
transform: scale( 0 );
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale( 1 );
|
||||
transform: scale( 1 );
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes sk-bouncedelay {
|
||||
0%,
|
||||
80%,
|
||||
100% {
|
||||
-webkit-transform: scale( 0 );
|
||||
transform: scale( 0 );
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale( 1 );
|
||||
transform: scale( 1 );
|
||||
}
|
||||
}
|
||||
|
||||
@media ( max-width: 767px ) {
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
width: 33.33%;
|
||||
}
|
||||
.ast-attachments-browser:not( .preview-mode ) .ast-attachments-search-wrap {
|
||||
display: inline-block;
|
||||
height: 76px;
|
||||
width: 100%;
|
||||
}
|
||||
.ast-attachments-browser .search-icon {
|
||||
left: 265px;
|
||||
}
|
||||
.ast-attachments-browser .imported.ast-image__list-inner-wrap:before {
|
||||
top: 15px;
|
||||
padding: 4px;
|
||||
margin: 0 5px 0 15px;
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
@media ( min-width: 768px ) and ( max-width: 1024px ) {
|
||||
.ast-attachments-browser .ast-image__list-wrap {
|
||||
width: 33.33%;
|
||||
}
|
||||
.ast-attachments-browser .ast-image__filter li select {
|
||||
width: 100px;
|
||||
}
|
||||
.ast-attachments-browser input.ast-image__search {
|
||||
width: 240px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1025px ) and ( max-width: 1200px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 220px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1201px ) and ( max-width: 1321px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 360px;
|
||||
}
|
||||
}
|
||||
@media ( min-width: 1322px ) and ( max-width: 1430px ) {
|
||||
.ast-attachments-search-wrap .ast-image__search-wrap input {
|
||||
width: 500px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
#wpadminbar #astra-sites-import-status-admin-bar {
|
||||
padding-right: 10px;
|
||||
border-right: 1px solid #3d4349;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen.failed .import-step:before {
|
||||
content: "\f335";
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .dashicons-external {
|
||||
font-size: inherit;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#astra-sites-import-status-admin-bar .dashicons {
|
||||
font-family: "dashicons";
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
speak: none;
|
||||
text-decoration: inherit;
|
||||
text-transform: none;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
font-size: 20px;
|
||||
vertical-align: text-top;
|
||||
text-align: center;
|
||||
transition: color 0.1s ease-in;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#astra-sites-import-status-admin-bar .loading::before {
|
||||
color: #9ea3a8;
|
||||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
animation: rotation 2s infinite linear;
|
||||
margin: 5px -2px 0 5px;
|
||||
font-weight: revert;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-steps {
|
||||
padding: 1.5em 1.5em 1em 1em;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.processing:before {
|
||||
content: "\f463";
|
||||
animation: rotation 2s infinite linear;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step:before {
|
||||
color: #9ea3a8;
|
||||
content: "\f139";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
font-weight: revert;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.success::before {
|
||||
content: "\f147";
|
||||
color: #4caf50;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.fail::before {
|
||||
color: #ff5722;
|
||||
content: "\f335";
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .footer {
|
||||
text-align: right;
|
||||
padding: 10px 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .content {
|
||||
text-align: right;
|
||||
padding: 2em 5em 4em 5em;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .view-site-button .dashicons {
|
||||
font-size: initial;
|
||||
vertical-align: middle;
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
#wpadminbar #astra-sites-import-status-admin-bar {
|
||||
padding-left: 10px;
|
||||
border-left: 1px solid #3d4349;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen.failed .import-step:before {
|
||||
content: "\f335";
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .dashicons-external {
|
||||
font-size: inherit;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#astra-sites-import-status-admin-bar .dashicons {
|
||||
font-family: "dashicons";
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
speak: none;
|
||||
text-decoration: inherit;
|
||||
text-transform: none;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
font-size: 20px;
|
||||
vertical-align: text-top;
|
||||
text-align: center;
|
||||
transition: color 0.1s ease-in;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
#astra-sites-import-status-admin-bar .loading::before {
|
||||
color: #9ea3a8;
|
||||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
animation: rotation 2s infinite linear;
|
||||
margin: 5px 5px 0 -2px;
|
||||
font-weight: revert;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-steps {
|
||||
padding: 1.5em 1em 1em 1.5em;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.processing:before {
|
||||
content: "\f463";
|
||||
animation: rotation 2s infinite linear;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step:before {
|
||||
color: #9ea3a8;
|
||||
content: "\f139";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
font-weight: revert;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.success::before {
|
||||
content: "\f147";
|
||||
color: #4caf50;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .import-step.fail::before {
|
||||
color: #ff5722;
|
||||
content: "\f335";
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .footer {
|
||||
text-align: left;
|
||||
padding: 10px 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .content {
|
||||
text-align: left;
|
||||
padding: 2em 5em 4em 5em;
|
||||
}
|
||||
|
||||
.astra-sites-import-screen .view-site-button .dashicons {
|
||||
font-size: initial;
|
||||
vertical-align: middle;
|
||||
}
|
||||
@@ -0,0 +1,303 @@
|
||||
.notice:not( .ast-img-notice ) {
|
||||
display: none;
|
||||
}
|
||||
.ast-img-flex {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.form-field p.ast-img-p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.ast-img-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.form-wrap .ast-img-response-warning {
|
||||
display: block;
|
||||
color: #d02222;
|
||||
}
|
||||
.form-wrap .ast-img-google-error-response {
|
||||
margin-top: 5px;
|
||||
display: block;
|
||||
}
|
||||
.form-wrap .ast-img-google-error-response .ast-img-response-warning {
|
||||
display: inline-block;
|
||||
}
|
||||
.form-wrap .ast-img-response-success {
|
||||
display: block;
|
||||
color: #2dbe15;
|
||||
}
|
||||
.postbox .inside .form-wrap .ast-img-integration-heading {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
#ast-img-menu-page .ast-img-notice {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ast-img-menu-page-wrapper a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ast-img-general-form-wrap {
|
||||
width: 680px;
|
||||
}
|
||||
|
||||
.ast-img-bulk-actions-wrap {
|
||||
flex: auto;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.ast-img-general-list .inside {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list li {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
padding: 10px 12px;
|
||||
-moz-box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
-webkit-box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list li:nth-child( even ) {
|
||||
background-color: #fbfbfb;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list .activate {
|
||||
border-right: 3px solid #008ec2;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.ast-img-widget-list a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ast-img-widget-link-wrapper {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
display: -webkit-flex;
|
||||
-webkit-flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
.ast-img-widget-list li a:before {
|
||||
display: inline-block;
|
||||
margin-left: 2px;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ast-img-widget-link-wrapper a:nth-child( even ) {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.ast-img-container .postbox .hndle {
|
||||
background: #f7f7f7;
|
||||
border-bottom: 2px solid #e6e6e6;
|
||||
}
|
||||
.ast-img-container .postbox ul {
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-widget-list a {
|
||||
line-height: 1.6;
|
||||
}
|
||||
.ast-img-widget-list a:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-img-branding-list {
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-menu-page-wrapper .ast-img-container .clear {
|
||||
overflow: auto;
|
||||
visibility: visible;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Update icon. */
|
||||
.ast-img-widget-link-wrapper a.updating-message:before {
|
||||
color: #f56e28;
|
||||
content: "\f463";
|
||||
}
|
||||
|
||||
/* Spins the update icon. */
|
||||
.ast-img-widget-link-wrapper a.updating-message:before {
|
||||
-webkit-animation: rotation 2s infinite linear;
|
||||
animation: rotation 2s infinite linear;
|
||||
}
|
||||
|
||||
.settings_page_astra-images #wpcontent {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.ast-img-menu-page-header.general .ast-img-container,
|
||||
.ast-img-menu-page-header.branding .ast-img-container,
|
||||
.ast-img-container.ast-img-general,
|
||||
.ast-img-container.ast-img-branding-wrapper {
|
||||
max-width: 930px;
|
||||
}
|
||||
.ast-img-title {
|
||||
flex: auto;
|
||||
align-content: flex-start;
|
||||
text-align: right;
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-title a,
|
||||
.ast-img-title span {
|
||||
display: block;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
font-size: 1.5rem;
|
||||
color: #333333;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.ast-img-header-icon {
|
||||
width: 50px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.ast-img-top-links {
|
||||
flex: auto;
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ast-img-menu-page-header {
|
||||
background-color: #fff;
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 2px 0 #efefef, 0 2px 2px #ececec;
|
||||
}
|
||||
|
||||
/* White Label link*/
|
||||
.ast-img-widget-list .ast-img-white-label {
|
||||
border-right: 3px solid #008ec2;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.ast-img-hide-branding #poststuff #post-body.columns-2 {
|
||||
margin: 0 auto;
|
||||
max-width: 590px;
|
||||
}
|
||||
|
||||
/* Integration */
|
||||
.ast-img-integration-wrapper #poststuff {
|
||||
width: 640px;
|
||||
margin: 0 auto;
|
||||
min-width: 640px;
|
||||
}
|
||||
|
||||
.ast-img-integration-form-wrap .form-field select {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
/* Spinner */
|
||||
.ast-img-button-spinner:before {
|
||||
font: normal 20px/0.5 dashicons;
|
||||
speak: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
top: 8px;
|
||||
right: -4px;
|
||||
position: relative;
|
||||
vertical-align: top;
|
||||
content: "\f463";
|
||||
}
|
||||
|
||||
.ast-img-button-spinner.loading:before {
|
||||
-webkit-animation: rotation 1s infinite linear;
|
||||
animation: rotation 1s infinite linear;
|
||||
}
|
||||
|
||||
.ast-img-title > a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.ast-img-title .ast-img-plugin-version {
|
||||
background-color: #e5e5e5;
|
||||
border-radius: 3px;
|
||||
font-size: 0.5em;
|
||||
font-weight: 400;
|
||||
margin-right: 10px;
|
||||
padding: 2px 7px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* New extensions badge */
|
||||
#Particles .ast-img-widget-title:after {
|
||||
content: "extension";
|
||||
color: #fff;
|
||||
background: #2ecc71;
|
||||
font-size: 0.7em;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
padding: 0.3em 0.6em;
|
||||
top: -1px;
|
||||
right: 12px;
|
||||
letter-spacing: 0.5px;
|
||||
line-height: 1em;
|
||||
text-transform: none;
|
||||
text-transform: uppercase !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
@@ -0,0 +1,303 @@
|
||||
.notice:not( .ast-img-notice ) {
|
||||
display: none;
|
||||
}
|
||||
.ast-img-flex {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.form-field p.ast-img-p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.ast-img-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.form-wrap .ast-img-response-warning {
|
||||
display: block;
|
||||
color: #d02222;
|
||||
}
|
||||
.form-wrap .ast-img-google-error-response {
|
||||
margin-top: 5px;
|
||||
display: block;
|
||||
}
|
||||
.form-wrap .ast-img-google-error-response .ast-img-response-warning {
|
||||
display: inline-block;
|
||||
}
|
||||
.form-wrap .ast-img-response-success {
|
||||
display: block;
|
||||
color: #2dbe15;
|
||||
}
|
||||
.postbox .inside .form-wrap .ast-img-integration-heading {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
}
|
||||
#ast-img-menu-page .ast-img-notice {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ast-img-menu-page-wrapper a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ast-img-general-form-wrap {
|
||||
width: 680px;
|
||||
}
|
||||
|
||||
.ast-img-bulk-actions-wrap {
|
||||
flex: auto;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ast-img-general-list .inside {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list li {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
padding: 10px 12px;
|
||||
-moz-box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
-webkit-box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
box-shadow: 0px 0px 2px rgba( 0, 0, 0, 0.1 ) inset;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list li:nth-child( even ) {
|
||||
background-color: #fbfbfb;
|
||||
}
|
||||
|
||||
.ast-img-list-section .ast-img-widget-list .activate {
|
||||
border-left: 3px solid #008ec2;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.ast-img-widget-list a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ast-img-widget-link-wrapper {
|
||||
-js-display: flex;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-align-content: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
display: -webkit-flex;
|
||||
-webkit-flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
.ast-img-widget-list li a:before {
|
||||
display: inline-block;
|
||||
margin-right: 2px;
|
||||
font: normal 20px/1 "dashicons";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.ast-img-widget-link-wrapper a:nth-child( even ) {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.ast-img-container .postbox .hndle {
|
||||
background: #f7f7f7;
|
||||
border-bottom: 2px solid #e6e6e6;
|
||||
}
|
||||
.ast-img-container .postbox ul {
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-widget-list a {
|
||||
line-height: 1.6;
|
||||
}
|
||||
.ast-img-widget-list a:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.ast-img-branding-list {
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-menu-page-wrapper .ast-img-container .clear {
|
||||
overflow: auto;
|
||||
visibility: visible;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Update icon. */
|
||||
.ast-img-widget-link-wrapper a.updating-message:before {
|
||||
color: #f56e28;
|
||||
content: "\f463";
|
||||
}
|
||||
|
||||
/* Spins the update icon. */
|
||||
.ast-img-widget-link-wrapper a.updating-message:before {
|
||||
-webkit-animation: rotation 2s infinite linear;
|
||||
animation: rotation 2s infinite linear;
|
||||
}
|
||||
|
||||
.settings_page_astra-images #wpcontent {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.ast-img-menu-page-header.general .ast-img-container,
|
||||
.ast-img-menu-page-header.branding .ast-img-container,
|
||||
.ast-img-container.ast-img-general,
|
||||
.ast-img-container.ast-img-branding-wrapper {
|
||||
max-width: 930px;
|
||||
}
|
||||
.ast-img-title {
|
||||
flex: auto;
|
||||
align-content: flex-start;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
}
|
||||
.ast-img-title a,
|
||||
.ast-img-title span {
|
||||
display: block;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
font-size: 1.5rem;
|
||||
color: #333333;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.ast-img-header-icon {
|
||||
width: 50px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.ast-img-top-links {
|
||||
flex: auto;
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ast-img-menu-page-header {
|
||||
background-color: #fff;
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 2px 0 #efefef, 0 2px 2px #ececec;
|
||||
}
|
||||
|
||||
/* White Label link*/
|
||||
.ast-img-widget-list .ast-img-white-label {
|
||||
border-left: 3px solid #008ec2;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.ast-img-hide-branding #poststuff #post-body.columns-2 {
|
||||
margin: 0 auto;
|
||||
max-width: 590px;
|
||||
}
|
||||
|
||||
/* Integration */
|
||||
.ast-img-integration-wrapper #poststuff {
|
||||
width: 640px;
|
||||
margin: 0 auto;
|
||||
min-width: 640px;
|
||||
}
|
||||
|
||||
.ast-img-integration-form-wrap .form-field select {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
/* Spinner */
|
||||
.ast-img-button-spinner:before {
|
||||
font: normal 20px/0.5 dashicons;
|
||||
speak: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
top: 8px;
|
||||
left: -4px;
|
||||
position: relative;
|
||||
vertical-align: top;
|
||||
content: "\f463";
|
||||
}
|
||||
|
||||
.ast-img-button-spinner.loading:before {
|
||||
-webkit-animation: rotation 1s infinite linear;
|
||||
animation: rotation 1s infinite linear;
|
||||
}
|
||||
|
||||
.ast-img-title > a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.ast-img-title .ast-img-plugin-version {
|
||||
background-color: #e5e5e5;
|
||||
border-radius: 3px;
|
||||
font-size: 0.5em;
|
||||
font-weight: 400;
|
||||
margin-left: 10px;
|
||||
padding: 2px 7px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* New extensions badge */
|
||||
#Particles .ast-img-widget-title:after {
|
||||
content: "extension";
|
||||
color: #fff;
|
||||
background: #2ecc71;
|
||||
font-size: 0.7em;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
padding: 0.3em 0.6em;
|
||||
top: -1px;
|
||||
left: 12px;
|
||||
letter-spacing: 0.5px;
|
||||
line-height: 1em;
|
||||
text-transform: none;
|
||||
text-transform: uppercase !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
Reference in New Issue
Block a user