installed plugin Easy Digital Downloads
version 3.1.0.3
This commit is contained in:
@ -0,0 +1,129 @@
|
||||
|
||||
#edd-filters {
|
||||
padding: 10px;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
|
||||
.filter-items {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
float: none;
|
||||
flex-grow: 1;
|
||||
|
||||
.edd-date-range-options {
|
||||
display: inline-block;
|
||||
margin: 10px 0;
|
||||
}
|
||||
}
|
||||
|
||||
> p {
|
||||
color: $gray-700;
|
||||
}
|
||||
|
||||
input[type="text"].edd_datepicker,
|
||||
input[type="number"] {
|
||||
max-width: 105px;
|
||||
}
|
||||
|
||||
|
||||
input[type="number"],
|
||||
.button-secondary {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.search-form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media screen and ( max-width: 480px ) {
|
||||
span {
|
||||
margin: 2px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#edd-advanced-filters {
|
||||
position: relative;
|
||||
|
||||
.inside {
|
||||
z-index: 99;
|
||||
position: absolute;
|
||||
top: 29px;
|
||||
right: 0;
|
||||
border: 1px solid $gray-200;
|
||||
padding: 0;
|
||||
background: $white;
|
||||
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
|
||||
min-width: 285px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: block;
|
||||
padding: 10px 15px 15px;
|
||||
margin: 10px 0;
|
||||
|
||||
&:not(:last-of-type) {
|
||||
border-bottom: 1px solid $gray-200;
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
&.edd-add-on-filters {
|
||||
label,
|
||||
span,
|
||||
p,
|
||||
div {
|
||||
display: block;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
div.edd-select-chosen:not(:last-child) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&.open {
|
||||
.edd-advanced-filters-button {
|
||||
background: $gray-200;
|
||||
border-color: $gray-600;
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
-webkit-transform: translateY(1px);
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
.inside {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity 0.2s ease-in;
|
||||
-moz-transition: opacity 0.2s ease-in;
|
||||
-o-transition: opacity 0.2s ease-in;
|
||||
transition: opacity 0.2s ease-in;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.download_page_edd-reports {
|
||||
#edd-filters {
|
||||
margin-bottom: -1px;
|
||||
box-shadow: none;
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
gap: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.edd-old-log-filters {
|
||||
margin-top: -30px;
|
||||
margin-left: 2px;
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
@media screen and (min-width: $break-small) {
|
||||
#edd-reports-charts-wrap {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(200px, 50%));
|
||||
grid-gap: 20px;
|
||||
}
|
||||
|
||||
.edd-reports-chart {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.edd-reports-chart-line {
|
||||
grid-column: 1 / span 2;
|
||||
}
|
||||
}
|
||||
|
||||
.edd-reports-chart {
|
||||
height: 500px;
|
||||
max-height: 700px;
|
||||
}
|
||||
|
||||
.chart-timezone {
|
||||
font-size: .75rem;
|
||||
color: #CCCCCC;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
.edd-mobile-link {
|
||||
line-height: 32px;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
&:before,
|
||||
&:after {
|
||||
display: inline-block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font: normal 20px/30px "dashicons";
|
||||
vertical-align: top;
|
||||
margin: 1px 0 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: "\f470";
|
||||
color: $gray-700;
|
||||
margin-right: -3px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "\f504";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,145 @@
|
||||
#edd-reports-tiles-wrap #dashboard-widgets .sortable-placeholder {
|
||||
padding: 0;
|
||||
margin: 0 0 20px 0;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
height: 110px;
|
||||
}
|
||||
|
||||
#edd-reports-tiles-wrap #dashboard-widgets #primary-sortables {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#edd-reports-tiles-wrap #dashboard-widgets #tertiary-sortables {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#edd-reports-tiles-wrap {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
||||
grid-gap: 20px;
|
||||
}
|
||||
|
||||
.edd-reports-tile {
|
||||
text-align: center;
|
||||
padding: 20px 10px 35px 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
border: 1px solid #e5e5e5;
|
||||
background: #fafafa;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
gap: .5em;
|
||||
>span:not(.tile-compare) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-label {
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
color: $wp-gray-2;
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-value {
|
||||
color: #333;
|
||||
font-size: 2em;
|
||||
line-height: 1;
|
||||
transition: all .2s ease-in-out;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
gap: .25em;
|
||||
}
|
||||
|
||||
.edd-reports-tile:hover {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
|
||||
.edd-reports-tile:hover .tile-value:not(.tile-no-data) {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-amount {
|
||||
color: rgb(39, 148, 218);
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-number {
|
||||
color: rgb(153, 102, 255);
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-amount,
|
||||
.edd-reports-tile .tile-number {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-value.tile-no-data {
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-value.tile-url {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-relative {
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.edd-reports-tile span.dashicons {
|
||||
display: inline-block;
|
||||
font-size: 30px;
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
left: -5px;
|
||||
margin-left: -5px;
|
||||
color: $wp-inactive;
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-relative {
|
||||
span.dashicons {
|
||||
top: -5px;
|
||||
left: -3px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
span.dashicons-arrow-down,
|
||||
span.dashicons-arrow-up.reverse {
|
||||
color: $wp-red-50;
|
||||
}
|
||||
|
||||
span.dashicons-arrow-up,
|
||||
span.dashicons-arrow-down.reverse {
|
||||
color: $wp-green-50;
|
||||
}
|
||||
}
|
||||
|
||||
.edd-reports-tile .tile-compare {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
color: #aaa;
|
||||
font-size: 11px;
|
||||
line-height: 1em;
|
||||
background-color: #fff;
|
||||
border-left: 1px solid #e5e5e5;
|
||||
border-top: 1px solid #e5e5e5;
|
||||
border-bottom: 1px solid #fff;
|
||||
border-right: 1px solid #fff;
|
||||
border-top-left-radius: 8px;
|
||||
padding: 4px 0 0 9px;
|
||||
margin: 0 -1px -1px 0;
|
||||
}
|
||||
|
||||
.edd-reports-tile:hover .tile-compare {
|
||||
border-left: 1px solid #bbb;
|
||||
border-top: 1px solid #bbb;
|
||||
color: #777;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
@import "~@wordpress/base-styles/colors";
|
||||
@import "~@wordpress/base-styles/variables";
|
||||
@import "~@wordpress/base-styles/mixins";
|
||||
@import "~@wordpress/base-styles/breakpoints";
|
||||
@import "~@wordpress/base-styles/animations";
|
||||
@import "../../variables/colors";
|
||||
|
||||
@import "filter";
|
||||
@import "layout";
|
||||
@import "mobile-link";
|
||||
@import "tiles";
|
Reference in New Issue
Block a user