Initial Commit
This commit is contained in:
23
assets/css/admin-screen.css
Normal file
23
assets/css/admin-screen.css
Normal file
@ -0,0 +1,23 @@
|
||||
body.wu-styling:not(.wu-customize-admin-screen) div.postbox-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.wu-styling.wu-customize-admin-screen .wu-inline-widget {
|
||||
border: dashed 1px #ccc;
|
||||
padding: 4px 12px 12px;
|
||||
margin: 12px 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
body.wu-styling #wu-admin-screen-customize,
|
||||
body.wu-styling #wu-admin-screen-page-customize {
|
||||
margin-left: 6px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
body.wu-styling #wu-admin-screen-customize::after,
|
||||
body.wu-styling #wu-admin-screen-page-customize::after {
|
||||
display: none !important;
|
||||
}
|
||||
body.wu-styling #show-settings-link {
|
||||
display: none;
|
||||
}
|
1
assets/css/admin-screen.min.css
vendored
Normal file
1
assets/css/admin-screen.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
body.wu-styling:not(.wu-customize-admin-screen) div.postbox-header{display:none}body.wu-styling.wu-customize-admin-screen .wu-inline-widget{border:dashed 1px #ccc;padding:4px 12px 12px;margin:12px 0;border-radius:3px}body.wu-styling #wu-admin-screen-customize,body.wu-styling #wu-admin-screen-page-customize{margin-left:6px;padding-right:16px}body.wu-styling #wu-admin-screen-customize::after,body.wu-styling #wu-admin-screen-page-customize::after{display:none!important}body.wu-styling #show-settings-link{display:none}
|
5359
assets/css/admin.css
Normal file
5359
assets/css/admin.css
Normal file
File diff suppressed because it is too large
Load Diff
1
assets/css/admin.min.css
vendored
Normal file
1
assets/css/admin.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
664
assets/css/apexcharts.css
Normal file
664
assets/css/apexcharts.css
Normal file
@ -0,0 +1,664 @@
|
||||
.apexcharts-canvas {
|
||||
position: relative;
|
||||
user-select: none;
|
||||
/* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */
|
||||
}
|
||||
|
||||
|
||||
/* scrollbar is not visible by default for legend, hence forcing the visibility */
|
||||
.apexcharts-canvas ::-webkit-scrollbar {
|
||||
-webkit-appearance: none;
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
.apexcharts-canvas ::-webkit-scrollbar-thumb {
|
||||
border-radius: 4px;
|
||||
background-color: rgba(0, 0, 0, .5);
|
||||
box-shadow: 0 0 1px rgba(255, 255, 255, .5);
|
||||
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
|
||||
}
|
||||
|
||||
.apexcharts-canvas.apexcharts-theme-dark {
|
||||
background: #424242;
|
||||
}
|
||||
|
||||
.apexcharts-inner {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.apexcharts-text tspan {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.legend-mouseover-inactive {
|
||||
transition: .15s ease all;
|
||||
opacity: .20;
|
||||
}
|
||||
|
||||
.apexcharts-series-collapsed {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip {
|
||||
border-radius: 5px;
|
||||
box-shadow: 2px 2px 6px -4px #999999;
|
||||
cursor: default;
|
||||
font-size: 14px;
|
||||
left: 62px;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
z-index: 12;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip.apexcharts-active {
|
||||
opacity: 1;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip.apexcharts-theme-light {
|
||||
border: 1px solid #e3e3e3;
|
||||
background: rgba(255, 255, 255, .96);
|
||||
}
|
||||
|
||||
.apexcharts-tooltip.apexcharts-theme-dark {
|
||||
color: #ffffff;
|
||||
background: rgba(30, 30, 30, .8);
|
||||
}
|
||||
|
||||
.apexcharts-tooltip * {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
|
||||
.apexcharts-tooltip-title {
|
||||
padding: 6px;
|
||||
font-size: 15px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
|
||||
background: #eceff1;
|
||||
border-bottom: 1px solid #dddddd;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
|
||||
background: rgba(0, 0, 0, .7);
|
||||
border-bottom: 1px solid #333333;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-text-value,
|
||||
.apexcharts-tooltip-text-z-value {
|
||||
display: inline-block;
|
||||
font-weight: 600;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-text-z-label:empty,
|
||||
.apexcharts-tooltip-text-z-value:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-text-value,
|
||||
.apexcharts-tooltip-text-z-value {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-marker {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
position: relative;
|
||||
top: 0;
|
||||
margin-right: 10px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-series-group {
|
||||
padding: 0 10px;
|
||||
display: none;
|
||||
text-align: left;
|
||||
justify-content: left;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-series-group.apexcharts-active,
|
||||
.apexcharts-tooltip-series-group:last-child {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-series-group-hidden {
|
||||
opacity: 0;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-y-group {
|
||||
padding: 6px 0 5px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-candlestick {
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-candlestick > div {
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-candlestick span.value {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-rangebar {
|
||||
padding: 5px 8px;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-rangebar .category {
|
||||
font-weight: 600;
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.apexcharts-tooltip-rangebar .series-name {
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip {
|
||||
opacity: 0;
|
||||
padding: 9px 10px;
|
||||
pointer-events: none;
|
||||
color: #373d3f;
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
background: #eceff1;
|
||||
border: 1px solid #90a4ae;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip.apexcharts-theme-dark {
|
||||
background: rgba(0, 0, 0, .7);
|
||||
border: 1px solid rgba(0, 0, 0, .5);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip:after,
|
||||
.apexcharts-xaxistooltip:before {
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip:after {
|
||||
border-color: rgba(236, 239, 241, 0);
|
||||
border-width: 6px;
|
||||
margin-left: -6px;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip:before {
|
||||
border-color: rgba(144, 164, 174, 0);
|
||||
border-width: 7px;
|
||||
margin-left: -7px;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-bottom:after,
|
||||
.apexcharts-xaxistooltip-bottom:before {
|
||||
bottom: 100%;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-top:after,
|
||||
.apexcharts-xaxistooltip-top:before {
|
||||
top: 100%;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-bottom:after {
|
||||
border-bottom-color: #eceff1;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-bottom:before {
|
||||
border-bottom-color: #90a4ae;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {
|
||||
border-bottom-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {
|
||||
border-bottom-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-top:after {
|
||||
border-top-color: #eceff1;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-top:before {
|
||||
border-top-color: #90a4ae;
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {
|
||||
border-top-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {
|
||||
border-top-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-xaxistooltip.apexcharts-active {
|
||||
opacity: 1;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip {
|
||||
opacity: 0;
|
||||
padding: 4px 10px;
|
||||
pointer-events: none;
|
||||
color: #373d3f;
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
background: #eceff1;
|
||||
border: 1px solid #90a4ae;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip.apexcharts-theme-dark {
|
||||
background: rgba(0, 0, 0, .7);
|
||||
border: 1px solid rgba(0, 0, 0, .5);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip:after,
|
||||
.apexcharts-yaxistooltip:before {
|
||||
top: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip:after {
|
||||
border-color: rgba(236, 239, 241, 0);
|
||||
border-width: 6px;
|
||||
margin-top: -6px;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip:before {
|
||||
border-color: rgba(144, 164, 174, 0);
|
||||
border-width: 7px;
|
||||
margin-top: -7px;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-left:after,
|
||||
.apexcharts-yaxistooltip-left:before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-right:after,
|
||||
.apexcharts-yaxistooltip-right:before {
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-left:after {
|
||||
border-left-color: #eceff1;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-left:before {
|
||||
border-left-color: #90a4ae;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {
|
||||
border-left-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {
|
||||
border-left-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-right:after {
|
||||
border-right-color: #eceff1;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-right:before {
|
||||
border-right-color: #90a4ae;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {
|
||||
border-right-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {
|
||||
border-right-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip.apexcharts-active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.apexcharts-yaxistooltip-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.apexcharts-xcrosshairs,
|
||||
.apexcharts-ycrosshairs {
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-xcrosshairs.apexcharts-active,
|
||||
.apexcharts-ycrosshairs.apexcharts-active {
|
||||
opacity: 1;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-ycrosshairs-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.apexcharts-selection-rect {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.svg_select_boundingRect,
|
||||
.svg_select_points_rot {
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
.apexcharts-selection-rect + g .svg_select_boundingRect,
|
||||
.apexcharts-selection-rect + g .svg_select_points_rot {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.apexcharts-selection-rect + g .svg_select_points_l,
|
||||
.apexcharts-selection-rect + g .svg_select_points_r {
|
||||
cursor: ew-resize;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.svg_select_points {
|
||||
fill: #efefef;
|
||||
stroke: #333333;
|
||||
rx: 2;
|
||||
}
|
||||
|
||||
.apexcharts-canvas.apexcharts-zoomable .hovering-zoom {
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
.apexcharts-canvas.apexcharts-zoomable .hovering-pan {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.apexcharts-zoom-icon,
|
||||
.apexcharts-zoomin-icon,
|
||||
.apexcharts-zoomout-icon,
|
||||
.apexcharts-reset-icon,
|
||||
.apexcharts-pan-icon,
|
||||
.apexcharts-selection-icon,
|
||||
.apexcharts-menu-icon,
|
||||
.apexcharts-toolbar-custom-icon {
|
||||
cursor: pointer;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 24px;
|
||||
color: #6e8192;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.apexcharts-zoom-icon svg,
|
||||
.apexcharts-zoomin-icon svg,
|
||||
.apexcharts-zoomout-icon svg,
|
||||
.apexcharts-reset-icon svg,
|
||||
.apexcharts-menu-icon svg {
|
||||
fill: #6e8192;
|
||||
}
|
||||
|
||||
.apexcharts-selection-icon svg {
|
||||
fill: #444444;
|
||||
transform: scale(.76);
|
||||
}
|
||||
|
||||
.apexcharts-theme-dark .apexcharts-zoom-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-zoomin-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-zoomout-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-reset-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-pan-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-selection-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-menu-icon svg,
|
||||
.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {
|
||||
fill: #f3f4f5;
|
||||
}
|
||||
|
||||
.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,
|
||||
.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,
|
||||
.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {
|
||||
fill: #008ffb;
|
||||
}
|
||||
|
||||
.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
|
||||
.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
|
||||
.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
|
||||
.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,
|
||||
.apexcharts-theme-light .apexcharts-reset-icon:hover svg,
|
||||
.apexcharts-theme-light .apexcharts-menu-icon:hover svg {
|
||||
fill: #333333;
|
||||
}
|
||||
|
||||
.apexcharts-selection-icon,
|
||||
.apexcharts-menu-icon {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.apexcharts-reset-icon {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.apexcharts-zoom-icon,
|
||||
.apexcharts-reset-icon,
|
||||
.apexcharts-menu-icon {
|
||||
transform: scale(.85);
|
||||
}
|
||||
|
||||
.apexcharts-zoomin-icon,
|
||||
.apexcharts-zoomout-icon {
|
||||
transform: scale(.7);
|
||||
}
|
||||
|
||||
.apexcharts-zoomout-icon {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.apexcharts-pan-icon {
|
||||
transform: scale(.62);
|
||||
position: relative;
|
||||
left: 1px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.apexcharts-pan-icon svg {
|
||||
fill: #ffffff;
|
||||
stroke: #6e8192;
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
||||
.apexcharts-pan-icon.apexcharts-selected svg {
|
||||
stroke: #008ffb;
|
||||
}
|
||||
|
||||
.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {
|
||||
stroke: #333333;
|
||||
}
|
||||
|
||||
.apexcharts-toolbar {
|
||||
position: absolute;
|
||||
z-index: 11;
|
||||
max-width: 176px;
|
||||
text-align: right;
|
||||
border-radius: 3px;
|
||||
padding: 0 6px 2px 6px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.apexcharts-menu {
|
||||
background: #ffffff;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
border: 1px solid #dddddd;
|
||||
border-radius: 3px;
|
||||
padding: 3px;
|
||||
right: 10px;
|
||||
opacity: 0;
|
||||
min-width: 110px;
|
||||
transition: .15s ease all;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.apexcharts-menu.apexcharts-menu-open {
|
||||
opacity: 1;
|
||||
pointer-events: all;
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
.apexcharts-menu-item {
|
||||
padding: 6px 7px;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.apexcharts-theme-light .apexcharts-menu-item:hover {
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
.apexcharts-theme-dark .apexcharts-menu {
|
||||
background: rgba(0, 0, 0, .7);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.apexcharts-canvas:hover .apexcharts-toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.apexcharts-datalabel.apexcharts-element-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.apexcharts-pie-label,
|
||||
.apexcharts-datalabels,
|
||||
.apexcharts-datalabel,
|
||||
.apexcharts-datalabel-label,
|
||||
.apexcharts-datalabel-value {
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.apexcharts-pie-label-delay {
|
||||
opacity: 0;
|
||||
animation-name: opaque;
|
||||
animation-duration: .3s;
|
||||
animation-fill-mode: forwards;
|
||||
animation-timing-function: ease;
|
||||
}
|
||||
|
||||
.apexcharts-canvas .apexcharts-element-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.apexcharts-hide .apexcharts-series-points {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.apexcharts-gridline,
|
||||
.apexcharts-annotation-rect,
|
||||
.apexcharts-tooltip .apexcharts-marker,
|
||||
.apexcharts-area-series .apexcharts-area,
|
||||
.apexcharts-line,
|
||||
.apexcharts-zoom-rect,
|
||||
.apexcharts-toolbar svg,
|
||||
.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
|
||||
.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
|
||||
.apexcharts-radar-series path,
|
||||
.apexcharts-radar-series polygon {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
||||
/* markers */
|
||||
|
||||
.apexcharts-marker {
|
||||
transition: .15s ease all;
|
||||
}
|
||||
|
||||
@keyframes opaque {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Resize generated styles */
|
||||
|
||||
@keyframes resizeanim {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.resize-triggers {
|
||||
animation: 1ms resizeanim;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.resize-triggers,
|
||||
.resize-triggers > div,
|
||||
.contract-trigger:before {
|
||||
content: " ";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.resize-triggers > div {
|
||||
background: #eeeeee;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.contract-trigger:before {
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
}
|
1
assets/css/apexcharts.min.css
vendored
Normal file
1
assets/css/apexcharts.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
39
assets/css/checkout-editor.css
Normal file
39
assets/css/checkout-editor.css
Normal file
@ -0,0 +1,39 @@
|
||||
.is-dragging .postbox-header {
|
||||
border-bottom: none;
|
||||
}
|
||||
.is-dragging .inside {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wu-hide-inside .postbox-header {
|
||||
border-bottom: none;
|
||||
}
|
||||
.wu-hide-inside .inside {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wu-draggable-ghost {
|
||||
border-style: dashed !important;
|
||||
border-width: 1px !important;
|
||||
border-color: #939393 !important;
|
||||
opacity: 75%;
|
||||
}
|
||||
.wu-draggable-ghost .postbox-header {
|
||||
background: #edf2f6;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.wu-draggable-field-ghost {
|
||||
content: " ";
|
||||
text-indent: -9999999px;
|
||||
background-color: #fff !important;
|
||||
}
|
||||
.wu-draggable-field-ghost td {
|
||||
border: dashed 1px #c3c4c7;
|
||||
border-width: 1px 0;
|
||||
opacity: 0.9;
|
||||
padding: 10px;
|
||||
}
|
||||
.wu-draggable-field-ghost .wu-placeholder-sortable {
|
||||
display: none;
|
||||
}
|
1
assets/css/checkout-editor.min.css
vendored
Normal file
1
assets/css/checkout-editor.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.is-dragging .postbox-header{border-bottom:none}.is-dragging .inside{display:none}.wu-hide-inside .postbox-header{border-bottom:none}.wu-hide-inside .inside{display:none}.wu-draggable-ghost{border-style:dashed!important;border-width:1px!important;border-color:#939393!important;opacity:75%}.wu-draggable-ghost .postbox-header{background:#edf2f6;border:none}.wu-draggable-field-ghost{content:" ";text-indent:-9999999px;background-color:#fff!important}.wu-draggable-field-ghost td{border:dashed 1px #c3c4c7;border-width:1px 0;opacity:.9;padding:10px}.wu-draggable-field-ghost .wu-placeholder-sortable{display:none}
|
3
assets/css/checkout.css
Normal file
3
assets/css/checkout.css
Normal file
@ -0,0 +1,3 @@
|
||||
.nothing {
|
||||
background: #000;
|
||||
}
|
1
assets/css/checkout.min.css
vendored
Normal file
1
assets/css/checkout.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.nothing{background:#000}
|
66
assets/css/compat-admin-themes.css
Normal file
66
assets/css/compat-admin-themes.css
Normal file
@ -0,0 +1,66 @@
|
||||
/* wu-compat-admin-theme-{admin-theme} */
|
||||
.wu-compat-admin-theme-material-wp #wp-ultimo-header {
|
||||
position: relative !important;
|
||||
margin: 50px 25% !important;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-pro-theme button.btn.page-title-action {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-pro-theme.folded #adminmenuwrap {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-admin-2020 .wu-grid {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 #wp-ultimo-wrap .page-title-action {
|
||||
top: 0 !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 .wu-list-table.wu-mode-grid #the-list {
|
||||
display: inline-grid !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 .wu-list-table.wu-mode-grid .tablenav.top {
|
||||
top: 0 !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 .filter-links {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 #titlewrap span {
|
||||
display: inline-block;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020 #wp-ultimo-header {
|
||||
border-radius: 6px !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020.wu-styling .wu-list-table .row-actions {
|
||||
display: block !important;
|
||||
position: relative !important;
|
||||
opacity: unset !important;
|
||||
padding: 0 !important;
|
||||
top: 0 !important;
|
||||
left: 0 !important;
|
||||
background: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.wu-compat-admin-theme-admin-2020.wu-styling .wu-list-table .row-actions span {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-clientside.wu-styling {
|
||||
background-color: #f8f8fa !important;
|
||||
}
|
||||
.wu-compat-admin-theme-clientside #wp-ultimo-header {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-wphave #wu-date-range {
|
||||
margin: 0 -10px !important;
|
||||
}
|
||||
|
||||
.wu-compat-admin-theme-waaspro .wu-list-table.wu-mode-grid {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.wu-compat-admin-theme-waaspro .tablenav.top {
|
||||
height: auto;
|
||||
}
|
1
assets/css/compat-admin-themes.min.css
vendored
Normal file
1
assets/css/compat-admin-themes.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.wu-compat-admin-theme-material-wp #wp-ultimo-header{position:relative!important;margin:50px 25%!important}.wu-compat-admin-theme-pro-theme button.btn.page-title-action{color:#fff!important}.wu-compat-admin-theme-pro-theme.folded #adminmenuwrap{display:none}.wu-compat-admin-theme-admin-2020 .wu-grid{margin-top:20px}.wu-compat-admin-theme-admin-2020 #wp-ultimo-wrap .page-title-action{top:0!important}.wu-compat-admin-theme-admin-2020 .wu-list-table.wu-mode-grid #the-list{display:inline-grid!important}.wu-compat-admin-theme-admin-2020 .wu-list-table.wu-mode-grid .tablenav.top{top:0!important}.wu-compat-admin-theme-admin-2020 .filter-links{margin-left:0!important}.wu-compat-admin-theme-admin-2020 #titlewrap span{display:inline-block}.wu-compat-admin-theme-admin-2020 #wp-ultimo-header{border-radius:6px!important}.wu-compat-admin-theme-admin-2020.wu-styling .wu-list-table .row-actions{display:block!important;position:relative!important;opacity:unset!important;padding:0!important;top:0!important;left:0!important;background:0 0!important;box-shadow:none!important}.wu-compat-admin-theme-admin-2020.wu-styling .wu-list-table .row-actions span{padding:0!important}.wu-compat-admin-theme-clientside.wu-styling{background-color:#f8f8fa!important}.wu-compat-admin-theme-clientside #wp-ultimo-header{display:none!important}.wu-compat-admin-theme-wphave #wu-date-range{margin:0 -10px!important}.wu-compat-admin-theme-waaspro .wu-list-table.wu-mode-grid{margin-top:30px}.wu-compat-admin-theme-waaspro .tablenav.top{height:auto}
|
108
assets/css/fields.css
Normal file
108
assets/css/fields.css
Normal file
@ -0,0 +1,108 @@
|
||||
.wp-core-ui .wu-item-modal-icon {
|
||||
background-image: url(../../../../../wp-includes/images/uploader-icons.png);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.wp-core-ui .item {
|
||||
float: left;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.wp-core-ui .item .check {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
top: 0;
|
||||
right: 0;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 0, 0, .15);
|
||||
}
|
||||
|
||||
.wp-core-ui .item .check .wu-item-modal-icon {
|
||||
display: block;
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.wp-core-ui .item .check:hover .wu-item-modal-icon {
|
||||
background-position: -60px 0;
|
||||
}
|
||||
|
||||
.wp-core-ui .check .wu-item-modal-icon {
|
||||
background-position: -21px 0;
|
||||
}
|
||||
|
||||
.item input[type="checkbox"] {
|
||||
position: absolute;
|
||||
height: 0;
|
||||
width: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.item input[type="checkbox"]:not(:checked) + .item-border,
|
||||
.item input[type="checkbox"]:not(:checked) ~ .check {
|
||||
background-color: #eeeeee !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
||||
.wp-core-ui .wu-item-modal-icon {
|
||||
background-image: url(../../../../../wp-includes/images/uploader-icons-2x.png);
|
||||
background-size: 134px 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="1"] .item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="2"] .item {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="3"] .item {
|
||||
width: 33.33%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="4"] .item {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="5"] .item {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="6"] .item {
|
||||
width: 16.66%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="7"] .item {
|
||||
width: 14.28%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="8"] .item {
|
||||
width: 12.5%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="9"] .item {
|
||||
width: 11.11%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="10"] .item {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="11"] .item {
|
||||
width: 9.09%;
|
||||
}
|
||||
|
||||
.wu-multiselect-content[data-columns="12"] .item {
|
||||
width: 8.33%;
|
||||
}
|
1
assets/css/fields.min.css
vendored
Normal file
1
assets/css/fields.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.wp-core-ui .wu-item-modal-icon{background-image:url(../../../../../wp-includes/images/uploader-icons.png);background-repeat:no-repeat}.wp-core-ui .item{float:left;box-sizing:border-box}.wp-core-ui .item .check{height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;cursor:pointer;box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.wp-core-ui .item .check .wu-item-modal-icon{display:block;height:15px;width:15px;margin:5px}.wp-core-ui .item .check:hover .wu-item-modal-icon{background-position:-60px 0}.wp-core-ui .check .wu-item-modal-icon{background-position:-21px 0}.item input[type=checkbox]{position:absolute;height:0;width:0;opacity:0}.item input[type=checkbox]:not(:checked)+.item-border,.item input[type=checkbox]:not(:checked)~.check{background-color:#eee!important}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-core-ui .wu-item-modal-icon{background-image:url(../../../../../wp-includes/images/uploader-icons-2x.png);background-size:134px 15px}}.wu-multiselect-content[data-columns="1"] .item{width:100%}.wu-multiselect-content[data-columns="2"] .item{width:50%}.wu-multiselect-content[data-columns="3"] .item{width:33.33%}.wu-multiselect-content[data-columns="4"] .item{width:25%}.wu-multiselect-content[data-columns="5"] .item{width:20%}.wu-multiselect-content[data-columns="6"] .item{width:16.66%}.wu-multiselect-content[data-columns="7"] .item{width:14.28%}.wu-multiselect-content[data-columns="8"] .item{width:12.5%}.wu-multiselect-content[data-columns="9"] .item{width:11.11%}.wu-multiselect-content[data-columns="10"] .item{width:10%}.wu-multiselect-content[data-columns="11"] .item{width:9.09%}.wu-multiselect-content[data-columns="12"] .item{width:8.33%}
|
1825
assets/css/flags.css
Normal file
1825
assets/css/flags.css
Normal file
File diff suppressed because it is too large
Load Diff
1
assets/css/flags.min.css
vendored
Normal file
1
assets/css/flags.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1825
assets/css/flags/flag-icon.css
Normal file
1825
assets/css/flags/flag-icon.css
Normal file
File diff suppressed because it is too large
Load Diff
1
assets/css/flags/flag-icon.min.css
vendored
Normal file
1
assets/css/flags/flag-icon.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1972
assets/css/framework.css
Normal file
1972
assets/css/framework.css
Normal file
File diff suppressed because it is too large
Load Diff
1
assets/css/framework.css.map
Normal file
1
assets/css/framework.css.map
Normal file
File diff suppressed because one or more lines are too long
1
assets/css/framework.min.css
vendored
Normal file
1
assets/css/framework.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
408
assets/css/jumper.css
Normal file
408
assets/css/jumper.css
Normal file
@ -0,0 +1,408 @@
|
||||
#wu-jumper {
|
||||
box-sizing: border-box;
|
||||
position: fixed;
|
||||
top: 25%;
|
||||
left: 50%;
|
||||
width: 500px;
|
||||
margin-left: -250px;
|
||||
background: #f9f9f9;
|
||||
z-index: 99999;
|
||||
border-radius: 5px;
|
||||
border: solid 1px #ccc;
|
||||
-webkit-box-shadow: 0 0 5000px 5000px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 0 0 5000px 5000px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 0 5000px 5000px rgba(0, 0, 0, 0.2);
|
||||
/* @group Base */
|
||||
/* @end */
|
||||
/* @group Single Chosen */
|
||||
/* @end */
|
||||
/* @group Results */
|
||||
/* @end */
|
||||
/* @group Multi Chosen */
|
||||
/* @end */
|
||||
/* @end */
|
||||
/* @group Disabled Support */
|
||||
/* @end */
|
||||
/* @group Retina compatibility */
|
||||
/* @end */
|
||||
}
|
||||
#wu-jumper .wu-jumper-icon-container::before {
|
||||
font-family: dashicons-wu, sans-serif !important;
|
||||
content: "\e900";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 15px;
|
||||
font-size: 36px;
|
||||
margin-top: -18px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
}
|
||||
#wu-jumper * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#wu-jumper label {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
padding: 20px;
|
||||
}
|
||||
#wu-jumper .selectize-control {
|
||||
width: 100%;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-size: 13px;
|
||||
zoom: 1;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-drop {
|
||||
margin-top: -1px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
background-clip: padding-box;
|
||||
border: solid 1px #ccc;
|
||||
border-top: none;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-drop {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: -9999px;
|
||||
z-index: 1010;
|
||||
width: 100%;
|
||||
border-top: 0;
|
||||
background: #fff;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container.wu-chosen-with-drop .wu-chosen-drop {
|
||||
left: 0;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container * {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container a {
|
||||
cursor: pointer;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .search-choice .group-name,
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-single .group-name {
|
||||
margin-right: 4px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: normal;
|
||||
color: #999;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .search-choice .group-name::after,
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-single .group-name::after {
|
||||
content: ":";
|
||||
padding-left: 2px;
|
||||
vertical-align: top;
|
||||
}
|
||||
#wu-jumper .selectize-control.single .selectize-input::after {
|
||||
display: none !important;
|
||||
}
|
||||
#wu-jumper .selectize-dropdown {
|
||||
margin-top: 0 !important;
|
||||
background-color: #fcfcfc;
|
||||
border: solid 1px #ddd;
|
||||
}
|
||||
#wu-jumper .selectize-input {
|
||||
margin-bottom: -7px;
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
color: #444;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
line-height: 70px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
#wu-jumper .selectize-input .item {
|
||||
font-size: 18pt;
|
||||
}
|
||||
#wu-jumper .selectize-input input {
|
||||
font-size: 18pt;
|
||||
}
|
||||
#wu-jumper .selectize-input.single::after {
|
||||
display: none !important;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-default {
|
||||
color: #999;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single span {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin-right: 26px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single-with-deselect span {
|
||||
margin-right: 38px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single abbr {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 26px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 1px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single.wu-chosen-disabled .wu-chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 100%;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single div b {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-search {
|
||||
position: relative;
|
||||
z-index: 1010;
|
||||
margin: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-search input[type=text] {
|
||||
margin: 0;
|
||||
padding: 4px 20px 4px 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
outline: 0;
|
||||
box-shadow: none !important;
|
||||
background-color: #fcfcfc;
|
||||
border: none;
|
||||
border-bottom: solid 1px #ddd;
|
||||
border-top: solid 1px #ddd;
|
||||
font-size: 1em;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-single.wu-chosen-container-single-nosearch .wu-chosen-search {
|
||||
position: absolute;
|
||||
left: -9999px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results {
|
||||
color: #444;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
margin: 0 4px 4px 0;
|
||||
padding: 0 0 0 4px;
|
||||
max-height: 240px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li {
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 15px 6px;
|
||||
list-style: none;
|
||||
line-height: 15px;
|
||||
word-wrap: break-word;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.active-result {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.disabled-result {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.highlighted {
|
||||
color: #fff;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.no-results {
|
||||
color: #777;
|
||||
display: list-item;
|
||||
background: #f4f4f4;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.group-result {
|
||||
display: list-item;
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li.group-option {
|
||||
padding-left: 15px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results li em {
|
||||
font-style: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%;
|
||||
height: auto !important;
|
||||
height: 1%;
|
||||
background-color: #fff;
|
||||
cursor: text;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-field {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-field input[type=text] {
|
||||
margin: 1px 0;
|
||||
padding: 0;
|
||||
height: 25px;
|
||||
outline: 0;
|
||||
background: transparent !important;
|
||||
color: #999;
|
||||
font-size: 100%;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice {
|
||||
position: relative;
|
||||
margin: 3px 5px 3px 0;
|
||||
padding: 3px 20px 3px 5px;
|
||||
max-width: 100%;
|
||||
border-radius: 3px;
|
||||
background-color: #eee;
|
||||
background-size: 100% 19px;
|
||||
background-repeat: repeat-x;
|
||||
background-clip: padding-box;
|
||||
color: #333;
|
||||
line-height: 13px;
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice span {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice-focus .search-choice-close {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice .search-choice-close {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 3px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
font-size: 1px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice .search-choice-close:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice-disabled {
|
||||
padding-right: 5px;
|
||||
background-color: #e4e4e4;
|
||||
color: #666;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices li.search-choice-focus {
|
||||
background: #d4d4d4;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-results {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-drop .result-selected {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-disabled .wu-chosen-single {
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-active.wu-chosen-with-drop .wu-chosen-single {
|
||||
-moz-border-radius-bottomright: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
-moz-border-radius-bottomleft: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-active.wu-chosen-with-drop .wu-chosen-single div {
|
||||
border-left: none;
|
||||
background: transparent;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-active.wu-chosen-with-drop .wu-chosen-single div b {
|
||||
background-position: -18px 2px;
|
||||
}
|
||||
#wu-jumper .wu-chosen-container-active .wu-chosen-choices li.search-field input[type=text] {
|
||||
color: #222 !important;
|
||||
}
|
||||
#wu-jumper .wu-chosen-disabled {
|
||||
opacity: 0.5 !important;
|
||||
cursor: default;
|
||||
}
|
||||
#wu-jumper .wu-chosen-disabled .wu-chosen-container-multi.wu-chosen-choices li.search-choice .search-choice-close {
|
||||
cursor: default;
|
||||
}
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
|
||||
#wu-jumper .wu-chosen-rtl .wu-chosen-search input[type=text],
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single abbr,
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-single div b,
|
||||
#wu-jumper .wu-chosen-container-single .wu-chosen-search input[type=text],
|
||||
#wu-jumper .wu-chosen-container-multi .wu-chosen-choices .search-choice .search-choice-close,
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results-scroll-down span,
|
||||
#wu-jumper .wu-chosen-container .wu-chosen-results-scroll-up span {
|
||||
background-size: 52px 37px !important;
|
||||
background-repeat: no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
#wu_jumper_select_chosen { /* stylelint-disable-line selector-id-pattern */
|
||||
margin: 0;
|
||||
width: 100% !important;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wu_jumper_select_chosen input { /* stylelint-disable-line selector-id-pattern */
|
||||
outline: none;
|
||||
width: 100%;
|
||||
padding: 20px !important;
|
||||
}
|
||||
|
||||
span.wu-keys {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
span.wu-keys-key {
|
||||
display: inline-block;
|
||||
padding: 0 5px 1px;
|
||||
border: solid 2px #999;
|
||||
border-radius: 3px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
.wu-jumper-loading,
|
||||
.wu-jumper-redirecting {
|
||||
border-top: solid 1px #cecece;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.rtl #wu-jumper .wu-chosen-container-single .wu-chosen-single::after {
|
||||
right: auto;
|
||||
left: 15px;
|
||||
}
|
||||
body.rtl #wu-jumper .wu-chosen-container-single .wu-chosen-single span {
|
||||
margin-right: 0;
|
||||
margin-left: 26px;
|
||||
}
|
1
assets/css/jumper.min.css
vendored
Normal file
1
assets/css/jumper.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
348
assets/css/legacy-admin-tabs.css
Normal file
348
assets/css/legacy-admin-tabs.css
Normal file
@ -0,0 +1,348 @@
|
||||
.wu-legacy-options-panel .hndle {
|
||||
padding: 10px;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle span {
|
||||
display: block;
|
||||
line-height: 24px;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle span span {
|
||||
display: inline;
|
||||
line-height: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle select {
|
||||
margin: 0;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle label {
|
||||
padding-right: 1em;
|
||||
font-size: 12px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle label:first-child {
|
||||
margin-right: 1em;
|
||||
border-right: 1px solid #dfdfdf;
|
||||
}
|
||||
.wu-legacy-options-panel .hndle input,
|
||||
.wu-legacy-options-panel .hndle select {
|
||||
margin: -3px 0 0 0.5em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wu-legacy-options-panel > .handlediv {
|
||||
margin-top: 4px;
|
||||
}
|
||||
.wu-legacy-options-panel .wrap {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.wu-legacy-options-panel,
|
||||
#wu-coupon-data {
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
}
|
||||
.wu-legacy-options-panel .panel-wrap,
|
||||
#wu-coupon-data .panel-wrap {
|
||||
background: #fff;
|
||||
}
|
||||
.wu-legacy-options-panel .wu_options_panel .wc-radios,
|
||||
.wu-legacy-options-panel .wc-metaboxes-wrapper .wc-radios,
|
||||
#wu-coupon-data .wu_options_panel .wc-radios,
|
||||
#wu-coupon-data .wc-metaboxes-wrapper .wc-radios {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 0;
|
||||
}
|
||||
.wu-legacy-options-panel .wu_options_panel .wc-radios li,
|
||||
.wu-legacy-options-panel .wc-metaboxes-wrapper .wc-radios li,
|
||||
#wu-coupon-data .wu_options_panel .wc-radios li,
|
||||
#wu-coupon-data .wc-metaboxes-wrapper .wc-radios li {
|
||||
display: block;
|
||||
padding: 0 0 10px;
|
||||
}
|
||||
.wu-legacy-options-panel .wu_options_panel .wc-radios li input,
|
||||
.wu-legacy-options-panel .wc-metaboxes-wrapper .wc-radios li input,
|
||||
#wu-coupon-data .wu_options_panel .wc-radios li input,
|
||||
#wu-coupon-data .wc-metaboxes-wrapper .wc-radios li input {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.wu-legacy-options-panel .panel-wrap,
|
||||
#wu-coupon-data .panel-wrap,
|
||||
.wu .panel-wrap {
|
||||
overflow: hidden;
|
||||
}
|
||||
.wu-legacy-options-panel ul.wc-tabs,
|
||||
#wu-coupon-data ul.wc-tabs,
|
||||
.wu ul.wc-tabs {
|
||||
margin: 0;
|
||||
width: 20%;
|
||||
float: left;
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
background-color: #fafafa;
|
||||
border-right: 1px solid #eee;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wu-legacy-options-panel ul.wc-tabs::after,
|
||||
#wu-coupon-data ul.wc-tabs::after,
|
||||
.wu ul.wc-tabs::after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 9999em;
|
||||
position: absolute;
|
||||
bottom: -9999em;
|
||||
left: 0;
|
||||
background-color: #fafafa;
|
||||
border-right: 1px solid #eee;
|
||||
}
|
||||
.wu-legacy-options-panel ul.wc-tabs li,
|
||||
#wu-coupon-data ul.wc-tabs li,
|
||||
.wu ul.wc-tabs li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
.wu-legacy-options-panel ul.wc-tabs li a,
|
||||
#wu-coupon-data ul.wc-tabs li a,
|
||||
.wu ul.wc-tabs li a {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
display: block;
|
||||
box-shadow: none;
|
||||
text-decoration: none;
|
||||
line-height: 20px !important;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.wu-legacy-options-panel ul.wc-tabs li.active a,
|
||||
#wu-coupon-data ul.wc-tabs li.active a,
|
||||
.wu ul.wc-tabs li.active a {
|
||||
color: #555;
|
||||
position: relative;
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shipping
|
||||
*/
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.wu_page_wc-settings .shippingrows th.check-column {
|
||||
padding-top: 20px;
|
||||
}
|
||||
.wu_page_wc-settings .shippingrows tfoot th {
|
||||
padding-left: 10px;
|
||||
}
|
||||
.wu_page_wc-settings h3.wc-settings-sub-title {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.wu-legacy-options-panel .inside,
|
||||
#wu-product-type-options .inside,
|
||||
#wu-order-data .inside,
|
||||
#wu-order-downloads .inside,
|
||||
#wu-coupon-data .inside {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.wu_options_panel,
|
||||
.panel {
|
||||
padding: 9px;
|
||||
color: #555;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.wu_page_settings .wu_options_panel,
|
||||
.panel {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wu-product-type-options .panel,
|
||||
#wu-product-specs .inside {
|
||||
margin: 0;
|
||||
padding: 9px;
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.wu_options_panel p,
|
||||
#wu-product-type-options .panel p,
|
||||
.wu_options_panel fieldset.form-field { /* stylelint-disable-line selector-class-pattern */
|
||||
margin: 0 0 9px;
|
||||
font-size: 12px;
|
||||
padding: 5px 9px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.wu_options_panel p::after,
|
||||
#wu-product-type-options .panel p::after,
|
||||
.wu_options_panel fieldset.form-field::after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.wu_options_panel .checkbox,
|
||||
.wu_variable_attributes .checkbox { /* stylelint-disable-line selector-class-pattern */
|
||||
width: auto;
|
||||
margin: 3px 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.wu_options_panel { /* stylelint-disable-line selector-class-pattern */
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wu_options_panel p {
|
||||
margin: 9px 0;
|
||||
}
|
||||
.wu_options_panel p.form-field,
|
||||
.wu_options_panel fieldset.form-field {
|
||||
padding: 5px 20px 5px 162px !important; /** Padding for aligning labels left - 12px + 150 label width **/
|
||||
}
|
||||
.wu_options_panel .sale_price_dates_fields { /* stylelint-disable-line selector-class-pattern */ }
|
||||
.wu_options_panel .sale_price_dates_fields .short:first-of-type {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.wu_options_panel .sale_price_dates_fields .short:nth-of-type(2) {
|
||||
clear: left;
|
||||
}
|
||||
.wu_options_panel label,
|
||||
.wu_options_panel legend {
|
||||
float: left;
|
||||
width: 150px;
|
||||
padding: 0;
|
||||
margin: 0 0 0 -150px;
|
||||
}
|
||||
.wu_options_panel label.form-field-full {
|
||||
width: auto;
|
||||
}
|
||||
.wu_options_panel .description {
|
||||
padding: 0;
|
||||
margin: 0 0 0 7px;
|
||||
clear: none;
|
||||
}
|
||||
.wu_options_panel .description-block {
|
||||
margin-left: 0;
|
||||
display: block;
|
||||
}
|
||||
.wu_options_panel textarea,
|
||||
.wu_options_panel input,
|
||||
.wu_options_panel select {
|
||||
margin: 0;
|
||||
}
|
||||
.wu_options_panel textarea {
|
||||
height: 3.5em;
|
||||
vertical-align: top;
|
||||
width: 100%;
|
||||
}
|
||||
.wu_options_panel input[type=text],
|
||||
.wu_options_panel input[type=email],
|
||||
.wu_options_panel input[type=number],
|
||||
.wu_options_panel input[type=password] {
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
.wu_options_panel input.button {
|
||||
width: auto;
|
||||
margin-left: 8px;
|
||||
}
|
||||
.wu_options_panel select {
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
.wu_options_panel input[type=text].short,
|
||||
.wu_options_panel input[type=email].short,
|
||||
.wu_options_panel input[type=number].short,
|
||||
.wu_options_panel input[type=password].short,
|
||||
.wu_options_panel .short {
|
||||
width: 100%;
|
||||
}
|
||||
.wu_options_panel .sized {
|
||||
width: auto !important;
|
||||
margin-right: 6px;
|
||||
}
|
||||
.wu_options_panel .options_group { /* stylelint-disable-line selector-class-pattern */
|
||||
border-top: 1px solid #fff;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.wu_options_panel .options_group:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
.wu_options_panel .options_group:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset {
|
||||
margin: 9px 0;
|
||||
font-size: 12px;
|
||||
padding: 5px 9px;
|
||||
line-height: 24px;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset label {
|
||||
width: auto;
|
||||
float: none;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset ul {
|
||||
float: left;
|
||||
width: 50%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset ul li {
|
||||
margin: 0;
|
||||
width: auto;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset ul li input {
|
||||
width: auto;
|
||||
float: none;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.wu_options_panel .options_group fieldset ul.wc-radios label {
|
||||
margin-left: 0;
|
||||
}
|
||||
.wu_options_panel .dimensions_field { /* stylelint-disable-line selector-class-pattern */ }
|
||||
.wu_options_panel .dimensions_field .wrap {
|
||||
display: block;
|
||||
width: 50%;
|
||||
}
|
||||
.wu_options_panel .dimensions_field .wrap input {
|
||||
width: 30.75%;
|
||||
margin-right: 3.8%;
|
||||
}
|
||||
.wu_options_panel .dimensions_field .wrap .last {
|
||||
margin-right: 0;
|
||||
}
|
||||
.wu_options_panel.padded {
|
||||
padding: 1em;
|
||||
}
|
||||
.wu_options_panel .select2-container {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wu-legacy-options-panel input.dp-applied {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* stylelint-disable-next-line selector-id-pattern */
|
||||
#virtual_product_options,
|
||||
#grouped_product_options,
|
||||
#simple_product_options { /* stylelint-disable-line selector-id-pattern */
|
||||
padding: 12px;
|
||||
font-style: italic;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/**
|
||||
* Optimisation for screens 900px and smaller
|
||||
*/
|
||||
@media only screen and (max-width: 900px) {
|
||||
.wu-legacy-options-panel ul.wc-tabs,
|
||||
#wu-coupon-data ul.wc-tabs,
|
||||
.wu ul.wc-tabs {
|
||||
width: 10%;
|
||||
}
|
||||
.wu-legacy-options-panel .panel {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
1
assets/css/legacy-admin-tabs.min.css
vendored
Normal file
1
assets/css/legacy-admin-tabs.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2518
assets/css/legacy-shortcodes.css
Normal file
2518
assets/css/legacy-shortcodes.css
Normal file
File diff suppressed because it is too large
Load Diff
1
assets/css/legacy-shortcodes.min.css
vendored
Normal file
1
assets/css/legacy-shortcodes.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
685
assets/css/legacy-signup.css
Normal file
685
assets/css/legacy-signup.css
Normal file
@ -0,0 +1,685 @@
|
||||
/**
|
||||
* Legacy File, do not lint.
|
||||
*/
|
||||
/* stylelint-disable */
|
||||
/* Body BG */
|
||||
body {
|
||||
background-image: none;
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.wu-setup #wu-thank-you-element {
|
||||
margin: 0 -150px;
|
||||
}
|
||||
.wu-setup #wu-thank-you-element table {
|
||||
width: 100%;
|
||||
}
|
||||
.wu-setup .button .dashicons,
|
||||
.wu-setup .button .dashicons-before::before {
|
||||
height: 16px;
|
||||
font-size: 16px;
|
||||
vertical-align: sub;
|
||||
}
|
||||
.wu-setup form#loginform,
|
||||
.wu-setup #nav,
|
||||
.wu-setup #backtoblog {
|
||||
padding: 26px 0 46px;
|
||||
}
|
||||
.wu-setup form#loginform p,
|
||||
.wu-setup #nav p,
|
||||
.wu-setup #backtoblog p {
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
.wu-setup .button-large {
|
||||
display: block;
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.wu-setup form#loginform p.submit,
|
||||
.wu-setup form#loginform .wu_submit_button {
|
||||
padding: 24px;
|
||||
}
|
||||
.wu-setup form#loginform p.submit button,
|
||||
.wu-setup form#loginform p.submit a,
|
||||
.wu-setup form#loginform p.submit input,
|
||||
.wu-setup form#loginform .wu_submit_button button,
|
||||
.wu-setup form#loginform .wu_submit_button a,
|
||||
.wu-setup form#loginform .wu_submit_button input {
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
}
|
||||
.wu-setup select {
|
||||
font-size: 24px;
|
||||
line-height: 1.33333333;
|
||||
width: 100%;
|
||||
border-width: 0.0625rem;
|
||||
padding: 0.1875rem 0.3125rem;
|
||||
margin: 0 6px 16px 0;
|
||||
min-height: 40px;
|
||||
max-height: none;
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
#nav,
|
||||
#backtoblog {
|
||||
margin: 0 0 5px !important;
|
||||
padding: 12px 0 !important;
|
||||
text-align: center;
|
||||
font-size: 11px !important;
|
||||
}
|
||||
|
||||
#backtoblog {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wu-accounts-link {
|
||||
text-decoration: none;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
margin: 20px auto -10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body .login h1 a {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100%;
|
||||
/** height: 100%; **/
|
||||
}
|
||||
|
||||
body.login {
|
||||
max-width: 100% !important;
|
||||
margin: 0;
|
||||
height: auto;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/** Fix on 5.4 label styles */
|
||||
.wu-setup .wu-setup-content label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.wu-setup {
|
||||
margin: 0 auto;
|
||||
padding: 60px 0 24px;
|
||||
box-shadow: none;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
#wu-setup-logo {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
#wu-setup-logo img {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
div.wu-setup #login {
|
||||
width: auto;
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.wu-setup-content {
|
||||
zoom: 1;
|
||||
}
|
||||
.wu-setup-content #wu-your-site-block {
|
||||
margin: 16px 0;
|
||||
}
|
||||
.wu-setup-content p.error,
|
||||
.wu-setup-content span.error {
|
||||
margin-bottom: 10px !important;
|
||||
color: darkred;
|
||||
display: block;
|
||||
}
|
||||
.wu-setup-content.wu-content-plan, .wu-setup-content.wu-content-template {
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
}
|
||||
.wu-setup-content.wu-content-template form#signupform {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
border: none;
|
||||
}
|
||||
.wu-setup-content .wu-setup-content-error {
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
|
||||
padding: 24px 24px 0;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
}
|
||||
.wu-setup-content h1,
|
||||
.wu-setup-content h2,
|
||||
.wu-setup-content h3,
|
||||
.wu-setup-content table {
|
||||
margin: 0 0 24px;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
color: #666;
|
||||
clear: none;
|
||||
}
|
||||
.wu-setup-content p,
|
||||
.wu-setup-content div.field {
|
||||
margin: 0 0 24px;
|
||||
font-size: 1em;
|
||||
line-height: 1.75em;
|
||||
color: #666;
|
||||
}
|
||||
.wu-setup-content table {
|
||||
font-size: 1em;
|
||||
line-height: 1.75em;
|
||||
color: #666;
|
||||
}
|
||||
.wu-setup-content a {
|
||||
color: #46a5cb;
|
||||
}
|
||||
.wu-setup-content a:hover, .wu-setup-content a:focus {
|
||||
color: #111;
|
||||
}
|
||||
.wu-setup-content .form-table th {
|
||||
width: 35%;
|
||||
vertical-align: top;
|
||||
font-weight: normal;
|
||||
}
|
||||
.wu-setup-content .form-table td {
|
||||
vertical-align: top;
|
||||
}
|
||||
.wu-setup-content .form-table td select,
|
||||
.wu-setup-content .form-table td input {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wu-setup-content .form-table td input[size] {
|
||||
width: auto;
|
||||
}
|
||||
.wu-setup-content .form-table td .description {
|
||||
line-height: 1.5em;
|
||||
display: block;
|
||||
margin-top: 0.25em;
|
||||
color: #999;
|
||||
font-style: italic;
|
||||
}
|
||||
.wu-setup-content .form-table td .input-checkbox,
|
||||
.wu-setup-content .form-table td .input-radio {
|
||||
width: auto;
|
||||
box-sizing: inherit;
|
||||
padding: inherit;
|
||||
margin: 0 0.5em 0 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.wu-setup-content .form-table .section_title td {
|
||||
padding: 0;
|
||||
}
|
||||
.wu-setup-content .form-table .section_title td h2,
|
||||
.wu-setup-content .form-table .section_title td p {
|
||||
margin: 12px 0 0;
|
||||
}
|
||||
.wu-setup-content .form-table th,
|
||||
.wu-setup-content .form-table td {
|
||||
padding: 12px 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
.wu-setup-content .form-table th:first-child,
|
||||
.wu-setup-content .form-table td:first-child {
|
||||
padding-right: 1em;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates {
|
||||
width: 100%;
|
||||
font-size: 0.92em;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates th {
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
width: auto;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates td {
|
||||
border: 1px solid #eee;
|
||||
padding: 6px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates td input {
|
||||
outline: 0;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
text-align: center;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates td.sort {
|
||||
cursor: move;
|
||||
color: #ccc;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates td.sort::before {
|
||||
content: "\f333";
|
||||
font-family: "dashicons";
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates .add {
|
||||
padding: 1em 0 0 1em;
|
||||
line-height: 1em;
|
||||
font-size: 1em;
|
||||
width: 0;
|
||||
margin: 6px 0 0;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates .add::before {
|
||||
content: "\f502";
|
||||
font-family: "dashicons";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates .remove {
|
||||
padding: 1em 0 0 1em;
|
||||
line-height: 1em;
|
||||
font-size: 1em;
|
||||
width: 0;
|
||||
margin: 0;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.wu-setup-content .form-table table.tax-rates .remove::before {
|
||||
content: "\f182";
|
||||
font-family: "dashicons";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages {
|
||||
width: 100%;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages thead th {
|
||||
display: none;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages .page-name {
|
||||
width: 30%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages th,
|
||||
.wu-setup-content .wu-setup-pages td {
|
||||
padding: 14px 0;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages th:first-child,
|
||||
.wu-setup-content .wu-setup-pages td:first-child {
|
||||
padding-right: 9px;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages th {
|
||||
padding-top: 0;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages .page-options p {
|
||||
color: #777;
|
||||
margin: 6px 0 0 24px;
|
||||
line-height: 1.75em;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages .page-options p input {
|
||||
vertical-align: middle;
|
||||
margin: 1px 0 0;
|
||||
height: 1.75em;
|
||||
width: 1.75em;
|
||||
line-height: 1.75em;
|
||||
}
|
||||
.wu-setup-content .wu-setup-pages .page-options p label {
|
||||
line-height: 1;
|
||||
}
|
||||
@media screen and (max-width: 782px) {
|
||||
.wu-setup-content .form-table tbody th {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
.wu-setup-content .twitter-share-button {
|
||||
float: right;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps {
|
||||
overflow: hidden;
|
||||
margin: 0 0 24px;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps h2 {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps .wu-setup-next-steps-first {
|
||||
float: left;
|
||||
width: 50%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps .wu-setup-next-steps-last {
|
||||
float: right;
|
||||
width: 50%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul {
|
||||
padding: 0 2em 0 0;
|
||||
list-style: none outside;
|
||||
margin: 0 0 -0.75em;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul li a {
|
||||
display: block;
|
||||
padding: 0 0 0.75em;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul .setup-product a {
|
||||
background-color: #46a5cb;
|
||||
border-color: #46a5cb;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 0 rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 0 rgba(0, 0, 0, 0.15);
|
||||
font-size: 1em;
|
||||
height: auto;
|
||||
line-height: 1.75em;
|
||||
margin: 0 0 0.75em;
|
||||
opacity: 1;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul li a::before {
|
||||
color: #82878c;
|
||||
font: normal 20px/1 "dashicons";
|
||||
speak: none;
|
||||
display: inline-block;
|
||||
padding: 0 10px 0 0;
|
||||
top: 1px;
|
||||
position: relative;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-decoration: none !important;
|
||||
vertical-align: top;
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul .learn-more a::before {
|
||||
content: "\f105";
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul .video-walkthrough a::before {
|
||||
content: "\f126";
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul .sidekick a::before {
|
||||
content: "\f118";
|
||||
}
|
||||
.wu-setup-content .wu-setup-next-steps ul .newsletter a::before {
|
||||
content: "\f465";
|
||||
}
|
||||
.wu-setup-content .wu-setup-tracker,
|
||||
.wu-setup-content .updated {
|
||||
padding: 24px 24px 0;
|
||||
margin: 0 0 24px;
|
||||
overflow: hidden;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.wu-setup-content .wu-setup-tracker p,
|
||||
.wu-setup-content .updated p {
|
||||
padding: 0;
|
||||
margin: 0 0 12px;
|
||||
}
|
||||
.wu-setup-content .wu-setup-tracker p:last-child,
|
||||
.wu-setup-content .updated p:last-child {
|
||||
margin: 0 0 24px;
|
||||
}
|
||||
|
||||
.wu-links-list {
|
||||
list-style: none;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
.wu-links-list li {
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
}
|
||||
.wu-links-list li a {
|
||||
opacity: 0.5;
|
||||
font-size: 11px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.wu-links-list li a span {
|
||||
font-size: 11px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
.wu-links-list li a:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.wu-setup-title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.wu-setup-description {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.wu-setup-steps {
|
||||
padding: 40px 0 24px !important;
|
||||
margin: 0;
|
||||
list-style: none outside;
|
||||
color: #ccc;
|
||||
width: 100%;
|
||||
display: -webkit-inline-flex;
|
||||
display: -ms-inline-flexbox;
|
||||
display: inline-flex;
|
||||
}
|
||||
.wu-setup-steps li {
|
||||
width: 25%;
|
||||
float: left;
|
||||
padding: 0 0 0.8em;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
border-bottom: 4px solid #ccc;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
.wu-setup-steps li::before {
|
||||
content: "";
|
||||
border: 4px solid #ccc;
|
||||
border-radius: 100%;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin-left: -6px;
|
||||
margin-bottom: -8px;
|
||||
background: #fff;
|
||||
}
|
||||
.wu-setup-steps li.active {
|
||||
border-color: #46a5cb;
|
||||
color: #46a5cb;
|
||||
}
|
||||
.wu-setup-steps li.active::before {
|
||||
border-color: #46a5cb;
|
||||
}
|
||||
.wu-setup-steps li.done {
|
||||
border-color: #46a5cb;
|
||||
color: #46a5cb;
|
||||
}
|
||||
.wu-setup-steps li.done::before {
|
||||
border-color: #46a5cb;
|
||||
background: #46a5cb;
|
||||
}
|
||||
|
||||
.wu-setup .wu-setup-actions {
|
||||
overflow: hidden;
|
||||
}
|
||||
.wu-setup .wu-setup-actions .button {
|
||||
float: right;
|
||||
font-size: 1.25em;
|
||||
padding: 0.5em 1em;
|
||||
line-height: 1em;
|
||||
margin-right: 0.5em;
|
||||
height: auto;
|
||||
}
|
||||
.wu-setup .wu-setup-actions .button-primary {
|
||||
background-color: #46a5cb;
|
||||
border-color: #46a5cb;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 0 rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 0 rgba(0, 0, 0, 0.15);
|
||||
float: right;
|
||||
margin: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.wu-setup-return-to-dashboard {
|
||||
font-size: 0.85em;
|
||||
color: #b5b5b5;
|
||||
margin: 1.18em 0;
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.alert {
|
||||
padding: 10px;
|
||||
background: rgb(255, 168, 168);
|
||||
border: solid 1px red;
|
||||
color: red;
|
||||
margin-bottom: 15px;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.welcome-panel .welcome-panel-column {
|
||||
min-width: auto !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 870px) {
|
||||
div.welcome-panel,
|
||||
div.welcome-panel-last {
|
||||
min-width: auto !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
div.welcome-panel-content {
|
||||
padding-top: 100px;
|
||||
background-position: right top;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* FORM in the signup
|
||||
*/
|
||||
.wu-setup-content .wu-form-control {
|
||||
overflow: hidden;
|
||||
}
|
||||
.wu-setup-content .wu-form-control label {
|
||||
text-transform: uppercase;
|
||||
font-size: 13px;
|
||||
display: block;
|
||||
margin: 30px 0 10px;
|
||||
}
|
||||
.wu-setup-content input.wu-input-half,
|
||||
.wu-setup-content .wu-input-half {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
font-size: 18px;
|
||||
border: solid 1px #ddd;
|
||||
}
|
||||
.wu-setup-content .no-margin-left {
|
||||
padding-left: 0;
|
||||
}
|
||||
.wu-setup-content .no-margin-right {
|
||||
padding-right: 0;
|
||||
}
|
||||
.wu-setup-content .wu-setup-actions {
|
||||
padding: 20px 0;
|
||||
background: #ececec;
|
||||
}
|
||||
.wu-legacy-signup-body .wu-checkout-section-title {
|
||||
display: none;
|
||||
}
|
||||
.wu-legacy-signup-body .wu_submit_button {
|
||||
display: block;
|
||||
margin: 0 -24px -38px !important;
|
||||
padding: 24px !important;
|
||||
background-color: #efefef;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
float: none;
|
||||
overflow: hidden;
|
||||
width: calc(100% + 48px);
|
||||
}
|
||||
.wu-legacy-signup-body .wu_submit_button button {
|
||||
float: none !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Templates
|
||||
*/
|
||||
.wu-template-container {
|
||||
overflow: hidden;
|
||||
padding: 12px;
|
||||
margin: 12px !important;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
|
||||
}
|
||||
.wu-template-container .wu-template-info h2 {
|
||||
padding: 24px 12px;
|
||||
margin: 0;
|
||||
}
|
||||
.wu-template-container .wu-template-thumbnail {
|
||||
border-bottom: solid 1px #eee;
|
||||
max-height: 300px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wu-template-container .wu-template-thumbnail img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.wu-template-container .wu-template-submit {
|
||||
background-color: #f1f1f1;
|
||||
border-top: solid 1px #eee;
|
||||
overflow: hidden;
|
||||
padding: 12px;
|
||||
}
|
||||
.wu-template-container .wu-template-submit button,
|
||||
.wu-template-container .wu-template-submit a.button {
|
||||
width: 100%;
|
||||
}
|
||||
.wu-template-container .wu-template-submit a.button {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.login .wu-signup-back {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login .wu-signup-back-link {
|
||||
text-decoration: none;
|
||||
color: #555d66;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 30px;
|
||||
font-size: 80%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.login #nav a:not(:last-child)::after {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.old-price {
|
||||
margin-top: -20px;
|
||||
margin-bottom: 22px;
|
||||
text-decoration: line-through;
|
||||
font-size: medium;
|
||||
width: auto;
|
||||
text-align: right;
|
||||
display: inline-block;
|
||||
padding: 2.5px;
|
||||
}
|
||||
|
||||
.off-value {
|
||||
font-size: medium;
|
||||
width: auto;
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
padding: 2.5px;
|
||||
}
|
1
assets/css/legacy-signup.min.css
vendored
Normal file
1
assets/css/legacy-signup.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
480
assets/css/template-previewer.css
Normal file
480
assets/css/template-previewer.css
Normal file
@ -0,0 +1,480 @@
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
div,
|
||||
span,
|
||||
applet,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
a,
|
||||
abbr,
|
||||
acronym,
|
||||
address,
|
||||
big,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
s,
|
||||
samp,
|
||||
small,
|
||||
strike,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
tt,
|
||||
var,
|
||||
b,
|
||||
u,
|
||||
i,
|
||||
center,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
article,
|
||||
aside,
|
||||
canvas,
|
||||
details,
|
||||
embed,
|
||||
figure,
|
||||
figcaption,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
output,
|
||||
ruby,
|
||||
section,
|
||||
summary,
|
||||
time,
|
||||
mark,
|
||||
audio,
|
||||
video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font: inherit;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1;
|
||||
background: #333;
|
||||
overflow: hidden;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-weight: normal;
|
||||
color: #555;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
blockquote::before,
|
||||
blockquote::after,
|
||||
q::before,
|
||||
q::after {
|
||||
content: "";
|
||||
content: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#switcher {
|
||||
height: 62px;
|
||||
padding: 10px 30px;
|
||||
z-index: 99999;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#theme_list { /* stylelint-disable-line selector-id-pattern */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#template_selector { /* stylelint-disable-line selector-id-pattern */
|
||||
width: 200px;
|
||||
display: block;
|
||||
padding: 10px 9px;
|
||||
border-radius: 2px;
|
||||
font-weight: bold;
|
||||
margin-top: 3px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#theme_dropdown_list { /* stylelint-disable-line selector-id-pattern */
|
||||
border-radius: 10px;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin: auto;
|
||||
width: 98%;
|
||||
}
|
||||
|
||||
.center ul li {
|
||||
display: inline;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.center ul li ul {
|
||||
display: none;
|
||||
height: 250px;
|
||||
margin-left: 0;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
position: static;
|
||||
width: 200px;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.center ul li ul li {
|
||||
background: #2b2b2b;
|
||||
border-bottom: 1px solid #414141;
|
||||
}
|
||||
|
||||
.center ul li ul li:hover {
|
||||
background: #414141;
|
||||
}
|
||||
|
||||
.center ul li ul li a {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
font-weight: bold;
|
||||
min-width: 198px;
|
||||
color: #dfdfdf;
|
||||
}
|
||||
|
||||
.center ul li ul li a:hover {
|
||||
color: #f0f0f0;
|
||||
}
|
||||
|
||||
#iframe {
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
margin-top: 62px;
|
||||
-webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
|
||||
-moz-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
|
||||
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
#iframe iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.logo {
|
||||
float: left;
|
||||
margin-right: 40px;
|
||||
height: 35px;
|
||||
/* background: #fff; */
|
||||
/* margin-top: -8px; */
|
||||
}
|
||||
|
||||
.logo a {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
opacity: 1;
|
||||
max-height: 100%;
|
||||
margin-top: 2px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.logo img:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.links {
|
||||
float: right;
|
||||
/* margin-top: -7px; */
|
||||
/* width: 210px; */
|
||||
}
|
||||
|
||||
.responsive {
|
||||
float: left;
|
||||
margin-left: 14px;
|
||||
padding: 7px 0;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.responsive a {
|
||||
opacity: 0.5;
|
||||
float: left;
|
||||
margin: 0 6px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.responsive a.tabletlandscape,
|
||||
.responsive a.mobilelandscape {
|
||||
-moz-transform: scaleY(-1) rotate(-90deg);
|
||||
-o-transform: scaleY(-1) rotate(-90deg);
|
||||
-webkit-transform: scaleY(-1) rotate(-90deg);
|
||||
transform: scaleY(-1) rotate(-90deg);
|
||||
}
|
||||
|
||||
.responsive a.active,
|
||||
.responsive a:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.select-template a,
|
||||
.mobile-selector a {
|
||||
padding: 12px;
|
||||
float: left;
|
||||
border-radius: 2px;
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
transition: linear all 100ms;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.select-template a:hover,
|
||||
.mobile-selector a:hover {
|
||||
background-color: #1a1a1a;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.select-template a img {
|
||||
vertical-align: middle;
|
||||
margin-right: 5px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.mobile-selector {
|
||||
/* width: 100%; */
|
||||
/* height: 60px; */
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
display: none;
|
||||
z-index: 999;
|
||||
-webkit-overflow-scrolling: auto;
|
||||
}
|
||||
|
||||
.mobile-selector a {
|
||||
/* float: none; */
|
||||
width: 100%;
|
||||
-webkit-box-shadow: 0 7px 34px -5px rgba(0, 0, 0, 0.75);
|
||||
-moz-box-shadow: 0 7px 34px -5px rgba(0, 0, 0, 0.75);
|
||||
box-shadow: 0 7px 34px -5px rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
|
||||
img.preview {
|
||||
display: none;
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
top: 8px;
|
||||
left: 242px;
|
||||
background: #2b2b2b;
|
||||
padding: 7px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
|
||||
-moz-opacity: 0;
|
||||
-webkit-opacity: 0;
|
||||
opacity: 0;
|
||||
width: 500px;
|
||||
max-width: 500px;
|
||||
}
|
||||
|
||||
.center ul li ul li:hover img.preview {
|
||||
display: inline;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.center ul li ul li span {
|
||||
float: right;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
background: #21759b;
|
||||
border-radius: 2px;
|
||||
padding: 3px 8px;
|
||||
color: #fff;
|
||||
margin-top: -2px;
|
||||
min-width: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) and (max-width: 979px) {
|
||||
.share,
|
||||
.responsive {
|
||||
display: none;
|
||||
}
|
||||
img.preview {
|
||||
width: 360px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.share,
|
||||
.responsive {
|
||||
display: none;
|
||||
}
|
||||
img.preview {
|
||||
width: 300px;
|
||||
left: 191px;
|
||||
}
|
||||
#template_selector { /* stylelint-disable-line selector-id-pattern */
|
||||
width: 160px;
|
||||
}
|
||||
.center ul li ul li a {
|
||||
min-width: 190px;
|
||||
}
|
||||
.center ul li ul {
|
||||
width: 168px;
|
||||
}
|
||||
.logo {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.select-template a {
|
||||
padding: 9px 15px 8px 8px;
|
||||
}
|
||||
.close a {
|
||||
padding: 10px 5px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
.links {
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
/* stylelint-disable-next-line selector-class-pattern */
|
||||
.slimScrollDiv,
|
||||
#template_selector { /* stylelint-disable-line selector-id-pattern */
|
||||
width: 100% !important;
|
||||
}
|
||||
#switcher {
|
||||
height: 96px;
|
||||
}
|
||||
#iframe {
|
||||
margin-top: 0;
|
||||
/* margin-bottom: 40px; */
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
top: 96px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
img.preview {
|
||||
display: none !important;
|
||||
}
|
||||
.center {
|
||||
width: 95%;
|
||||
}
|
||||
.select-template a {
|
||||
padding: 7px 4px 7px 5px;
|
||||
}
|
||||
.close a {
|
||||
padding: 10px 5px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
.logo {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.links {
|
||||
/* font-size: 0; */
|
||||
display: none;
|
||||
width: 60px;
|
||||
}
|
||||
.select-template a img,
|
||||
.close a img {
|
||||
margin-right: 0;
|
||||
}
|
||||
.mobile-selector {
|
||||
display: block;
|
||||
}
|
||||
#theme_list_selector { /* stylelint-disable-line selector-id-pattern */
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.center ul li ul {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
.center ul li {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
1
assets/css/template-previewer.min.css
vendored
Normal file
1
assets/css/template-previewer.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
body,html{margin:0;padding:0;width:100%;height:100%;overflow:hidden}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1;background:#333;overflow:hidden;font-family:"Open Sans",sans-serif;font-weight:400;color:#555;font-size:13px}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote::after,blockquote::before,q::after,q::before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;color:#fff}#switcher{height:62px;padding:10px 30px;z-index:99999;position:fixed;width:100%;box-sizing:border-box}#theme_list{position:relative}#template_selector{width:200px;display:block;padding:10px 9px;border-radius:2px;font-weight:700;margin-top:3px;background:rgba(0,0,0,.2);box-sizing:border-box}#theme_dropdown_list{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;padding:20px}.center{margin:auto;width:98%}.center ul li{display:inline;float:left}.center ul li ul{display:none;height:250px;margin-left:0;overflow-x:hidden;overflow-y:auto;position:static;width:200px;z-index:-1}.center ul li ul li{background:#2b2b2b;border-bottom:1px solid #414141}.center ul li ul li:hover{background:#414141}.center ul li ul li a{display:block;padding:10px;font-weight:700;min-width:198px;color:#dfdfdf}.center ul li ul li a:hover{color:#f0f0f0}#iframe{margin:0 auto;display:block;margin-top:62px;-webkit-box-shadow:0 10px 20px 0 rgba(0,0,0,.4);-moz-box-shadow:0 10px 20px 0 rgba(0,0,0,.4);box-shadow:0 10px 20px 0 rgba(0,0,0,.4)}#iframe iframe{height:100%;width:100%}.logo{float:left;margin-right:40px;height:35px}.logo a{display:inline-block;overflow:hidden;height:35px}.logo img{opacity:1;max-height:100%;margin-top:2px;width:auto}.logo img:hover{opacity:.7}.links{float:right}.responsive{float:left;margin-left:14px;padding:7px 0;margin-top:3px}.responsive a{opacity:.5;float:left;margin:0 6px;width:20px;height:20px}.responsive a.mobilelandscape,.responsive a.tabletlandscape{-moz-transform:scaleY(-1) rotate(-90deg);-o-transform:scaleY(-1) rotate(-90deg);-webkit-transform:scaleY(-1) rotate(-90deg);transform:scaleY(-1) rotate(-90deg)}.responsive a.active,.responsive a:hover{opacity:1}.mobile-selector a,.select-template a{padding:12px;float:left;border-radius:2px;font-weight:700;border:none;text-transform:uppercase;text-align:center;transition:linear all .1s;text-decoration:none}.mobile-selector a:hover,.select-template a:hover{background-color:#1a1a1a;color:#fff}.select-template a img{vertical-align:middle;margin-right:5px;margin-top:-3px}.mobile-selector{position:absolute;bottom:10px;left:10px;right:10px;display:none;z-index:999;-webkit-overflow-scrolling:auto}.mobile-selector a{width:100%;-webkit-box-shadow:0 7px 34px -5px rgba(0,0,0,.75);-moz-box-shadow:0 7px 34px -5px rgba(0,0,0,.75);box-shadow:0 7px 34px -5px rgba(0,0,0,.75)}img.preview{display:none;position:absolute;z-index:999;top:8px;left:242px;background:#2b2b2b;padding:7px;border-radius:3px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.7);box-shadow:0 2px 5px rgba(0,0,0,.7);-moz-opacity:0;-webkit-opacity:0;opacity:0;width:500px;max-width:500px}.center ul li ul li:hover img.preview{display:inline;opacity:1}.center ul li ul li span{float:right;font-size:11px;font-weight:700;background:#21759b;border-radius:2px;padding:3px 8px;color:#fff;margin-top:-2px;min-width:40px;text-align:center}@media (min-width:768px) and (max-width:979px){.responsive,.share{display:none}img.preview{width:360px}}@media (max-width:767px){.responsive,.share{display:none}img.preview{width:300px;left:191px}#template_selector{width:160px}.center ul li ul li a{min-width:190px}.center ul li ul{width:168px}.logo{margin-right:10px}.select-template a{padding:9px 15px 8px 8px}.close a{padding:10px 5px;margin-left:6px}.links{font-size:11px}}@media (max-width:480px){#template_selector,.slimScrollDiv{width:100%!important}#switcher{height:96px}#iframe{margin-top:0;position:fixed;right:0;bottom:0;left:0;top:96px;-webkit-overflow-scrolling:touch;overflow-y:scroll}img.preview{display:none!important}.center{width:95%}.select-template a{padding:7px 4px 7px 5px}.close a{padding:10px 5px;margin-left:6px}.logo{text-align:center;width:100%}.links{display:none;width:60px}.close a img,.select-template a img{margin-right:0}.mobile-selector{display:block}#theme_list_selector{display:block;width:100%;overflow:hidden}.center ul li ul{float:none;width:100%}.center ul li{width:100%}}
|
10
assets/css/whitelabel.css
Normal file
10
assets/css/whitelabel.css
Normal file
@ -0,0 +1,10 @@
|
||||
/* stylelint-disable font-family-no-missing-generic-family-keyword */
|
||||
/* stylelint-disable font-family-name-quotes */
|
||||
/** Whitelabel */
|
||||
body #wpadminbar .quicklinks li div.blavatar {
|
||||
content: " ";
|
||||
}
|
||||
body #wpadminbar .quicklinks li div.blavatar::before {
|
||||
font: normal 16px/1 "dashicons-wu" !important;
|
||||
content: "\e975";
|
||||
}
|
1
assets/css/whitelabel.min.css
vendored
Normal file
1
assets/css/whitelabel.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
body #wpadminbar .quicklinks li div.blavatar{content:" "}body #wpadminbar .quicklinks li div.blavatar::before{font:normal 16px/1 dashicons-wu!important;content:"\e975"}
|
Reference in New Issue
Block a user