Skip to content

Commit

Permalink
Merge branch 'release/1.0.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dashkevych committed Aug 2, 2022
2 parents 93b78fd + 70ed967 commit b4889d3
Show file tree
Hide file tree
Showing 32 changed files with 13,163 additions and 125 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
_dist
44 changes: 44 additions & 0 deletions assets/css/admin/cpt.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.wwp-form-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 1.5em;
}

.wwp-form-group__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 1em;
}

.wwp-form-group__item--color {
border: 1px solid #c3c4c7;
padding: 0.5em 1em;
background-color: #ffffff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .04);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .04);
border-radius: 2px;
}

.wwp-form-group__item--color:hover {
background-color: #f6f7f7;
}

.wwp-form-group__item .button.wp-color-result {
margin: auto;
}

#display-inactive:checked+label {
color: red;
font-weight: bold;
}

.post-new-php.post-type-greeter .pp-greeter_new {
display: none !important;
}
1 change: 1 addition & 0 deletions assets/css/admin/cpt.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 98 additions & 0 deletions assets/css/admin/pointerplus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/* default styles */
.pointerplus {
--pointerplus-accent: #2271b1;
}

/* color themes: light */
.admin-color-light .pointerplus {
--pointerplus-accent: #888888;
}

/* color themes: modern */
.admin-color-modern .pointerplus {
--pointerplus-accent: #3858e9;
}

/* color themes: blue */
.admin-color-blue .pointerplus {
--pointerplus-accent: #096484;
}

/* color themes: coffee */
.admin-color-coffee .pointerplus {
--pointerplus-accent: #c7a589;
}

/* color themes: ectoplasm */
.admin-color-ectoplasm .pointerplus {
--pointerplus-accent: #a3b745;
}

/* color themes: midnight */
.admin-color-midnight .pointerplus {
--pointerplus-accent: #e14d43;
}

/* color themes: ocean */
.admin-color-ocean .pointerplus {
--pointerplus-accent: #9ebaa0;
}

/* color themes: sunrise */
.admin-color-sunrise .pointerplus {
--pointerplus-accent: #dd823b;
}

.pointerplus .pp-pointer-content {
padding: 0 0 10px;
position: relative;
font-size: 13px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #DFDFDF;
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
}

.pointerplus .pp-pointer-content h3 {
position: relative;
margin: -1px -1px 5px;
padding: 15px 18px 14px 60px;
border-width: 1px 1px medium;
border-style: solid solid none;
border-color: rgba(0, 0, 0, 0.075) rgba(0, 0, 0, 0.075);
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-o-border-image: none;
border-image: none;
line-height: 1.4em;
font-size: 14px;
color: #FFF;
background: none repeat scroll 0 0 var(--pointerplus-accent);
}

.pp-pointer-content p {
padding: 0 15px;
}

.pp-pointer-content h3:before {
background: none repeat scroll 0 0 #FFF;
border-radius: 50%;
color: var(--pointerplus-accent);
font: 20px/1.6 "dashicons";
position: absolute;
top: 8px;
left: 15px;
text-align: center;
width: 32px;
height: 32px;
}

.pp-pointer-content .wp-pointer-buttons {
height: 28px;
}

.pp-pointer-content .wp-pointer-buttons .close {
top: 10px;
}
1 change: 1 addition & 0 deletions assets/css/admin/pointerplus.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions assets/css/admin/settings.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* global form controls */
.wwp-form-inline-control {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 1em;
}

.wwp-description {
max-width: 50ch;
}

.wwp-cookie-expiration> :first-child {
-webkit-margin-before: 0;
margin-block-start: 0;
}

.wwp-cookie-expiration+details {
-webkit-margin-before: 1em;
margin-block-start: 1em;
}

.wwp-clear-cache {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 1em;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}

.wwp-form-notice {
display: none;
}

.wwp-form-notice[aria-hidden="false"] {
display: block;
font-weight: bold;
}

#wwp-clear-cache-updated {
color: green;
}

#wwp-clear-cache-error {
color: red;
}
1 change: 1 addition & 0 deletions assets/css/admin/settings.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b4889d3

Please sign in to comment.