Initial commit

This commit is contained in:
2020-04-07 13:03:04 +00:00
committed by Gitium
commit 00f842d9bf
1673 changed files with 471161 additions and 0 deletions

View File

@ -0,0 +1,33 @@
/**
* Alpha Color Picker CSS
*/
.customize-control-gp-alpha-color .iris-picker .iris-square {
margin-right:10px;
}
.customize-control-gp-alpha-color .alpha-slider.ui-widget-content,
.customize-control-gp-alpha-color .ui-widget-header{
background: none;
border: 0;
box-shadow: 0 0 0 transparent;
}
.alpha-color-picker-wrap a.iris-square-value:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.gp-alpha-color-picker-container {
position: relative;
margin-left: 10px;
background-image: url(transparency-grid.png);
}
.gp-alpha-color-picker-container .iris-picker .iris-strip .ui-slider-handle {
z-index: 100;
}
.customize-control-gp-alpha-color .wp-picker-input-wrap .button.wp-picker-clear {
margin-left: 6px;
padding: 2px 8px;
}

View File

@ -0,0 +1,21 @@
.generatepress-control-toggles {
display: flex;
}
.generatepress-control-toggles button {
flex-basis: 100%;
background-color: #fafafa;
border: 1px solid #ddd;
cursor: pointer;
padding: 5px 10px;
}
.generatepress-control-toggles button:last-child {
border-left: 0;
}
.generatepress-control-toggles button.active {
background-color: #fff;
border: 1px solid #ccc;
font-weight: bold;
}

View File

@ -0,0 +1,38 @@
.generatepress-shortcuts {
background: #fff;
padding: 10px 15px;
border-width: 0 1px 1px 0;
border-color: #ddd;
border-style: solid;
}
.generatepress-shortcuts .more-controls {
font-weight: 600;
margin-right: 5px;
display: block;
font-size: 12px;
margin-bottom: 3px;
}
.generatepress-shortcuts .shortcuts .shortcut:not(:last-child):after {
content: "\2022";
padding: 0 1px;
}
.generatepress-shortcuts .shortcut a {
text-decoration: none;
}
.generatepress-shortcuts .shortcut {
font-size: 12px;
}
.return-shortcut .dashicons {
float: right;
cursor: pointer;
}
.return-shortcut a {
font-size: 12px;
text-decoration: none;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,144 @@
.customize-control-generatepress-pro-range-slider .generatepress-slider {
position: relative;
width: calc(100% - 60px);
height: 6px;
background-color: rgba(0,0,0,.10);
cursor: pointer;
-webkit-transition: background .5s;
-moz-transition: background .5s;
transition: background .5s;
}
.customize-control-generatepress-pro-range-slider .has-unit .generatepress-slider {
width: calc(100% - 90px);
}
.customize-control-generatepress-pro-range-slider .gp_range_value.hide-value {
display: none;
}
.customize-control-generatepress-pro-range-slider .gp_range_value.hide-value + .generatepress-slider {
width: 100%;
}
.customize-control-generatepress-pro-range-slider .generatepress-slider .ui-slider-handle {
height: 16px;
width: 16px;
background-color: #3498D9;
display: inline-block;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%) translateX(-4px);
transform: translateY(-50%) translateX(-4px);
border-radius: 50%;
cursor: pointer;
}
.customize-control-generatepress-pro-range-slider .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.customize-control-generatepress-pro-range-slider .gp_range_value {
font-size: 14px;
padding: 0;
font-weight: 400;
width: 50px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.customize-control-generatepress-pro-range-slider .has-unit .gp_range_value {
width: 80px;
}
.customize-control-generatepress-pro-range-slider .gp_range_value span.value {
font-size: 12px;
width: calc(100% - 2px);
text-align: center;
min-height: 30px;
background: #FFF;
line-height: 30px;
border: 1px solid #DDD;
}
.customize-control-generatepress-pro-range-slider .has-unit .gp_range_value span.value {
width: calc(100% - 32px);
display: block;
}
.customize-control-generatepress-pro-range-slider .gp_range_value .unit {
width: 29px;
text-align: center;
font-size: 12px;
line-height: 30px;
background: #fff;
border: 1px solid #ddd;
margin-left: 1px;
}
.customize-control-generatepress-pro-range-slider .generatepress-pro-range-slider-reset span {
font-size: 16px;
line-height: 22px;
}
.customize-control-generatepress-pro-range-slider .gp_range_value input {
font-size: 12px;
padding: 0px;
text-align: center;
min-height: 30px;
height: auto;
border-radius: 0;
border-color: #ddd;
}
.customize-control-generatepress-pro-range-slider .has-unit .gp_range_value input {
width: calc(100% - 30px);
}
.customize-control-generatepress-pro-range-slider .gp-range-title-area .dashicons {
cursor: pointer;
font-size: 11px;
width: 20px;
height: 20px;
line-height: 20px;
color: #222;
text-align: center;
position: relative;
top: 2px;
}
.customize-control-generatepress-pro-range-slider .gp-range-title-area .dashicons:hover {
background: #fafafa;
}
.customize-control-generatepress-pro-range-slider .gp-range-title-area .dashicons.selected {
background: #fff;
color: #222;
}
.gp-range-title-area {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.gp-range-slider-controls {
margin-left: auto;
}
.customize-control-generatepress-pro-range-slider .gp-device-controls > span:first-child:last-child {
display: none;
}
.customize-control-generatepress-pro-range-slider .sub-description {
margin-top: 10px;
}

View File

@ -0,0 +1,105 @@
.gp-spacing-control-section-title-area {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.gp-range-slider-controls {
margin-left: auto;
}
.customize-control-spacing .description {
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
font-style: normal;
opacity: 0.7;
}
.spacing-values-area {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.gp-spacing-section input {
min-height: 30px;
border-radius: 0;
border-color: #ddd;
}
.gp-link-spacing-section span {
display: block;
color: #0073aa;
font-size: 14px;
cursor: pointer;
height: auto;
min-height: 28px;
line-height: 28px;
box-sizing: border-box;
width: 40px;
background: #fff;
border: 1px solid #ddd;
}
.gp-link-spacing-section span.gp-unlink-spacing {
background-color: #0073aa;
color: #fff;
}
.gp-spacing-section {
margin-right: 2px;
text-align:center
}
.gp-link-spacing-section {
margin-right: 0;
}
.gp-spacing-section .description {
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
font-style: normal;
opacity: 0.7;
}
.no-edit-field {
font-size: 11px;
opacity: 0.8;
font-weight: 600;
}
/*
* Make sure slider is 100% wide.
* Old versions of Secondary Nav will have this set as 50%
* so we need to set !important to overwrite that.
*/
.customize-control.customize-control-gp-spacing-slider {
width: 100% !important;
}
.customize-control-generatepress-spacing .gp-spacing-control-section-title-area .dashicons {
cursor: pointer;
font-size: 11px;
width: 20px;
height: 20px;
line-height: 20px;
color: #222;
text-align: center;
position: relative;
top: 2px;
}
.customize-control-generatepress-spacing .gp-spacing-control-section-title-area .dashicons:hover {
background: #fafafa;
}
.customize-control-generatepress-spacing .gp-spacing-control-section-title-area .dashicons.selected {
background: #fff;
color: #222;
}
.customize-control-generatepress-spacing .gp-device-controls > span:first-child:last-child {
display: none;
}

View File

@ -0,0 +1,9 @@
.generatepress-customizer-title {
background: #FFF;
padding: 10px 12px;
font-weight: 600;
border-style: solid;
border-width: 0 1px 1px 0;
border-color: #ddd;
font-size: 15px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,64 @@
.generatepress-font-family {
margin-bottom: 12px;
}
.generatepress-weight-transform-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.generatepress-font-weight,
.generatepress-font-transform {
width: calc(50% - 5px);
}
span.select2-container.select2-container--default.select2-container--open li.select2-results__option {
margin:0;
}
span.select2-container.select2-container--default.select2-container--open{
z-index:999999;
}
.select2-selection__rendered li {
margin-bottom: 0;
}
.select2-container--default .select2-selection--single,
.select2-container--default.select2-container .select2-selection--multiple,
.select2-dropdown,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
border-color: #ddd;
border-radius: 0;
}
.select2-container--default .select2-results__option[aria-selected=true] {
color: rgba(0,0,0,0.4);
}
.select2-container .select2-search--inline {
display: none;
}
#customize-control-single_content_title_control,
#customize-control-font_heading_2_control,
#customize-control-archive_content_title_control,
#customize-control-font_heading_3_control,
#customize-control-font_heading_4_control,
#customize-control-font_heading_5_control,
#customize-control-font_heading_6_control {
margin-top: 20px;
}
.generatepress-weight-transform-wrapper select option[value=""] {
display: none;
}
#customize-control-single_content_title_control .generatepress-weight-transform-wrapper select option[value=""],
#customize-control-archive_content_title_control .generatepress-weight-transform-wrapper select option[value=""] {
display: block;
}