File manager - Edit - /home/monara/public_html/test.athavaneng.com/modules.tar
Back
vc_welcome.less 0000644 00000005037 15073227211 0007564 0 ustar 00 @import "ui/vc_ui-button.less"; @import "ui/vc_ui-helper.less"; @import "ui/vc_ui-icon-pixel.less"; @vc-welcome-border: rgba(125, 125, 125, 0.40); @vc-welcome-margin: 14px; @vc-welcome-base-font-size: 14px; @vc-welcome-gap: 20px; @vc-welcome-header-font-size: 32px; @vc-welcome-header-line-height: 1.2em; @vc-welcome-header-font-color: #35444B; .vc_welcome { margin: @vc-welcome-margin; font-size: @vc-welcome-base-font-size; text-align: center; padding: @vc-welcome-gap; // buttons behavior .vc_ui-btn-group { margin-top: @vc-welcome-gap; margin-bottom: @vc-welcome-gap; } .vc_ui-button { margin: @vc-welcome-gap / 2; margin-bottom: 0; min-width: 190px; text-transform: capitalize; display: inline-flex; justify-content: center; text-decoration: none !important; align-items: center; .vc-composer-icon { font-size: 19px; padding: 0 .7em 0 0; } .vc-composer-icon.vc-c-icon-text-block { font-size: 16px; } } // icon behaviour .vc_ui-icon-pixel { padding-right: .5em; } } .vc_welcome-brand { margin-top: @vc-welcome-gap; margin-bottom: @vc-welcome-gap * 1.5; text-align: center; img { box-shadow: none; display: inline-block; } } .vc_welcome-header { font-weight: 300; font-size: @vc-welcome-header-font-size; line-height: @vc-welcome-header-line-height; color: @vc-welcome-header-font-color; text-transform: uppercase; margin-top: @vc-welcome-gap; margin-bottom: @vc-welcome-gap * 2; } .vc_add-element-not-empty-button { display: inline-block; position: relative; font-size: 18px; color: #FFFFFF !important; // override theme color width: 39px; height: 38px; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; background-color: #C9C9C9; cursor: pointer; border: none !important; .border-radius(5px); .transition(background-color 0.5s); &:hover { background-color: #E4E4E4; color: #FFFFFF; } .vc-composer-icon { position: absolute; left: 50%; top: 50%; .translate(-50%, -50%); } } // not empty state .vc_welcome { &.vc_not-empty { border: 1px dashed @vc-welcome-border; .vc_welcome-visible-e { display: none; } } &:not(.vc_not-empty) { .vc_welcome-visible-ne { display: none; } } } // editors behaviour .vc_editor.compose-mode { .vc_welcome { margin: 0; } } // media behaviour @media screen and (max-width: @screen-sm) { .vc_welcome { .vc_ui-button { display: block; } } } ui/vc_ui-loaders.less 0000644 00000002337 15073227211 0010612 0 ustar 00 // Loaders @vc_ui-wp-spinner-svg-src: '../vc/loaders/spinner.svg'; @vc_ui-wp-spinner-light-svg-src: '../vc/loaders/spinner-light.svg'; @vc_ui-wp-spinner-animation-duration: 1.08s; @vc_ui-wp-spinner-base-size: 16px; .vc_ui-wp-spinner { margin: 0; padding: 0; height: 1em; width: 1em; display: inline-block; vertical-align: middle; opacity: .7; position: relative; &::before { content: ''; display: block; height: @vc_ui-wp-spinner-base-size; width: @vc_ui-wp-spinner-base-size; background: transparent url(@vc_ui-wp-spinner-light-svg-src) 50% 50% no-repeat; background-size: contain; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); animation: vc_ui-wp-spinner-animation @vc_ui-wp-spinner-animation-duration linear infinite; } &.vc_ui-wp-spinner-lg { &::before { height: @vc_ui-wp-spinner-base-size * 2; width: @vc_ui-wp-spinner-base-size * 2; } } &.vc_ui-wp-spinner-dark { &::before { background-image: url(@vc_ui-wp-spinner-svg-src); } } } @keyframes vc_ui-wp-spinner-animation { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } } ui/vc_ui-helper.less 0000644 00000000450 15073227211 0010432 0 ustar 00 // Helpers @vcui-help-block-color: #929292; .vc_ui-help-block { color: @vcui-help-block-color; font-style: italic; .vc_ui-help-link { font-weight: 600; color: @vc_main_color; text-decoration: none; border: none; &:hover { color: @vc_main_color_hover; } } } ui/vc_ui-prompt.less 0000644 00000005211 15073227211 0010474 0 ustar 00 @vcui-prompt-font-size: 14px; @vcui-prompt-background: #f5f5f5; @vcui-prompt-border: #dbdbdb; @vcui-prompt-color: #5e5e5e; @vcui-prompt-padding: 15px; @vcui-prompt-size: 16px; @vcui-prompt-gap: 18px; @vcui-prompt-xs-width: 258px; @vcui-prompt-sm-width: 395px; .vc_ui-prompt { font-size: @vcui-prompt-font-size; box-sizing: content-box; overflow: hidden; transition-property: opacity; transition-duration: .2s; transition-timing-function: ease-in-out; position: absolute; z-index: 100; top: 100%; left: 0; box-shadow: 0 0 5px rgba(0, 0, 0, .1); background-color: @vcui-prompt-background; color: @vcui-prompt-color; padding: @vcui-prompt-padding; visibility: hidden; opacity: 0; input { box-sizing: border-box; } &.vc_visible { visibility: visible; opacity: 1; overflow-y: auto; } } .vc_media-xs { .vc_ui-prompt { width: @vcui-prompt-xs-width; left: auto; right: 0; } } .vc_media-sm { .vc_ui-prompt { width: @vcui-prompt-sm-width; } } .vc_ui-prompt-controls { float: right; margin-left: 1em; .vc_ui-prompt-close { height: @vcui-prompt-size; width: @vcui-prompt-size; line-height: @vcui-prompt-size; vertical-align: top; position: relative; right: -3px; } .vc_ui-icon-pixel { display: block; line-height: 1; } } .vc_ui-prompt-content { display: flex; flex-wrap: wrap; margin-left: -@vcui-prompt-gap/2; margin-right: -@vcui-prompt-gap/2; } .vc_ui-prompt-column { padding-left: @vcui-prompt-gap/2; padding-right: @vcui-prompt-gap/2; &:first-child { flex-grow: 1; } .vc_ui-button { .vc-composer-icon { font-weight: bold; } } } // behaviours .vc_ui-dropdown { .vc_ui-prompt { position: absolute; } .vc_ui-button { text-transform: none; } } // Presets full width .vc_ui-prompt { &.vc_ui-prompt-presets, &.vc_ui-prompt-templates, &.vc_ui-prompt-view-presets { display: none; &.vc_visible { display: block; position: relative; width: calc(~'100% - 30px'); left: 0; right: 0; top: 0; margin-bottom: 20px; margin-top: 0; background: #FFF; box-shadow: none; } .vc_ui-prompt-controls { float: none; margin: 0; text-align: right; .vc_ui-control-button { font-size: 19px; height: 30px; width: 30px; color: grey; } } } .vc_ui-control-button { &.vc_hidden { display: none; } } } .vc_ui-notice .vc_message_box.vc_message_box-standard p.messagebox_text { margin: 0; padding: 0; } .vc_ui-notice .vc_message_box.vc_message_box-standard { margin-bottom: 20px; } ui/vc_ui-badges.less 0000644 00000000555 15073227211 0010406 0 ustar 00 [class*=vc_ui-badge--] i::after { content: ''; display: block; height: 8px; width: 8px; border-radius: 50%; position: absolute; top: -3px; right: -2px; } .vc_ui-badge { &--success i:after { background-color: #11C248; } &--warnings i:after { background-color: #F4AF1D; } &--problems i:after { background-color: #FC4242; } } ui/.htaccess 0000555 00000000355 15073227211 0006763 0 ustar 00 <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>