Initial commit: Atomaste website
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,41 @@
|
||||
/**
|
||||
*
|
||||
* Prefix everything
|
||||
* Name descriptively
|
||||
* Structure radically
|
||||
*
|
||||
* CSS Structure
|
||||
* css/
|
||||
* ├─ admin/
|
||||
* │ ├─ base.less
|
||||
* │ ├─ layout.less
|
||||
* │ ├─ modules/
|
||||
* │ │ ├─ button.less
|
||||
* │ │ ├─ modal.less
|
||||
* │ │ ├─ notices.less
|
||||
* │ │ ├─ tips-and-tricks.less
|
||||
* │ │ ├─ etc.....
|
||||
* │ ├─ states.less
|
||||
* │ ├─ theme.less
|
||||
* ├─ admin.less
|
||||
* ├─ admin.min.css
|
||||
* ├─ admin.css
|
||||
* ├─ variables.less
|
||||
*
|
||||
*/
|
||||
|
||||
@import 'variables.less';
|
||||
@import 'admin/base.less';
|
||||
@import 'admin/layout.less';
|
||||
@import 'admin/modules/buttons.less';
|
||||
@import 'admin/modules/icons.less';
|
||||
@import 'admin/modules/notices.less';
|
||||
@import 'admin/modules/input-fields.less';
|
||||
@import 'admin/modules/bullets.less';
|
||||
@import 'admin/modules/header.less';
|
||||
@import 'admin/modules/wcag.less';
|
||||
@import 'admin/modules/tooltip.less';
|
||||
@import 'admin/modules/icons.less';
|
||||
@import 'admin/modules/other-plugins.less';
|
||||
@import 'admin/states.less';
|
||||
@import 'admin/theme.less';
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,95 @@
|
||||
.cmplz {
|
||||
font-size: var(--rsp-fs-300);
|
||||
box-sizing: border-box;
|
||||
line-height: 1.5;
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: var(--rsp-text-color);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.h0 {
|
||||
font-size: var(--rsp-fs-900);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.025rem;
|
||||
}
|
||||
|
||||
h1, .h1 {
|
||||
font-size: var(--rsp-fs-800);
|
||||
line-height: 1.5;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.025rem;
|
||||
}
|
||||
|
||||
h2, .h2 {
|
||||
font-size: var(--rsp-fs-700);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.025rem;
|
||||
}
|
||||
|
||||
h3, .h3 {
|
||||
font-size: var(--rsp-fs-600);
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.0125rem;
|
||||
}
|
||||
|
||||
h4, .h4 {
|
||||
font-size: var(--rsp-fs-500);
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.0125rem;
|
||||
}
|
||||
|
||||
h5, .h5 {
|
||||
font-size: var(--rsp-fs-400);
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.1px;
|
||||
}
|
||||
|
||||
h6, .h6 {
|
||||
font-size: var(--rsp-fs-300);
|
||||
letter-spacing: 0.1px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--rsp-text-color);
|
||||
font-weight: 400;
|
||||
font-size: var(--rsp-fs-400);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.small-text {
|
||||
font-size: var(--rsp-fs-200);
|
||||
line-height: 1.5;
|
||||
color: var(--rsp-text-color-light);
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
//wordpress inserts notices after the first h1 or h2. To prevent breaking layout we insert an empty h1 tag at the start of our page, where WP can insert the notice.
|
||||
.cmplz-notice-hook-element {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
// Hide nags from other plugins
|
||||
.error, .notice, .update-nag, .notice-info {
|
||||
&:not(.really-simple-plugins) {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
@@ -0,0 +1,212 @@
|
||||
|
||||
/* Grid */
|
||||
.cmplz {
|
||||
&.wrap {
|
||||
padding-bottom: 20px;
|
||||
margin: 0 0 0 -20px;
|
||||
}
|
||||
.cmplz-header, .cmplz-content-area {
|
||||
max-width: calc(100% - var(--rsp-spacing-xl) * 4);
|
||||
margin: 0 auto;
|
||||
@media(max-width: @rsp-break-xxl){
|
||||
max-width: calc(100% - var(--rsp-spacing-xl) * 1);
|
||||
}
|
||||
@media(max-width: @rsp-break-xl){
|
||||
max-width: calc(100% - var(--rsp-spacing-xl) * 2);
|
||||
}
|
||||
@media(max-width: @rsp-break-s){
|
||||
max-width: calc(100% - var(--rsp-spacing-xl) * 1);
|
||||
}
|
||||
}
|
||||
.cmplz-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
height: 70px;
|
||||
box-sizing: border-box;
|
||||
background-color: var(--rsp-background-block-color);
|
||||
@media( max-width: @rsp-break-l ){
|
||||
height: auto;
|
||||
}
|
||||
|
||||
img {
|
||||
margin: var(--rsp-spacing-m) 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-header-left {
|
||||
display: flex;
|
||||
font-size: var(--rsp-fs-400);
|
||||
@media( max-width: @rsp-break-l ){
|
||||
justify-content: center;
|
||||
margin: var(--rsp-spacing-xs) 0;
|
||||
order: 3;
|
||||
width: 100%;
|
||||
background-color: var(--rsp-background-block-color);
|
||||
}
|
||||
|
||||
.cmplz-header-menu {
|
||||
margin: auto 15px;
|
||||
ul{
|
||||
display: flex;
|
||||
}
|
||||
a {
|
||||
padding: 23px 15px;
|
||||
text-decoration: none;
|
||||
color: var(--rsp-text-color);
|
||||
height: 100%;
|
||||
border-bottom: 4px solid transparent;
|
||||
transition: border 0.3s ease-out;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
@media( max-width: @rsp-break-l ){
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-bottom: 4px solid var(--rsp-brand-primary);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: var(--rsp-brand-primary);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-header-right {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
gap: var(--rsp-spacing-s);
|
||||
select {
|
||||
max-width: 60ch;
|
||||
}
|
||||
@media( max-width: @rsp-break-xs ) {
|
||||
.button{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-content-area {
|
||||
margin-top: calc(var(--rsp-grid-margin) * 2);
|
||||
}
|
||||
|
||||
.cmplz-header-container {
|
||||
background: var(--rsp-background-block-color);
|
||||
}
|
||||
.cmplz-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, calc(25% - var(--rsp-spacing-s)) [col-start]); // We use calc because of the grid gap
|
||||
grid-auto-rows: max-content;
|
||||
gap: var(--rsp-grid-gap);
|
||||
min-height: calc(100vh - 32px - 80px - 20px - var(--rsp-grid-gap)); //32px = wordpress bar, 80px = cmplz bar, 20px = margin-top, 20px is grid gap
|
||||
}
|
||||
.cmplz-grid-container {
|
||||
.cmplz-block;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
flex-direction: column;
|
||||
flex-basis: 100%;
|
||||
min-height: 100%;
|
||||
grid-column: span 1;
|
||||
grid-row: span 1;
|
||||
p{
|
||||
font-size: var(--rsp-fs-300);
|
||||
}
|
||||
|
||||
&.no-background {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
&.column-2 {
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
&.row-2 {
|
||||
grid-row: span 2;
|
||||
}
|
||||
@media( max-width: @rsp-break-xxl ){
|
||||
grid-column: span 2;
|
||||
&.cmplz-progress, &.cmplz-overview{
|
||||
grid-column: span 4;
|
||||
}
|
||||
}
|
||||
@media( max-width: @rsp-break-m ){
|
||||
grid-column: span 2;
|
||||
&.column-2 {
|
||||
grid-column: span 4;
|
||||
}
|
||||
}
|
||||
@media( max-width: @rsp-break-s ) {
|
||||
grid-column: span 4;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-grid-header {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--rsp-spacing-m) var(--rsp-spacing-l);
|
||||
@media(max-width: @rsp-break-xl){
|
||||
padding: var(--rsp-spacing-s) var(--rsp-spacing-m);
|
||||
}
|
||||
}
|
||||
.cmplz-grid-title, .cmplz-wizard-title .h4 {
|
||||
margin: 4px 0 4px 0;
|
||||
}
|
||||
|
||||
.cmplz-grid-controls {
|
||||
font-size: var(--rsp-fs-300);
|
||||
display: flex;
|
||||
gap: var(--rsp-spacing-s);
|
||||
}
|
||||
|
||||
|
||||
.cmplz-grid-content {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 0 var(--rsp-spacing-l);
|
||||
@media(max-width: @rsp-break-xl){
|
||||
padding: 0 var(--rsp-spacing-m);
|
||||
}
|
||||
flex-grow: 100;
|
||||
}
|
||||
|
||||
.cmplz-grid-footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--rsp-grid-margin);
|
||||
width: 100%;
|
||||
min-height: calc( 30px + var(--rsp-spacing-s) * 2);
|
||||
box-sizing: border-box;
|
||||
padding: var(--rsp-spacing-m) var(--rsp-spacing-l);
|
||||
@media(max-width: @rsp-break-xl){
|
||||
padding: var(--rsp-spacing-s) var(--rsp-spacing-m);
|
||||
}
|
||||
align-self: flex-end;
|
||||
|
||||
.cmplz-legend {
|
||||
display:flex;
|
||||
span {
|
||||
padding-left:5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cmplz-flex-push-right{
|
||||
margin-left: auto;
|
||||
}
|
||||
.cmplz-flex-push-left{
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
.cmplz{
|
||||
// cmplz bullets
|
||||
.cmplz-bullet {
|
||||
height: 13px;
|
||||
width: 13px;
|
||||
flex: 0 0 13px;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
&.rsp-yellow {
|
||||
background-color: var(--rsp-yellow);
|
||||
}
|
||||
|
||||
&.rsp-blue {
|
||||
background-color: var(--rsp-blue);
|
||||
}
|
||||
|
||||
&.rsp-pink {
|
||||
background-color: var(--rsp-pink);
|
||||
}
|
||||
|
||||
&.rsp-red {
|
||||
background-color: var(--rsp-red);
|
||||
}
|
||||
|
||||
&.rsp-green {
|
||||
background-color: var(--rsp-green);
|
||||
}
|
||||
&.rsp-blue-yellow {
|
||||
background: var(--rsp-blue);
|
||||
background: linear-gradient(77deg, rgba(0,159,255) 0%, rgba(0,159,255, 1) 30%, rgba(244, 191, 62, 1) 70%, rgba(244, 191, 62, 1) 100%);
|
||||
animation: gradient 2s ease infinite;
|
||||
background-size: 200% 200%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gradient {
|
||||
0% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
.cmplz {
|
||||
a.button, button.button, input.button {
|
||||
font-size: var(--rsp-fs-300);
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.5px;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&.button-black {
|
||||
border: 0 solid transparent;
|
||||
background: var(--rsp-black);
|
||||
color: var(--rsp-text-color-white);
|
||||
&:hover, &:focus, &:active {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--rsp-black);
|
||||
}
|
||||
}
|
||||
|
||||
&.button-tertiary, &.button-red {
|
||||
border: 0 solid transparent;
|
||||
background: var(--rsp-red);
|
||||
color: var(--rsp-text-color-white);
|
||||
&:hover, &:focus, &:active {
|
||||
box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--rsp-red);
|
||||
background: var(--rsp-red);
|
||||
color: var(--rsp-text-color-white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Documents overview */
|
||||
.cmplz-shortcode {
|
||||
right:10000px;
|
||||
position:absolute;
|
||||
background-color:#fff;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.shortcode {
|
||||
cursor:pointer;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.cmplz-header-container .cmplz-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
height: 70px;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
|
||||
img {
|
||||
margin: auto 0;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.cmplz-header-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: auto;
|
||||
gap: var(--rsp-spacing-s);
|
||||
|
||||
select {
|
||||
max-width: 60ch;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
.cmplz-icon, .cmplz-icon-tooltip{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
svg{
|
||||
fill: currentColor;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-copy-shortcode{
|
||||
cursor:pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
transition: transform 0.1s ease-in;
|
||||
&.cmplz-click-animation .cmplz-icon{
|
||||
animation: beat 0.4s ease-out;
|
||||
}
|
||||
@keyframes beat {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(0.80);
|
||||
}
|
||||
95% {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-copy-shortcode-text {
|
||||
right:10000px;
|
||||
position:absolute;
|
||||
background-color:#fff;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
/* field styles */
|
||||
.cmplz {
|
||||
input{
|
||||
background: var(--rsp-input-background-color);
|
||||
color: var(--rsp-input-text-color);
|
||||
border-color: var(--rsp-input-border-color);
|
||||
&[type=checkbox]:disabled{
|
||||
cursor: not-allowed;
|
||||
}
|
||||
&:disabled + .cmplz-slider{
|
||||
cursor: not-allowed;
|
||||
}
|
||||
&[type=text]:disabled{
|
||||
background-color: #eee;
|
||||
color: #ababab;
|
||||
}
|
||||
}
|
||||
select{
|
||||
background: var(--rsp-input-background-color) url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
|
||||
color: var(--rsp-input-text-color);
|
||||
border-color: var(--rsp-input-border-color);
|
||||
}
|
||||
.field-group {
|
||||
.cmplz-label {
|
||||
text-align: left;
|
||||
margin: 0 var(--rsp-spacing-xs) 0 0;
|
||||
}
|
||||
|
||||
&.first .cmplz-label {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.cmplz-checkbox {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
/*
|
||||
cool checkbox sliders
|
||||
*/
|
||||
|
||||
.cmplz-switch {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
height: 21px;
|
||||
input {
|
||||
display: none !important;
|
||||
}
|
||||
&:disabled{
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
left: 4px;
|
||||
bottom: 3px;
|
||||
background-color: white;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
&.cmplz-round {
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
&.cmplz-round:before {
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-slider-na {
|
||||
padding: 2px 8px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "N/A";
|
||||
color: white;
|
||||
}
|
||||
|
||||
&.cmplz-round {
|
||||
border-radius: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
input:checked + .cmplz-slider {
|
||||
background-color: var(--rsp-wp-blue);
|
||||
|
||||
&:before {
|
||||
-webkit-transform: translateX(17px);
|
||||
-ms-transform: translateX(17px);
|
||||
transform: translateX(17px);
|
||||
}
|
||||
}
|
||||
|
||||
input:checked:disabled + .cmplz-slider {
|
||||
background-color: var(--rsp-wp-blue-faded);
|
||||
}
|
||||
|
||||
|
||||
input:focus + .cmplz-slider {
|
||||
box-shadow: 0 0 1px var(--rsp-wp-blue);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
Admin notice
|
||||
*/
|
||||
.cmplz-admin-notice {
|
||||
|
||||
.cmplz-admin-notice-container {
|
||||
display: flex;
|
||||
padding: 12px;
|
||||
align-items: center;
|
||||
|
||||
.cmplz-logo img {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.dashicons {
|
||||
margin-left: 10px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
.cmplz-terms-conditions .cmplz-other-plugins-container {
|
||||
grid-column: 1 / span 2;
|
||||
justify-self: center;
|
||||
max-width: 50%;
|
||||
margin-top: var(--rsp-spacing-xs);
|
||||
}
|
||||
.cmplz-terms-conditions {
|
||||
.cmplz-other-plugins-container .rsp-logo img {
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.cmplz-other-plugins-container {
|
||||
display: flex !important;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 10px;
|
||||
font-size: var(--rsp-fs-300);
|
||||
line-height: 1.7;
|
||||
gap: var(--rsp-spacing-xxs);
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
flex-direction: row;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cmplz-other-plugins-element {
|
||||
padding: 0 var(--rsp-spacing-l);
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-content: space-between;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
--rsp-other-plugins-color: var(---rsp-brand-primary);
|
||||
|
||||
&.cmplz-zip {
|
||||
--rsp-other-plugins-color: var(--rsp-pink);
|
||||
}
|
||||
|
||||
&.cmplz-burst {
|
||||
--rsp-other-plugins-color: var(--rsp-green);
|
||||
}
|
||||
|
||||
&.cmplz-complianz, &.cmplz-complianztc {
|
||||
--rsp-other-plugins-color: var(--rsp-blue);
|
||||
}
|
||||
|
||||
&.cmplz-rsssl {
|
||||
--rsp-other-plugins-color: var(--rsp-yellow);
|
||||
}
|
||||
|
||||
a {
|
||||
width: max-content;
|
||||
color: var(--rsp-text-color-light);
|
||||
transition: color 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-width: 0;
|
||||
gap: var(--rsp-spacing-xs);
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: var(--rsp-other-plugins-color);
|
||||
text-decoration: underline;
|
||||
|
||||
.cmplz-bullet {
|
||||
background-color: var(--rsp-other-plugins-color);
|
||||
}
|
||||
|
||||
.cmplz-other-plugins-content {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-bullet {
|
||||
transition: background-color 0.3s ease;
|
||||
background-color: var(--rsp-other-plugins-color);
|
||||
}
|
||||
|
||||
.cmplz-other-plugins-content {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.cmplz-other-plugin-status{
|
||||
min-width: fit-content;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.cmplz-pagination {
|
||||
display:flex;
|
||||
justify-content:flex-end;
|
||||
margin-left: auto;
|
||||
a {
|
||||
cursor: pointer;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
border: 1px solid var(--rsp-input-border-color);
|
||||
color: #000;
|
||||
text-align: center;
|
||||
margin: 5px;
|
||||
line-height: 25px;
|
||||
border-radius: 3px;
|
||||
&.cmplz-current {
|
||||
background-color:#000;
|
||||
color:#fff;
|
||||
}
|
||||
.cmplz-icon {
|
||||
margin-top:3px;
|
||||
color: #000 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,158 @@
|
||||
/* START TOOLTIP STYLES */
|
||||
[cmplz-tooltip] {
|
||||
position: relative; /* opinion 1 */
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Applies to all tooltips */
|
||||
[cmplz-tooltip]::before,
|
||||
[cmplz-tooltip]::after {
|
||||
text-transform: none;
|
||||
font-size: 13px;
|
||||
user-select: none;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
display: none;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
[cmplz-tooltip]::before {
|
||||
content: '';
|
||||
border: 5px solid transparent; /* opinion 4 */
|
||||
z-index: 1001; /* absurdity 1 */
|
||||
}
|
||||
|
||||
[cmplz-tooltip]::after {
|
||||
content: attr(cmplz-tooltip); /* magic! */
|
||||
font-weight:normal;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding: 1ch 1.5ch;
|
||||
border-radius: .3ch;
|
||||
box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
|
||||
background: #333;
|
||||
color: #fff;
|
||||
z-index: 1000; /* absurdity 2 */
|
||||
width: min(100vw, 45ch);
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
/* Make the tooltips respond to hover */
|
||||
[cmplz-tooltip]:hover::before,
|
||||
[cmplz-tooltip]:hover::after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Make the tooltips respond to focus */
|
||||
[cmplz-tooltip]:focus::before,
|
||||
[cmplz-tooltip]:focus::after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* don't show empty tooltips */
|
||||
[cmplz-tooltip='']::before,
|
||||
[cmplz-tooltip='']::after {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* FLOW: UP */
|
||||
[cmplz-tooltip]:not([flow])::before,
|
||||
[cmplz-tooltip][flow^="up"]::before {
|
||||
bottom: calc(100% + 5px);
|
||||
border-bottom-width: 0;
|
||||
border-top-color: #333;
|
||||
}
|
||||
|
||||
[cmplz-tooltip]:not([flow])::after,
|
||||
[cmplz-tooltip][flow^="up"]::after {
|
||||
bottom: calc(100% + 10px);
|
||||
}
|
||||
|
||||
[cmplz-tooltip]:not([flow])::before,
|
||||
[cmplz-tooltip]:not([flow])::after,
|
||||
[cmplz-tooltip][flow^="up"]::before,
|
||||
[cmplz-tooltip][flow^="up"]::after {
|
||||
left: 50%;
|
||||
transform: translate(-50%, -.5em);
|
||||
}
|
||||
|
||||
/* FLOW: DOWN */
|
||||
[cmplz-tooltip][flow^="down"]::before {
|
||||
top: 17px;
|
||||
border-top-width: 0;
|
||||
}
|
||||
|
||||
[cmplz-tooltip][flow^="down"]::after {
|
||||
top: calc(100% + 5px);
|
||||
}
|
||||
|
||||
[cmplz-tooltip][flow^="down"]::before,
|
||||
[cmplz-tooltip][flow^="down"]::after {
|
||||
left: 50%;
|
||||
transform: translate(-50%, .5em);
|
||||
}
|
||||
|
||||
/* FLOW: LEFT */
|
||||
[cmplz-tooltip][flow^="left"]::before {
|
||||
top: 50%;
|
||||
border-right-width: 0;
|
||||
border-left-color: #333;
|
||||
left: calc(0em - 5px);
|
||||
transform: translate(-.5em, -50%);
|
||||
}
|
||||
|
||||
[cmplz-tooltip][flow^="left"]::after {
|
||||
top: 50%;
|
||||
right: calc(100% + 5px);
|
||||
transform: translate(-.5em, -50%);
|
||||
}
|
||||
|
||||
/* FLOW: RIGHT */
|
||||
[cmplz-tooltip][flow^="right"]::before {
|
||||
top: 10px;
|
||||
border-left-width: 0;
|
||||
border-right-color: #333;
|
||||
right: calc(0em - 23px);
|
||||
transform: translate(.5em, -50%);
|
||||
}
|
||||
|
||||
[cmplz-tooltip][flow^="right"]::after {
|
||||
top: 10px;
|
||||
left: calc(100% + 23px);
|
||||
transform: translate(.5em, -50%);
|
||||
min-width:150px;
|
||||
}
|
||||
|
||||
/* KEYFRAMES */
|
||||
@keyframes tooltips-vert {
|
||||
to {
|
||||
opacity: .9;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tooltips-horz {
|
||||
to {
|
||||
opacity: .9;
|
||||
transform: translate(0, -50%);
|
||||
}
|
||||
}
|
||||
|
||||
/* FX All The Things */
|
||||
[cmplz-tooltip]:not([flow]):hover::before, [cmplz-tooltip]:not([flow]):focus::before,
|
||||
[cmplz-tooltip]:not([flow]):hover::after, [cmplz-tooltip]:not([flow]):focus::after,
|
||||
[cmplz-tooltip][flow^="up"]:hover::before, [cmplz-tooltip][flow^="up"]:focus::before,
|
||||
[cmplz-tooltip][flow^="up"]:hover::after, [cmplz-tooltip][flow^="up"]:focus::after,
|
||||
[cmplz-tooltip][flow^="down"]:hover::before, [cmplz-tooltip][flow^="down"]:focus::before,
|
||||
[cmplz-tooltip][flow^="down"]:hover::after, [cmplz-tooltip][flow^="down"]:focus::after {
|
||||
animation: tooltips-vert 300ms ease-out forwards;
|
||||
}
|
||||
|
||||
[cmplz-tooltip][flow^="left"]:hover::before, [cmplz-tooltip][flow^="left"]:focus::before,
|
||||
[cmplz-tooltip][flow^="left"]:hover::after, [cmplz-tooltip][flow^="left"]:focus::after,
|
||||
[cmplz-tooltip][flow^="right"]:hover::before, [cmplz-tooltip][flow^="right"]:focus::before,
|
||||
[cmplz-tooltip][flow^="right"]:hover::after, [cmplz-tooltip][flow^="right"]:focus::after {
|
||||
animation: tooltips-horz 300ms ease-out forwards;
|
||||
}
|
||||
@@ -0,0 +1,151 @@
|
||||
#complianz{
|
||||
*:focus-visible{
|
||||
outline-offset: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
// High contrast
|
||||
#complianz.wrap.cmplz-high-contrast {
|
||||
|
||||
.cmplz-grid-controls {
|
||||
color: var(--rsp-black);
|
||||
a {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
button {
|
||||
.cmplz-close-warning-x {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-progress-status.cmplz-completed {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
|
||||
.cmplz-step {
|
||||
.cmplz-step-header {
|
||||
&.incomplete a h2 {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-section {
|
||||
display: grid;
|
||||
grid-template-columns: @green-gap 1fr;
|
||||
|
||||
span {
|
||||
align-self: center;
|
||||
justify-self: center;
|
||||
}
|
||||
|
||||
margin: 0 @green-gap;
|
||||
a {
|
||||
h3 {
|
||||
color: var(--rsp-black) ;
|
||||
}
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
padding: 3px 5px;
|
||||
|
||||
}
|
||||
&.cmplz-done a h3 {
|
||||
color: var(--rsp-black) ;
|
||||
}
|
||||
|
||||
&.active a h3 {
|
||||
color: var(--rsp-black) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-help-warning-wrap {
|
||||
.cmplz-help-modal {
|
||||
z-index: 1;
|
||||
|
||||
&.cmplz-notice {
|
||||
background-color: var(--rsp-black);
|
||||
&:after {
|
||||
border-right: 15px solid var(--rsp-black);
|
||||
}
|
||||
}
|
||||
&.cmplz-warning a{
|
||||
color: var(--rsp-black)!important;
|
||||
}
|
||||
&.cmplz-warning {
|
||||
color: var(--rsp-black)!important;
|
||||
background-color: var(--rsp-yellow);
|
||||
&:after {
|
||||
border-right: 15px solid var(--rsp-yellow);
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-panel.cmplz-toggle-disabled {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
|
||||
/* Disabled option */
|
||||
|
||||
|
||||
input:disabled {
|
||||
cursor:not-allowed;
|
||||
}
|
||||
|
||||
.cmplz-sublabel label {
|
||||
color: var(--rsp-black);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* Placeholders */
|
||||
|
||||
::placeholder {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
::placeholder/* Chrome/Opera/Safari */ {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
|
||||
::-moz-placeholder /* Firefox 19+ */ {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
|
||||
:-ms-input-placeholder /* IE 10+ */ {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
:-moz-placeholder /* Firefox 18- */ {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
|
||||
/* License */
|
||||
|
||||
.cmplz-status-info {
|
||||
display:flex;
|
||||
> div {
|
||||
padding: 10px 10px 10px 0;
|
||||
}
|
||||
.cmplz-license-status-container {
|
||||
.cmplz-license-status {
|
||||
display: block;
|
||||
|
||||
&.cmplz-premium {
|
||||
background-color: var(--rsp-black);
|
||||
}
|
||||
&.cmplz-success {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
&.cmplz-warning {
|
||||
color: var(--rsp-black);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Ending */
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
.cmplz{
|
||||
/*skeleton*/
|
||||
@panelheight : 38px;
|
||||
@panelborder : 1px;
|
||||
@paneloffset : 3*(@panelborder+@panelheight);
|
||||
@rows : 6;
|
||||
.cmplz-skeleton:empty {
|
||||
margin: auto;
|
||||
margin-bottom: 25px;
|
||||
width: 100%;
|
||||
height: (@rows*@panelheight)+(@rows+1)*@panelborder; /* change height to see repeat-y behavior */
|
||||
|
||||
background-image:
|
||||
linear-gradient( 100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.5) 15% ),
|
||||
linear-gradient( #f2f2f2 @panelheight, transparent 0 ),
|
||||
linear-gradient( #f2f2f2 @panelheight, transparent 0 ),
|
||||
linear-gradient( #f2f2f2 @panelheight, transparent 0 ),
|
||||
linear-gradient( #f2f2f2 @panelheight, transparent 0 );
|
||||
|
||||
background-repeat: repeat-y;
|
||||
|
||||
background-size:
|
||||
50px 200px, /* highlight */
|
||||
100% @paneloffset,
|
||||
100% @paneloffset,
|
||||
100% @paneloffset,
|
||||
100% @paneloffset;
|
||||
|
||||
background-position:
|
||||
0 0, /* highlight */
|
||||
@panelborder @panelborder,
|
||||
@panelborder @panelheight+(2*@panelborder),
|
||||
@panelborder (2*@panelheight)+(3*@panelborder),
|
||||
@panelborder (3*@panelheight)+(4*@panelborder);
|
||||
|
||||
background-color:#d6d8db;
|
||||
border-right: @panelborder solid #d6d8db;
|
||||
animation: shine 2.5s infinite;
|
||||
}
|
||||
@keyframes shine {
|
||||
to {
|
||||
background-position:
|
||||
100% 0, /* move highlight to right */
|
||||
@panelborder @panelborder,
|
||||
@panelborder @panelheight+(2*@panelborder),
|
||||
@panelborder (2*@panelheight)+(3*@panelborder),
|
||||
@panelborder (3*@panelheight)+(4*@panelborder);
|
||||
}
|
||||
}
|
||||
|
||||
/*loader*/
|
||||
.cmplz-loader {
|
||||
margin: 0;
|
||||
width: 50px;
|
||||
height: 15px;
|
||||
text-align: center;
|
||||
font-size: 10px;
|
||||
> div {
|
||||
margin:1px;
|
||||
background-color: #333;
|
||||
height: 100%;
|
||||
width: 3px;
|
||||
display: inline-block;
|
||||
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
|
||||
animation: sk-stretchdelay 1.2s infinite ease-in-out;
|
||||
}
|
||||
|
||||
&.cmplz-loader-white >div {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.rect2 {
|
||||
-webkit-animation-delay: -1.1s;
|
||||
animation-delay: -1.1s;
|
||||
}
|
||||
|
||||
.rect3 {
|
||||
-webkit-animation-delay: -1.0s;
|
||||
animation-delay: -1.0s;
|
||||
}
|
||||
|
||||
.rect4 {
|
||||
-webkit-animation-delay: -0.9s;
|
||||
animation-delay: -0.9s;
|
||||
}
|
||||
|
||||
.rect5 {
|
||||
-webkit-animation-delay: -0.8s;
|
||||
animation-delay: -0.8s;
|
||||
}
|
||||
}
|
||||
|
||||
.button-primary .cmplz-loader div {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@-webkit-keyframes sk-stretchdelay {
|
||||
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
|
||||
20% { -webkit-transform: scaleY(1.0) }
|
||||
}
|
||||
|
||||
@keyframes sk-stretchdelay {
|
||||
0%, 40%, 100% {
|
||||
transform: scaleY(0.4);
|
||||
-webkit-transform: scaleY(0.4);
|
||||
} 20% {
|
||||
transform: scaleY(1.0);
|
||||
-webkit-transform: scaleY(1.0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
:root{
|
||||
// Plugin specific variables down here please
|
||||
--rsp-brand-primary: var(--rsp-blue);
|
||||
--rsp-brand-secondary: var(--rsp-yellow);
|
||||
--rsp-brand-primary-faded: var(--rsp-blue-faded);
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
@@ -0,0 +1,83 @@
|
||||
.cmplz-other-plugin-header {
|
||||
display: grid;
|
||||
grid-template-columns: auto 180px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.cmplz-other-plugin-header .cmplz-other-plugin-title {
|
||||
font-weight: bold;
|
||||
font-size: 15px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.cmplz-other-plugin-header img {
|
||||
width: 180px;
|
||||
}
|
||||
.cmplz-other-plugin-content {
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin {
|
||||
display: grid;
|
||||
grid-template-columns: 15px auto 100px;
|
||||
grid-column-gap: 10px;
|
||||
color: #888;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin .plugin-text a {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin .plugin-text a:hover {
|
||||
color: #009fff;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin .plugin-status span {
|
||||
float: right;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-zip .cmplz-bullet {
|
||||
background-color: #2C9838;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-complianz .cmplz-bullet {
|
||||
background-color: #009fff;
|
||||
}
|
||||
.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-rsssl .cmplz-bullet {
|
||||
background-color: #f8be2e;
|
||||
}
|
||||
.cmplz-bullet {
|
||||
height: 13px;
|
||||
width: 13px;
|
||||
border-radius: 50%;
|
||||
background-color: lightgrey;
|
||||
text-decoration: none;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.cmplz-trick a,
|
||||
.cmplz-other-plugin a {
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.cmplz-trick a .cmplz-bullet,
|
||||
.cmplz-other-plugin a .cmplz-bullet {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.cmplz-trick a {
|
||||
color: #333;
|
||||
}
|
||||
.cmplz-other-plugin-container {
|
||||
grid-column: span 2;
|
||||
display: grid;
|
||||
grid-template-columns: 20% auto 335px;
|
||||
grid-column-gap: 5px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.cmplz-other-plugin-container .cmplz-other-plugin-block {
|
||||
border: 1px solid #d0d0cf;
|
||||
padding: 20px;
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.cmplz-field .cmplz-trick .cmplz-bullet {
|
||||
margin-top: 3px;
|
||||
}
|
||||
/*# sourceMappingURL=tips-tricks.css.map */
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["tips-tricks.less"],"names":[],"mappings":"AAYA;EACE,aAAA;EACA,iCAAA;EACA,oBAAA;EACA,gCAAA;EACA,mBAAA;;AALF,0BAME;EACE,iBAAA;EACA,eAAA;EACA,eAAA;;AATJ,0BAWE;EACE,YAAA;;AAGJ;EACE,gCAAA;EACA,mBAAA;;AAFF,2BAGE;EACE,aAAA;EACA,sCAAA;EACA,qBAAA;EACA,WAAA;;AAPJ,2BAGE,oBAME,aAAa;EACX,WAAA;EACA,qBAAA;;AAEA,2BAVJ,oBAME,aAAa,EAIV;EACC,cAAA;;AAdR,2BAGE,oBAeE,eAAe;EACb,YAAA;;AAGF,2BAnBF,oBAmBG,UAAW;EACV,yBAAA;;AAGF,2BAvBF,oBAuBG,gBAAiB;EAChB,yBAAA;;AAGF,2BA3BF,oBA2BG,YAAa;EACZ,yBAAA;;AAKN;EACE,YAAA;EACA,WAAA;EACA,kBAAA;EACA,2BAAA;EACA,qBAAA;EACA,kBAAA;;AAGF,YAAa;AAAG,mBAAoB;EAClC,qBAAA;EACA,aAAA;EACA,mBAAA;EACA,mBAAA;;AAJF,YAAa,EAKX;AALc,mBAAoB,EAKlC;EACE,kBAAA;;AAGJ,YAAa;EACX,WAAA;;AAEF;EACE,mBAAA;EACA,aAAA;EACA,qCAAA;EACA,oBAAA;EACA,kBAAA;;AALF,6BAME;EACE,yBAAA;EACA,aAAA;EACA,gBAAA;EACA,gBAAA;;AAIJ,YAAa,aAAa;EACxB,eAAA","file":"tips-tricks.css"}
|
||||
@@ -0,0 +1,101 @@
|
||||
@brand-primary: #009fff;
|
||||
@color-success: #61ce70;
|
||||
@color-open: #D4F0FD;
|
||||
@color-warning: #d7263d;
|
||||
@color-disabled: #d7d7d7;
|
||||
@light-grey: #eeeeee;
|
||||
@dark-grey: #333;
|
||||
@darker-grey: #888;
|
||||
@color-cmplz: #009fff;
|
||||
@color-zip: #2C9838;
|
||||
@color-rsssl: #f8be2e;
|
||||
|
||||
.cmplz-other-plugin-header {
|
||||
display: grid;
|
||||
grid-template-columns: auto 180px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-bottom: 20px;
|
||||
.cmplz-other-plugin-title {
|
||||
font-weight: bold;
|
||||
font-size: 15px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
img {
|
||||
width:180px;
|
||||
}
|
||||
}
|
||||
.cmplz-other-plugin-content {
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-bottom: 30px;
|
||||
.cmplz-other-plugin {
|
||||
display: grid;
|
||||
grid-template-columns: 15px auto 100px;
|
||||
grid-column-gap: 10px;
|
||||
color: @darker-grey;
|
||||
|
||||
.plugin-text a {
|
||||
color: @dark-grey;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: @brand-primary;
|
||||
}
|
||||
}
|
||||
|
||||
.plugin-status span {
|
||||
float:right;
|
||||
}
|
||||
|
||||
&.cmplz-zip .cmplz-bullet {
|
||||
background-color: @color-zip;
|
||||
}
|
||||
|
||||
&.cmplz-complianz .cmplz-bullet {
|
||||
background-color: @color-cmplz;
|
||||
}
|
||||
|
||||
&.cmplz-rsssl .cmplz-bullet {
|
||||
background-color: @color-rsssl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-bullet {
|
||||
height: 13px;
|
||||
width: 13px;
|
||||
border-radius: 50%;
|
||||
background-color: lightgrey;
|
||||
text-decoration: none;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.cmplz-trick a, .cmplz-other-plugin a {
|
||||
text-decoration: none;
|
||||
display:flex;
|
||||
flex-direction: row;
|
||||
margin-bottom:20px;
|
||||
.cmplz-bullet {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
.cmplz-trick a {
|
||||
color:@dark-grey;
|
||||
}
|
||||
.cmplz-other-plugin-container {
|
||||
grid-column: span 2;
|
||||
display: grid;
|
||||
grid-template-columns: 20% auto 335px;
|
||||
grid-column-gap: 5px;
|
||||
margin-right: 10px;
|
||||
.cmplz-other-plugin-block {
|
||||
border: 1px solid #d0d0cf;
|
||||
padding: 20px;
|
||||
margin-top: 10px;
|
||||
margin-left:5px;
|
||||
}
|
||||
}
|
||||
|
||||
.cmplz-field .cmplz-trick .cmplz-bullet {
|
||||
margin-top:3px;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
.cmplz-other-plugin-header{display:grid;grid-template-columns:auto 180px;padding-bottom:20px;border-bottom:1px solid #dedede;margin-bottom:20px}.cmplz-other-plugin-header .cmplz-other-plugin-title{font-weight:bold;font-size:15px;margin-top:5px}.cmplz-other-plugin-header img{width:180px}.cmplz-other-plugin-content{border-bottom:1px solid #dedede;margin-bottom:30px}.cmplz-other-plugin-content .cmplz-other-plugin{display:grid;grid-template-columns:15px auto 100px;grid-column-gap:10px;color:#888}.cmplz-other-plugin-content .cmplz-other-plugin .plugin-text a{color:#333;text-decoration:none}.cmplz-other-plugin-content .cmplz-other-plugin .plugin-text a:hover{color:#009fff}.cmplz-other-plugin-content .cmplz-other-plugin .plugin-status span{float:right}.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-zip .cmplz-bullet{background-color:#2c9838}.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-complianz .cmplz-bullet{background-color:#009fff}.cmplz-other-plugin-content .cmplz-other-plugin.cmplz-rsssl .cmplz-bullet{background-color:#f8be2e}.cmplz-bullet{height:13px;width:13px;border-radius:50%;background-color:lightgrey;text-decoration:none;margin-right:10px}.cmplz-trick a,.cmplz-other-plugin a{text-decoration:none;display:flex;flex-direction:row;margin-bottom:20px}.cmplz-trick a .cmplz-bullet,.cmplz-other-plugin a .cmplz-bullet{margin-right:10px}.cmplz-trick a{color:#333}.cmplz-other-plugin-container{grid-column:span 2;display:grid;grid-template-columns:20% auto 335px;grid-column-gap:5px;margin-right:10px}.cmplz-other-plugin-container .cmplz-other-plugin-block{border:1px solid #d0d0cf;padding:20px;margin-top:10px;margin-left:5px}.cmplz-field .cmplz-trick .cmplz-bullet{margin-top:3px}
|
||||
@@ -0,0 +1,157 @@
|
||||
// Margins, Paddings and Border Radius
|
||||
@small-margin: 10px;
|
||||
@default-margin: 15px;
|
||||
@big-margin: 30px;
|
||||
@grid-margin:10px;
|
||||
|
||||
@default-padding: 20px;
|
||||
@border-radius: 25px;
|
||||
|
||||
// RSP Brand Colors
|
||||
@rsp-black: #333;
|
||||
@rsp-yellow: #f8be2e;
|
||||
@rsp-blue: #009fff;
|
||||
@rsp-green: #297A31;
|
||||
@rsp-red: #D7263D;
|
||||
@rsp-pink: #E366A1;
|
||||
@rsp-orange: #f39c12;
|
||||
@box_shadow_color: #dedede;
|
||||
@light-text-color: #3c3c3c;
|
||||
|
||||
// Colors
|
||||
@brand-primary: @rsp-blue;
|
||||
@brand-secondary: @color-success;
|
||||
|
||||
// Notification colors
|
||||
@color-success: #61ce70;
|
||||
@color-disabled: #d7d7d7;
|
||||
@color-warning: @rsp-red;
|
||||
@color-open: @rsp-yellow; //#f8be2e; //#FBC43D
|
||||
|
||||
//Input colors
|
||||
@input-background-color: var(--rsp-input-background-color);
|
||||
@input-border-color: var(--rsp-input-border-color);
|
||||
|
||||
@grey: #c6c6c6;
|
||||
@grey-lighter: #fafafa;
|
||||
@grey-light: #dadada;
|
||||
@grey-dark: #888;
|
||||
@grey-darker: #696969;
|
||||
|
||||
// Grid settings
|
||||
@red-gap: 15px;
|
||||
@green-gap: 20px;
|
||||
@intro-gap: 20px 20px 0 20px;
|
||||
|
||||
@gridblock-height: 500px;
|
||||
@gridblock-width: 800px;
|
||||
@gridblock-width-small: 400px;
|
||||
|
||||
// Font sizes
|
||||
@default-font-size: 14px;
|
||||
@gridblock_height: 515px;
|
||||
@gridblock_width: 800px;
|
||||
@gridblock_width_small:400px;
|
||||
@gridblock_height_big: calc(auto + 20px);
|
||||
|
||||
// Break points
|
||||
@rsp-break-xs: 576px;
|
||||
@rsp-break-s: 768px;
|
||||
@rsp-break-m: 992px;
|
||||
@rsp-break-l: 1279px;
|
||||
@rsp-break-xl: 1440px; // common 13 inch macbook pro width is 1425px
|
||||
@rsp-break-xxl: 1599px;
|
||||
|
||||
:root {
|
||||
|
||||
// Margins, Paddings and Border Radius
|
||||
--rsp-spacing-xxs: 5px;
|
||||
--rsp-spacing-xs: 10px;
|
||||
--rsp-spacing-s: 15px;
|
||||
--rsp-spacing-m: 20px;
|
||||
--rsp-spacing-l: 30px;
|
||||
--rsp-spacing-xl: 40px;
|
||||
|
||||
// Grid settings
|
||||
--rsp-grid-margin: var(--rsp-spacing-xs);
|
||||
--rsp-grid-gap: var(--rsp-spacing-m);
|
||||
|
||||
// Borders and stuff
|
||||
--rsp-border-radius: 12px;
|
||||
--rsp-border-radius-s: 8px;
|
||||
--rsp-border: 1px solid var(--rsp-border-color);
|
||||
--rsp-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
|
||||
--rsp-border-color: #dfdfdf;
|
||||
|
||||
// RSP Brand Colors
|
||||
--rsp-black: #333;
|
||||
--rsp-white: #fff;
|
||||
--rsp-yellow: #f4bf3e;
|
||||
--rsp-blue: #009fff;
|
||||
--rsp-dark-blue: #1E73BE;
|
||||
--rsp-green: #2e8a37;
|
||||
--rsp-red: #D7263D;
|
||||
--rsp-pink: #E35899;
|
||||
--rsp-orange: #f39c12;
|
||||
--rsp-wp-blue: #007cba;
|
||||
|
||||
--rsp-yellow-faded: #f2e6c9;
|
||||
--rsp-blue-faded: #ecf8fe;
|
||||
--rsp-dark-blue-faded: #ebf2f9;
|
||||
--rsp-green-faded: #ecf4ed;
|
||||
--rsp-red-faded: #fbebed;
|
||||
--rsp-pink-faded: #fceff5;
|
||||
--rsp-orange-faded: #fef5ea;
|
||||
--rsp-wp-blue-faded: #c6e0ef;
|
||||
|
||||
--rsp-background-block-color: var(--rsp-white);
|
||||
--rsp-background-color: #f0f0f1; //#f0f0f1 is the default wordpress bg color
|
||||
|
||||
//Input colors
|
||||
--rsp-input-background-color: #fff;
|
||||
--rsp-input-text-color: var(--rsp-text-color);
|
||||
--rsp-input-border-color: var(--rsp-grey-400);
|
||||
|
||||
--rsp-text-color: rgba(26, 26, 26, 0.9);
|
||||
--rsp-text-color-invert: rgba(255, 255, 255, 0.9);
|
||||
--rsp-text-color-white: rgba(255, 255, 255, 0.9);
|
||||
--rsp-text-color-light: rgba(69, 69, 82, 0.9);
|
||||
|
||||
--rsp-grey-100: #fafafa;
|
||||
--rsp-grey-200: #f9f9f9;
|
||||
--rsp-grey-300: #ededed;
|
||||
--rsp-grey-400: #c6c6c6;
|
||||
--rsp-grey-500: #737373;
|
||||
--rsp-grey-600: #696969;
|
||||
|
||||
// Notification colors
|
||||
--rsp-color-success: var(--rsp-green);
|
||||
--rsp-color-error: var(--rsp-red);
|
||||
--rsp-color-warning: var(--rsp-red);
|
||||
--rsp-color-open: var(--rsp-yellow);
|
||||
--rsp-color-disabled: var(--rsp-grey-300);
|
||||
|
||||
// Font sizes
|
||||
// If browser font-size is 16px:
|
||||
--rsp-fs-100: 0.6875rem; // 11px
|
||||
--rsp-fs-200: 0.75rem; // 12px
|
||||
--rsp-fs-300: 0.8125rem; // 13px
|
||||
--rsp-fs-400: 0.875rem; // 14px
|
||||
--rsp-fs-500: 1rem; // 16px
|
||||
--rsp-fs-600: 1.125rem; // 18px
|
||||
--rsp-fs-700: 1.25rem; // 20px
|
||||
--rsp-fs-800: 1.5rem; // 24px
|
||||
--rsp-fs-900: 2.5rem; // 40px
|
||||
|
||||
// Plugin specific variables down here please
|
||||
--rsp-brand-primary: var(--rsp-blue);
|
||||
--rsp-brand-secondary: var(--rsp-yellow);
|
||||
--rsp-brand-primary-faded: var(--rsp-blue-faded);
|
||||
}
|
||||
|
||||
.cmplz-block {
|
||||
background: var(--rsp-background-block-color);
|
||||
box-shadow: var(--rsp-box-shadow);
|
||||
border-radius: var(--rsp-border-radius);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user