Initial commit: Atomaste website
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"require": {
|
||||
"psr/log": "1.1.4",
|
||||
"mpdf/mpdf": "v8.1.3"
|
||||
}
|
||||
}
|
||||
@@ -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';
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,156 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Get icon from predefined list
|
||||
* @string $icon_name
|
||||
* @string $status
|
||||
* @string $tooltip
|
||||
* @int $size
|
||||
* @string $copy_id
|
||||
* @string $copy_text
|
||||
* @return string
|
||||
*/
|
||||
function cmplz_tc_icon( $icon_name, $status = 'default', $tooltip = '', $size = 15, $copy_id = false, $copy_text = false ) {
|
||||
// possible statuses: default, success, warning, error, disabled
|
||||
$status_and_color = array(
|
||||
'default' => '',
|
||||
'success' => 'var(--rsp-green)',
|
||||
'warning' => 'var(--rsp-yellow)',
|
||||
'error' => 'var(--rsp-red)',
|
||||
'disabled' => 'var(--rsp-grey-400)',
|
||||
);
|
||||
$color = $status_and_color[ $status ];
|
||||
$icons = array(
|
||||
'bullet' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256z"/>
|
||||
</svg>',
|
||||
'circle' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"/>
|
||||
</svg>',
|
||||
'check' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z"/>
|
||||
</svg>',
|
||||
'warning' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M506.3 417l-213.3-364c-16.33-28-57.54-28-73.98 0l-213.2 364C-10.59 444.9 9.849 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM232 168c0-13.25 10.75-24 24-24S280 154.8 280 168v128c0 13.25-10.75 24-23.1 24S232 309.3 232 296V168zM256 416c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 401.9 273.4 416 256 416z"/>
|
||||
</svg>',
|
||||
'error' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM232 152C232 138.8 242.8 128 256 128s24 10.75 24 24v128c0 13.25-10.75 24-24 24S232 293.3 232 280V152zM256 400c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 385.9 273.4 400 256 400z"/>
|
||||
</svg>',
|
||||
'times' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z"/>
|
||||
</svg>',
|
||||
'circle-check' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM371.8 211.8C382.7 200.9 382.7 183.1 371.8 172.2C360.9 161.3 343.1 161.3 332.2 172.2L224 280.4L179.8 236.2C168.9 225.3 151.1 225.3 140.2 236.2C129.3 247.1 129.3 264.9 140.2 275.8L204.2 339.8C215.1 350.7 232.9 350.7 243.8 339.8L371.8 211.8z"/>
|
||||
</svg>',
|
||||
'circle-times' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM175 208.1L222.1 255.1L175 303C165.7 312.4 165.7 327.6 175 336.1C184.4 346.3 199.6 346.3 208.1 336.1L255.1 289.9L303 336.1C312.4 346.3 327.6 346.3 336.1 336.1C346.3 327.6 346.3 312.4 336.1 303L289.9 255.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175C327.6 165.7 312.4 165.7 303 175L255.1 222.1L208.1 175C199.6 165.7 184.4 165.7 175 175C165.7 184.4 165.7 199.6 175 208.1V208.1z"/>
|
||||
</svg>',
|
||||
'chevron-up' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M416 352c-8.188 0-16.38-3.125-22.62-9.375L224 173.3l-169.4 169.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l192-192c12.5-12.5 32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25C432.4 348.9 424.2 352 416 352z"/>
|
||||
</svg>',
|
||||
'chevron-down' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/>
|
||||
</svg>',
|
||||
'chevron-right' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z"/>
|
||||
</svg>',
|
||||
'chevron-left' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M224 480c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25l192-192c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L77.25 256l169.4 169.4c12.5 12.5 12.5 32.75 0 45.25C240.4 476.9 232.2 480 224 480z"/>
|
||||
</svg>',
|
||||
'plus' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z"/>
|
||||
</svg>',
|
||||
'minus' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M400 288h-352c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h352c17.69 0 32 14.3 32 31.99S417.7 288 400 288z"/>
|
||||
</svg>',
|
||||
'sync' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M483.515 28.485L431.35 80.65C386.475 35.767 324.485 8 256 8 123.228 8 14.824 112.338 8.31 243.493 7.971 250.311 13.475 256 20.301 256h28.045c6.353 0 11.613-4.952 11.973-11.294C66.161 141.649 151.453 60 256 60c54.163 0 103.157 21.923 138.614 57.386l-54.128 54.129c-7.56 7.56-2.206 20.485 8.485 20.485H492c6.627 0 12-5.373 12-12V36.971c0-10.691-12.926-16.045-20.485-8.486zM491.699 256h-28.045c-6.353 0-11.613 4.952-11.973 11.294C445.839 370.351 360.547 452 256 452c-54.163 0-103.157-21.923-138.614-57.386l54.128-54.129c7.56-7.56 2.206-20.485-8.485-20.485H20c-6.627 0-12 5.373-12 12v143.029c0 10.691 12.926 16.045 20.485 8.485L80.65 431.35C125.525 476.233 187.516 504 256 504c132.773 0 241.176-104.338 247.69-235.493.339-6.818-5.165-12.507-11.991-12.507z"></path>
|
||||
</svg>',
|
||||
'sync-error' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M256 79.1C178.5 79.1 112.7 130.1 89.2 199.7C84.96 212.2 71.34 218.1 58.79 214.7C46.23 210.5 39.48 196.9 43.72 184.3C73.6 95.8 157.3 32 256 32C337.5 32 408.8 75.53 448 140.6V104C448 90.75 458.7 80 472 80C485.3 80 496 90.75 496 104V200C496 213.3 485.3 224 472 224H376C362.7 224 352 213.3 352 200C352 186.7 362.7 176 376 176H412.8C383.7 118.1 324.4 80 256 80V79.1zM280 263.1C280 277.3 269.3 287.1 256 287.1C242.7 287.1 232 277.3 232 263.1V151.1C232 138.7 242.7 127.1 256 127.1C269.3 127.1 280 138.7 280 151.1V263.1zM224 352C224 334.3 238.3 319.1 256 319.1C273.7 319.1 288 334.3 288 352C288 369.7 273.7 384 256 384C238.3 384 224 369.7 224 352zM40 432C26.75 432 16 421.3 16 408V311.1C16 298.7 26.75 287.1 40 287.1H136C149.3 287.1 160 298.7 160 311.1C160 325.3 149.3 336 136 336H99.19C128.3 393 187.6 432 256 432C333.5 432 399.3 381.9 422.8 312.3C427 299.8 440.7 293 453.2 297.3C465.8 301.5 472.5 315.1 468.3 327.7C438.4 416.2 354.7 480 256 480C174.5 480 103.2 436.5 64 371.4V408C64 421.3 53.25 432 40 432V432z"/>
|
||||
</svg>',
|
||||
'shortcode' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M128 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h96C145.7 480 160 465.7 160 448S145.7 416 128 416H64V96h64C145.7 96 160 81.67 160 64S145.7 32 128 32zM416 32h-96C302.3 32 288 46.33 288 63.1S302.3 96 319.1 96H384v320h-64C302.3 416 288 430.3 288 447.1S302.3 480 319.1 480H416c17.6 0 32-14.4 32-32V64C448 46.4 433.6 32 416 32z"/>
|
||||
</svg>',
|
||||
'file' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M0 64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM336 448V160H256C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V448C48 456.8 55.16 464 64 464H320C328.8 464 336 456.8 336 448z"/>
|
||||
</svg>',
|
||||
'file-disabled' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"
|
||||
height="' . $size . '">
|
||||
<path fill="'.$color.'" d="M639.1 487.1c0-7.119-3.153-14.16-9.191-18.89l-118.8-93.12l.0013-237.3c0-16.97-6.742-33.26-18.74-45.26l-74.63-74.64C406.6 6.742 390.3 0 373.4 0H192C156.7 0 128 28.65 128 64L128 75.01L38.82 5.11C34.41 1.672 29.19 0 24.04 0C10.19 0-.0002 11.3-.0002 23.1c0 7.12 3.153 14.16 9.192 18.89l591.1 463.1C605.6 510.3 610.8 512 615.1 512C629.8 512 639.1 500.6 639.1 487.1zM464 338.4l-287.1-225.7l-.002-48.51c0-8.836 7.164-16 15.1-16h160l-.0065 79.87c0 17.67 14.33 31.1 31.1 31.1L464 159.1V338.4zM448 463.1H192c-8.834 0-15.1-7.164-15.1-16L176 234.6L128 197L128 447.1c0 35.34 28.65 64 63.1 64H448c20.4 0 38.45-9.851 50.19-24.84l-37.72-29.56C457.5 461.4 453.2 463.1 448 463.1z"/>
|
||||
</svg>',
|
||||
'file-download' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M216 342.1V240c0-13.25-10.75-24-24-24S168 226.8 168 240v102.1L128.1 303C124.3 298.3 118.2 296 112 296S99.72 298.3 95.03 303c-9.375 9.375-9.375 24.56 0 33.94l80 80c9.375 9.375 24.56 9.375 33.94 0l80-80c9.375-9.375 9.375-24.56 0-33.94s-24.56-9.375-33.94 0L216 342.1zM365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448z"/>
|
||||
</svg>',
|
||||
'calendar' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" <path d="M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z"/>
|
||||
</svg>',
|
||||
'calendar-error' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M151.1 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V192H47.1V448C47.1 456.8 55.16 464 63.1 464H284.5C296.7 482.8 312.5 499.1 330.8 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24L151.1 64zM576 368C576 447.5 511.5 512 432 512C352.5 512 287.1 447.5 287.1 368C287.1 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416zM447.1 288C447.1 279.2 440.8 272 431.1 272C423.2 272 415.1 279.2 415.1 288V368C415.1 376.8 423.2 384 431.1 384C440.8 384 447.1 376.8 447.1 368V288z"/>
|
||||
</svg>',
|
||||
'help' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 400c-18 0-32-14-32-32s13.1-32 32-32c17.1 0 32 14 32 32S273.1 400 256 400zM325.1 258L280 286V288c0 13-11 24-24 24S232 301 232 288V272c0-8 4-16 12-21l57-34C308 213 312 206 312 198C312 186 301.1 176 289.1 176h-51.1C225.1 176 216 186 216 198c0 13-11 24-24 24s-24-11-24-24C168 159 199 128 237.1 128h51.1C329 128 360 159 360 198C360 222 347 245 325.1 258z"/>
|
||||
</svg>',
|
||||
'copy' => '<svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
||||
height="' . $size . '" >
|
||||
<path fill="'.$color.'" d="M502.6 70.63l-61.25-61.25C435.4 3.371 427.2 0 418.7 0H255.1c-35.35 0-64 28.66-64 64l.0195 256C192 355.4 220.7 384 256 384h192c35.2 0 64-28.8 64-64V93.25C512 84.77 508.6 76.63 502.6 70.63zM464 320c0 8.836-7.164 16-16 16H255.1c-8.838 0-16-7.164-16-16L239.1 64.13c0-8.836 7.164-16 16-16h128L384 96c0 17.67 14.33 32 32 32h47.1V320zM272 448c0 8.836-7.164 16-16 16H63.1c-8.838 0-16-7.164-16-16L47.98 192.1c0-8.836 7.164-16 16-16H160V128H63.99c-35.35 0-64 28.65-64 64l.0098 256C.002 483.3 28.66 512 64 512h192c35.2 0 64-28.8 64-64v-32h-47.1L272 448z"/>
|
||||
</svg>',
|
||||
);
|
||||
|
||||
$icon_html = '<div class="cmplz-icon cmplz-' . esc_attr( $status ) . ' cmplz-icon-' . esc_attr($icon_name) . '" >
|
||||
' . $icons[$icon_name] . '
|
||||
</div>';
|
||||
|
||||
if ( !empty($tooltip) ) {
|
||||
// get help tip
|
||||
$icon_html = cmplz_tc_help_tip( $tooltip, $icon_html );
|
||||
}
|
||||
if ( !empty($copy_id) && !empty($copy_text) ){
|
||||
$icon_html = '<span class="cmplz-copy-shortcode">
|
||||
<span class="cmplz-copy-shortcode-text" id="' . $copy_id . '">' . $copy_text . '</span>
|
||||
' . $icon_html . '
|
||||
</span>';
|
||||
}
|
||||
|
||||
return $icon_html;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the html output for a help tip
|
||||
*
|
||||
* @param $str
|
||||
* @param $content
|
||||
*/
|
||||
|
||||
function cmplz_tc_help_tip( $str, $content = false ) {
|
||||
$content = !$content ? cmplz_tc_icon('help') : $content;
|
||||
ob_start();
|
||||
?>
|
||||
<span class="cmplz-icon-tooltip" cmplz-tooltip="<?php echo esc_attr($str) ?>">
|
||||
<?php echo $content ?>
|
||||
</span>
|
||||
<?php
|
||||
return ob_get_clean();
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-198c2dc3-7c1a-4465-a4e3-f3a903a50160" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1637.7 329.2"><defs><style>.uuid-0af3e7fc-7a94-4de7-8242-2e727a045522{fill:#009fff;}</style></defs><path class="uuid-0af3e7fc-7a94-4de7-8242-2e727a045522" d="m803.4,73.7c-21.4,0-43.5,9-53.4,23v-18.1h-63.7v250.6h63.7v-91.6c9.9,14,32,23,53.4,23,49.7,0,83-45.2,83-93.7s-33.3-93.2-83-93.2Zm-16.8,134.7c-21.8,0-36.6-16.8-36.6-40.7s14.4-41.9,36.6-41.9c21,0,36.2,17.7,36.2,41.9s-15.3,40.7-36.2,40.7Zm-181.4-134.7c-29.6,0-47.2,13.1-59.6,29.2-10.3-17.7-26.3-29.2-54.2-29.2-20.9,0-37,6.2-48.9,23.4v-18.5h-63.7v177.1h63.7v-93.2c0-20.5,7-35.3,27.1-35.3s23,13.6,23,37.4v91.2h63.7v-93.2c0-20.5,7-35.3,27.1-35.3s23,13.6,23,37.4v91.2h63.7v-106.6c0-42.4-17.3-75.6-64.9-75.6Zm-336.5,0c-50.9,0-95.3,40.7-95.3,93.2s43.5,93.7,95.7,93.7,95.3-41.5,95.3-94.1-43.9-92.8-95.7-92.8Zm.4,136.4c-22.2,0-33.7-22.6-33.7-43.1s11.5-42.7,33.3-42.7c23,0,33.7,22.6,33.7,42.3s-11.1,43.5-33.3,43.5Zm-171.7.4c-23,0-38.2-21.4-38.2-42.7,0-25.1,15.6-43.5,38.2-43.5,13.1,0,25.1,5.3,35.3,16.4l36.6-34.1c-18.9-22.6-41.9-32.9-71.9-32.9C40.7,73.7,0,116.4,0,167.8s41.5,92.8,97.4,92.8c34.5,0,56.3-11.5,77.6-38.2l-42.7-30c-9.8,11.5-18.5,18.1-34.9,18.1ZM1378.5,73.7c-21,0-39.4,7.8-50.9,23.4v-18.5h-63.7v177.1h63.7v-93.2c0-21.8,10.7-35.3,29.2-35.3s25.1,13.6,25.1,37.4v91.2h63.7v-106.5c-.1-42.4-19.4-75.6-67.1-75.6Zm-218.7,0c-32,0-61.6,4.9-85,18.1l19.7,38.2c18.5-9.5,38.6-15.2,63.3-15.2,18.1,0,26.3,4.1,26.3,16.4v6.2c-57.5,2.5-125.3,13.1-125.3,68.2,0,33.7,30,55,64.1,55,30.8,0,41.9-4.9,61.2-18.5v13.6h63.7v-112.6c-.1-50.5-29.3-69.4-88-69.4Zm24.2,129c-10.3,9-21,12.7-37,12.7-10.3,0-20.5-6.2-20.5-16.4,0-19.7,30.4-25.9,57.5-25.9v29.6Zm-283.2,53h63.7V0h-63.7v255.7Zm651.6-48.7l85.3-128.4h-173.8v49.3h64.9c5.8,0,10.7-.4,10.7-.4,0,0-4.1,4.5-7.4,9.4l-80.1,118.7h175.4v-49.3h-63c-3.6.1-8.9.4-12,.7Zm-570.3-127.6v176.2h63.7V79.2c-10,3.5-20.7,5.5-31.6,5.5s-22-1.9-32.1-5.3Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-ff6164fe-b4af-447f-aa55-1c3b9716b94f" xmlns="http://www.w3.org/2000/svg" width="18px" viewBox="0 0 747.03 633.3"><path d="m561.98,185.5c-2.4-2.4-6.4-2.4-8.9,0l-203.3,203.3,8.9,8.9,203.3-203.3c2.4-2.5,2.4-6.5,0-8.9h0Zm-185.9,132.5c-2.4-2.4-6.4-2.4-8.9,0l-44.1,44.1,8.9,8.9,44.1-44.1c2.4-2.4,2.4-6.4,0-8.9ZM628.17,50.2c19.2,0,37.3,7.8,50.5,22,25.5,27.4,23.1,70.7-3.4,97.1l-120,120c-2.4,2.4-2.4,6.4,0,8.9,2.4,2.4,6.4,2.4,8.9,0l119.8-119.8c31.7-31.7,33.4-85.2,1.7-116.8-15.9-15.9-36.7-23.8-57.5-23.8s-41.7,7.9-57.6,23.8l-274,274,8.9,8.9L579.48,70.5c13-13.1,30.3-20.3,48.7-20.3h-.01Zm-234.2,143.6c-2.4-2.4-6.4-2.4-8.9,0l-115.1,115.2,8.9,8.9,115.2-115.2c2.4-2.4,2.4-6.4-.1-8.9h0Zm30.6-21.7l128.3-128.3c20.1-20.1,46.8-31.2,75.3-31.2,21.6,0,42.1,6.5,59.5,18.3,2.5,1.7,5.9,1.5,8-.7,2.8-2.8,2.3-7.5-1-9.7-20-13.6-43.3-20.5-66.5-20.5-30.4,0-60.9,11.6-84.1,34.8l-128.4,128.5c-2.4,2.4-2.4,6.4,0,8.9,2.5,2.4,6.5,2.4,8.9-.1h0Zm109,147.8c-2.4-2.4-6.4-2.4-8.9,0l-95.4,95.4c-2.4,2.4-2.4,6.4,0,8.9h0c2.4,2.4,6.4,2.4,8.8,0l95.4-95.4c2.5-2.5,2.5-6.4.1-8.9h0Zm143.5-99.3l-247.7,247.8,8.9,8.8,247.8-247.8c2.4-2.4,2.4-6.4,0-8.9-2.6-2.3-6.5-2.3-9,.1Zm50-167.4c-2.2-3.3-6.9-3.9-9.7-1.1-2.1,2.1-2.4,5.5-.7,8,11.6,17.3,17.9,37.6,17.9,59,0,26.4-9.5,51.3-27,70.8-2.3,2.5-2.3,6.3.1,8.7,2.5,2.5,6.7,2.5,9-.1,36.7-40.8,40.1-100.8,10.4-145.3h0Zm-134.6,110.6l38.5-38.5c2.4-2.4,2.4-6.4,0-8.9-2.4-2.4-6.4-2.4-8.9,0l-38.5,38.5c-2.4,2.4-2.4,6.4,0,8.8,2.5,2.5,6.5,2.5,8.9.1h0Zm65.8-76.5c-8.5-8-19.3-12.1-30.2-12.1s-22.4,4.3-31,12.8l-199.3,199.5c-2.4,2.4-2.4,6.4,0,8.9,2.4,2.4,6.4,2.4,8.9,0l198.4-198.6c5.1-5.1,11.7-8.9,18.9-9.8,9.8-1.2,19.3,2,26.2,8.9,5.9,5.9,9.2,13.8,9.2,22.1s-3.3,16.2-9.2,22.1l-274,274,8.9,8.8,272.7-272.7c17.5-17.3,18.4-46.8.5-63.9h0Z" style="fill:#fff;"/><g><rect x="323.98" y="245.95" width="120.58" height="234.08" transform="translate(-144.12 378.04) rotate(-45)" style="fill:#f0f0f1;"/><path d="m444.28,470.9l-191.6-191.6h0l-53-53c-22.9-22.8-52.8-34.3-82.7-34.3s-59.9,11.4-82.7,34.3c-45.7,45.7-45.7,119.8,0,165.4l147,147h0l66.6,66.6c2.4,2.4,6.3,2.4,8.7,0,0,0,0-.1.1-.1s.1,0,.2-.1l14.9-14.9,1.3,36.6c0,.9.2,1.7.6,2.5.3.8.7,1.6,1.4,2.2,2.4,2.4,6.3,2.4,8.7,0l.3-.3c.1-.1.2-.2.3-.3l158.4-158.4h0l1.5-1.6Z" style="fill:#f0f0f1;"/><path d="m460.45,452.32l191.6-191.6h0l53-53c22.8-22.9,34.3-52.8,34.3-82.7s-11.4-59.9-34.3-82.7c-45.7-45.7-119.8-45.7-165.4,0l-147,147h0l-66.6,66.6c-2.4,2.4-2.4,6.3,0,8.7,0,0,.1,0,.1.1s0,.1.1.2l14.9,14.9-36.6,1.3c-.9,0-1.7.2-2.5.6-.8.3-1.6.7-2.2,1.4-2.4,2.4-2.4,6.3,0,8.7l.3.3c.1.1.2.2.3.3l158.4,158.4h0l1.6,1.5Z" style="fill:#f0f0f1;"/></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="1024.000000pt" height="172.000000pt" viewBox="0 0 1024.000000 172.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
|
||||
<g transform="translate(0.000000,172.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M531 1323 c-5 -10 -23 -62 -40 -116 -31 -97 -39 -173 -22 -205 6 -12
|
||||
3 -37 -10 -76 -31 -90 -9 -166 63 -219 40 -30 122 -25 232 12 116 40 163 41
|
||||
199 3 56 -58 53 -138 -9 -210 -42 -50 -91 -73 -157 -75 -51 -2 -52 -3 -55 -35
|
||||
l-3 -32 55 0 c113 0 219 68 261 167 26 60 22 144 -9 197 -56 96 -133 108 -317
|
||||
51 -111 -35 -112 -35 -148 -18 -47 23 -67 64 -55 112 7 28 14 35 29 32 90 -16
|
||||
127 -12 240 25 63 21 115 42 115 48 0 6 -16 27 -36 47 l-36 37 38 35 c33 30
|
||||
37 39 28 54 -18 30 -44 27 -80 -8 l-34 -33 -50 49 c-28 27 -50 54 -50 59 0 6
|
||||
14 25 31 42 55 57 12 100 -45 45 -17 -17 -37 -31 -42 -31 -6 0 -23 14 -39 30
|
||||
-33 35 -41 36 -54 13z m154 -204 c96 -96 99 -101 80 -115 -21 -15 -108 -44
|
||||
-134 -44 -29 0 -81 40 -98 75 -14 30 -15 40 -4 77 19 63 39 108 48 108 5 0 53
|
||||
-45 108 -101z"/>
|
||||
<path d="M2770 983 c0 -153 5 -284 10 -305 17 -58 50 -78 131 -78 l69 0 0 35
|
||||
0 35 -50 0 c-38 0 -52 4 -60 19 -6 12 -10 123 -10 290 l0 271 -45 0 -45 0 0
|
||||
-267z"/>
|
||||
<path d="M3030 988 c0 -145 5 -281 10 -303 14 -63 48 -85 131 -85 l69 0 0 35
|
||||
c0 35 0 35 -44 35 -77 0 -76 -5 -76 306 l0 274 -45 0 -45 0 0 -262z"/>
|
||||
<path d="M5830 981 c0 -148 3 -282 6 -300 4 -17 18 -42 32 -56 22 -22 33 -25
|
||||
98 -25 l74 0 0 35 0 35 -48 0 c-26 0 -53 5 -60 12 -9 9 -12 87 -12 290 l0 278
|
||||
-45 0 -45 0 0 -269z"/>
|
||||
<path d="M7300 983 c0 -153 5 -284 10 -305 17 -58 50 -78 131 -78 l69 0 0 35
|
||||
0 35 -50 0 c-38 0 -52 4 -60 19 -6 12 -10 123 -10 290 l0 271 -45 0 -45 0 0
|
||||
-267z"/>
|
||||
<path d="M4350 1185 l0 -45 40 0 40 0 0 45 0 45 -40 0 -40 0 0 -45z"/>
|
||||
<path d="M8560 1185 l0 -45 40 0 40 0 0 45 0 45 -40 0 -40 0 0 -45z"/>
|
||||
<path d="M1684 1061 c-23 -10 -45 -24 -48 -30 -12 -19 -26 -12 -26 14 0 22 -4
|
||||
25 -35 25 l-35 0 0 -235 0 -235 40 0 40 0 0 142 c0 123 3 147 21 184 16 34 29
|
||||
46 62 58 23 9 51 15 62 13 16 -2 21 5 23 32 5 54 -31 65 -104 32z"/>
|
||||
<path d="M1940 1058 c-26 -14 -57 -41 -74 -66 -27 -38 -31 -52 -34 -137 -4
|
||||
-87 -2 -99 23 -150 39 -80 85 -105 196 -105 111 0 155 20 152 68 0 19 -3 35
|
||||
-5 37 -2 2 -28 -5 -58 -15 -30 -11 -71 -19 -90 -20 -66 0 -130 61 -130 125 l0
|
||||
25 150 0 150 0 0 58 c-1 91 -44 165 -113 191 -47 18 -119 13 -167 -11z m163
|
||||
-88 c15 -17 27 -41 27 -55 l0 -25 -105 0 c-117 0 -121 3 -82 61 45 66 109 74
|
||||
160 19z"/>
|
||||
<path d="M2375 1064 c-53 -20 -57 -25 -43 -62 9 -23 17 -31 28 -26 44 19 119
|
||||
34 146 29 40 -7 54 -24 61 -73 l5 -39 -67 -8 c-139 -14 -196 -46 -215 -117
|
||||
-15 -52 2 -110 41 -142 27 -23 40 -26 102 -26 54 0 80 5 105 20 40 25 38 25
|
||||
45 -1 4 -16 12 -20 39 -17 l33 3 0 190 c-1 214 -7 239 -69 269 -43 20 -155 20
|
||||
-211 0z m195 -276 c-1 -18 -6 -43 -14 -56 -32 -58 -126 -82 -166 -42 -57 57
|
||||
17 127 138 129 41 1 42 0 42 -31z"/>
|
||||
<path d="M3988 1059 c-105 -55 -85 -199 32 -234 63 -18 140 -59 145 -76 22
|
||||
-68 -70 -100 -177 -62 -26 9 -49 15 -52 12 -2 -2 -7 -18 -11 -36 -6 -30 -4
|
||||
-33 32 -48 51 -22 180 -22 221 -1 51 27 72 62 72 123 0 49 -4 59 -32 87 -21
|
||||
20 -58 41 -98 55 -83 27 -110 46 -110 75 0 49 69 68 151 42 28 -10 52 -16 53
|
||||
-14 12 20 25 61 21 68 -8 14 -92 30 -152 30 -38 -1 -71 -8 -95 -21z"/>
|
||||
<path d="M4686 1060 c-36 -20 -41 -21 -51 -6 -7 9 -26 16 -44 16 l-31 0 0
|
||||
-235 0 -235 39 0 39 0 4 163 c2 135 6 166 21 188 21 31 57 49 100 49 71 0 81
|
||||
-28 85 -232 l4 -168 38 0 38 0 4 163 c2 134 6 166 21 188 36 54 111 69 150 30
|
||||
21 -20 22 -32 25 -202 l4 -180 41 3 42 3 3 155 c4 257 -19 310 -142 318 -63 4
|
||||
-86 -2 -142 -38 -18 -11 -25 -10 -53 11 -46 34 -142 38 -195 9z"/>
|
||||
<path d="M5450 1060 c-43 -23 -50 -24 -50 -5 0 11 -11 15 -40 15 l-40 0 0
|
||||
-330 0 -330 40 0 40 0 0 115 c0 63 2 115 5 115 2 0 19 -9 37 -20 24 -14 51
|
||||
-20 97 -20 79 0 120 23 159 88 25 43 27 56 27 152 0 97 -2 109 -28 153 -21 35
|
||||
-41 54 -70 68 -54 24 -132 24 -177 -1z m136 -75 c50 -32 72 -163 40 -239 -28
|
||||
-68 -94 -93 -157 -60 -51 26 -80 128 -59 213 22 94 103 133 176 86z"/>
|
||||
<path d="M6182 1063 c-84 -41 -130 -141 -119 -259 11 -116 69 -188 165 -203
|
||||
61 -9 147 1 190 23 28 14 31 20 25 49 -3 17 -7 34 -9 36 -2 2 -23 -4 -46 -15
|
||||
-26 -12 -65 -19 -99 -19 -65 0 -100 23 -125 82 -28 64 -30 63 141 63 l155 0 0
|
||||
43 c0 135 -73 217 -192 217 -29 0 -68 -8 -86 -17z m122 -63 c28 -10 66 -64 66
|
||||
-92 0 -16 -12 -18 -105 -18 -88 0 -105 2 -105 15 0 31 32 77 63 90 39 17 48
|
||||
18 81 5z"/>
|
||||
<path d="M6920 1060 c-43 -23 -50 -24 -50 -5 0 11 -11 15 -40 15 l-40 0 0
|
||||
-331 0 -330 43 3 42 3 3 108 c1 59 5 107 8 107 3 0 19 -7 36 -16 44 -23 139
|
||||
-21 180 3 18 10 46 38 63 62 27 38 30 52 34 134 5 138 -23 208 -99 247 -51 26
|
||||
-133 26 -180 0z m137 -76 c76 -49 81 -208 8 -281 -54 -54 -130 -41 -166 29
|
||||
-27 53 -27 171 1 216 35 58 101 73 157 36z"/>
|
||||
<path d="M8125 1060 c-131 -65 -151 -324 -31 -415 61 -46 165 -55 213 -20 42
|
||||
32 53 8 32 -68 -15 -57 -55 -77 -151 -77 l-78 0 0 -40 0 -40 78 0 c94 0 141
|
||||
12 183 47 59 50 63 71 67 361 l4 262 -45 0 c-26 0 -47 -5 -49 -12 -3 -9 -14
|
||||
-7 -40 5 -49 23 -133 22 -183 -3z m170 -74 c52 -34 72 -154 39 -235 -30 -76
|
||||
-131 -93 -186 -32 -94 105 -26 307 96 286 17 -3 40 -12 51 -19z"/>
|
||||
<path d="M8894 1055 c-27 -14 -50 -25 -51 -25 -2 0 -3 9 -3 20 0 17 -7 20 -40
|
||||
20 l-40 0 2 -232 3 -233 43 -3 42 -3 0 151 c0 170 9 203 62 234 43 26 104 24
|
||||
131 -3 21 -20 22 -32 25 -202 l3 -180 42 3 42 3 0 185 c0 168 -2 188 -20 220
|
||||
-42 72 -149 92 -241 45z"/>
|
||||
<path d="M9324 1066 c-49 -22 -74 -61 -74 -118 0 -43 5 -55 33 -82 20 -20 57
|
||||
-41 97 -55 87 -28 110 -45 110 -81 0 -57 -79 -77 -171 -45 -54 19 -69 14 -69
|
||||
-25 0 -43 44 -60 153 -60 71 0 89 4 118 23 67 45 77 153 20 206 -16 14 -59 37
|
||||
-97 50 -119 41 -141 68 -88 110 32 25 63 26 130 6 54 -16 64 -12 67 31 2 24
|
||||
-3 30 -33 41 -47 16 -158 15 -196 -1z"/>
|
||||
<path d="M3210 1058 c0 -7 38 -108 86 -226 l85 -214 -16 -49 c-21 -63 -54 -89
|
||||
-112 -89 l-44 0 3 -37 c3 -35 6 -38 37 -41 81 -8 144 26 180 97 17 32 211 555
|
||||
211 567 0 3 -21 4 -47 2 l-46 -3 -56 -167 c-31 -92 -58 -168 -61 -168 -3 0
|
||||
-34 77 -69 170 l-64 170 -44 0 c-27 0 -43 -5 -43 -12z"/>
|
||||
<path d="M4350 835 l0 -235 40 0 40 0 0 235 0 235 -40 0 -40 0 0 -235z"/>
|
||||
<path d="M7552 881 c3 -211 7 -224 78 -265 47 -28 173 -28 220 0 71 41 75 54
|
||||
78 265 l3 189 -45 0 -46 0 0 -179 0 -180 -26 -20 c-36 -29 -112 -29 -148 0
|
||||
l-26 20 0 180 0 179 -46 0 -45 0 3 -189z"/>
|
||||
<path d="M8560 835 l0 -235 40 0 40 0 0 235 0 235 -40 0 -40 0 0 -235z"/>
|
||||
<path d="M9681 701 c-30 -55 -1 -104 58 -99 28 2 39 9 50 32 12 26 12 33 0 55
|
||||
-20 35 -92 43 -108 12z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
@@ -0,0 +1,392 @@
|
||||
jQuery(document).ready(function ($) {
|
||||
'use strict';
|
||||
|
||||
$(document).on('click', '.cmplz-copy-shortcode', function () {
|
||||
var element_id = $(this).closest('.shortcode-container').find('.cmplz-shortcode').attr('id');
|
||||
var element = document.getElementById(element_id);
|
||||
var sel = window.getSelection();
|
||||
sel.removeAllRanges();
|
||||
var range = document.createRange();
|
||||
range.selectNodeContents(element);
|
||||
sel.addRange(range);
|
||||
var success;
|
||||
try {
|
||||
success = document.execCommand("copy");
|
||||
} catch (e) {
|
||||
success = false;
|
||||
}
|
||||
|
||||
if (success) {
|
||||
var icon = $(this).find('.cmplz-tooltip-icon');
|
||||
icon.addClass('copied');
|
||||
setTimeout(function(){ icon.removeClass('copied') }, 1000);
|
||||
}
|
||||
});
|
||||
|
||||
// Color bullet in support forum block
|
||||
$(".cmplz-trick a").hover(function() {
|
||||
$(this).find('.cmplz-bullet').css("background-color","#009fff");
|
||||
$(this).find('.cmplz-trick a, .cmplz-tips-tricks-content').css("color","#009fff");
|
||||
}, function() {
|
||||
$(this).find('.cmplz-bullet').css("background-color",""); //to remove property set it to ''
|
||||
$(this).find('.cmplz-trick a, .cmplz-tips-tricks-content').css("color","");
|
||||
});
|
||||
|
||||
//remove alerts
|
||||
window.setTimeout(function () {
|
||||
$(".cmplz-hide").fadeTo(500, 0).slideUp(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}, 2000);
|
||||
|
||||
function remove_after_change() {
|
||||
$(".cmplz-panel.cmplz-remove-after-change").fadeTo(500, 0).slideUp(500, function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* On multiple fields, we check if all input type=text and textareas are filled
|
||||
*
|
||||
* */
|
||||
|
||||
function cmplz_validate_multiple() {
|
||||
$('.multiple-field').each(function(){
|
||||
|
||||
var completed=true;
|
||||
$(this).find('input[type=text]').each(function () {
|
||||
if ($(this).val()===''){
|
||||
completed = false;
|
||||
}
|
||||
});
|
||||
|
||||
$(this).find('textarea').each(function () {
|
||||
if ($(this).val()===''){
|
||||
completed = false;
|
||||
}
|
||||
});
|
||||
|
||||
var icon = $(this).closest('.cmplz-panel').find('.cmplz-multiple-field-validation i');
|
||||
if (completed){
|
||||
icon.removeClass('fa-times');
|
||||
icon.addClass('fa-check');
|
||||
} else {
|
||||
icon.addClass('fa-times');
|
||||
icon.removeClass('fa-check');
|
||||
}
|
||||
});
|
||||
}
|
||||
cmplz_validate_multiple()
|
||||
$(document).on('keyup', '.multiple-field input[type=text]', function () {
|
||||
cmplz_validate_multiple();
|
||||
});
|
||||
$(document).on('keyup', '.multiple-field textarea', function () {
|
||||
cmplz_validate_multiple();
|
||||
});
|
||||
|
||||
|
||||
//validation of checkboxes
|
||||
cmplz_validate_checkboxes();
|
||||
$(':checkbox').change(cmplz_validate_checkboxes);
|
||||
|
||||
function cmplz_validate_checkboxes() {
|
||||
$('.cmplz-validate-multicheckbox').each(function (i) {
|
||||
var set_required = [];
|
||||
var all_unchecked = true;
|
||||
$(this).find(':checkbox').each(function (i) {
|
||||
|
||||
set_required.push($(this));
|
||||
|
||||
if ($(this).is(':checked')) {
|
||||
all_unchecked = false;
|
||||
}
|
||||
});
|
||||
var container = $(this).closest('.field-group').find('.cmplz-label');
|
||||
if (all_unchecked) {
|
||||
container.removeClass('valid-multicheckbox');
|
||||
container.addClass('invalid-multicheckbox');
|
||||
$.each(set_required, function (index, item) {
|
||||
item.prop('required', true);
|
||||
item.addClass('is-required');
|
||||
});
|
||||
|
||||
} else {
|
||||
container.removeClass('invalid-multicheckbox');
|
||||
container.addClass('valid-multicheckbox');
|
||||
$.each(set_required, function (index, item) {
|
||||
item.prop('required', false);
|
||||
item.removeClass('is-required');
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
//now apply the required.
|
||||
|
||||
check_conditions();
|
||||
}
|
||||
|
||||
$(document).on('change', 'input', function (e) {
|
||||
check_conditions();
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
$(document).on('keyup', 'input', function (e) {
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
$(document).on('change', 'select', function (e) {
|
||||
check_conditions();
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
$(document).on('change', 'textarea', function (e) {
|
||||
check_conditions();
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
$(document).on('keyup', 'textarea', function (e) {
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
$(document).on('click', 'button', function (e) {
|
||||
remove_after_change();
|
||||
});
|
||||
|
||||
if ($("input[name=step]").val() == 2) {
|
||||
setTimeout(function () {
|
||||
if (typeof tinymce !== 'undefined') {
|
||||
for (var i = 0; i < tinymce.editors.length; i++) {
|
||||
tinymce.editors[i].on('NodeChange keyup', function (ed, e) {
|
||||
remove_after_change();
|
||||
});
|
||||
}
|
||||
}
|
||||
}, 5000);
|
||||
}
|
||||
|
||||
|
||||
$(document).on("cmplzRenderConditions", check_conditions);
|
||||
|
||||
/*conditional fields*/
|
||||
function check_conditions() {
|
||||
var value;
|
||||
var showIfConditionMet = true;
|
||||
|
||||
$(".condition-check-1").each(function (e) {
|
||||
|
||||
var i;
|
||||
for (i = 1; i < 4; i++) {
|
||||
var question = 'cmplz_' + $(this).data("condition-question-" + i);
|
||||
var condition_type = 'AND';
|
||||
|
||||
if (question == 'cmplz_undefined') return;
|
||||
|
||||
var condition_answer = $(this).data("condition-answer-" + i);
|
||||
|
||||
//remove required attribute of child, and set a class.
|
||||
var input = $(this).find('input[type=checkbox]');
|
||||
if (!input.length) {
|
||||
input = $(this).find('input');
|
||||
}
|
||||
if (!input.length) {
|
||||
input = $(this).find('textarea');
|
||||
}
|
||||
if (!input.length) {
|
||||
input = $(this).find('select');
|
||||
}
|
||||
|
||||
if (input.length && input[0].hasAttribute('required')) {
|
||||
input.addClass('is-required');
|
||||
}
|
||||
|
||||
//cast into string
|
||||
condition_answer += "";
|
||||
|
||||
if (condition_answer.indexOf('NOT ') !== -1) {
|
||||
condition_answer = condition_answer.replace('NOT ', '');
|
||||
showIfConditionMet = false;
|
||||
} else {
|
||||
showIfConditionMet = true;
|
||||
}
|
||||
var condition_answers = [];
|
||||
if (condition_answer.indexOf(' OR ') !== -1) {
|
||||
condition_answers = condition_answer.split(' OR ');
|
||||
condition_type = 'OR';
|
||||
} else {
|
||||
condition_answers = [condition_answer];
|
||||
}
|
||||
|
||||
var container = $(this);
|
||||
var conditionMet = false;
|
||||
condition_answers.forEach(function (condition_answer) {
|
||||
value = get_input_value(question);
|
||||
|
||||
if ($('select[name=' + question + ']').length) {
|
||||
value = Array($('select[name=' + question + ']').val());
|
||||
}
|
||||
|
||||
if ($("input[name='" + question + "[" + condition_answer + "]" + "']").length) {
|
||||
if ($("input[name='" + question + "[" + condition_answer + "]" + "']").is(':checked')) {
|
||||
conditionMet = true;
|
||||
value = [];
|
||||
} else {
|
||||
conditionMet = false;
|
||||
value = [];
|
||||
}
|
||||
}
|
||||
|
||||
if (showIfConditionMet) {
|
||||
|
||||
//check if the index of the value is the condition, or, if the value is the condition
|
||||
if (conditionMet || value.indexOf(condition_answer) != -1 || (value == condition_answer)) {
|
||||
|
||||
container.removeClass("cmplz-hidden");
|
||||
//remove required attribute of child, and set a class.
|
||||
if (input.hasClass('is-required')) input.prop('required', true);
|
||||
//prevent further checks if it's an or/and statement
|
||||
conditionMet = true;
|
||||
} else {
|
||||
container.addClass("cmplz-hidden");
|
||||
if (input.hasClass('is-required')) input.prop('required', false);
|
||||
}
|
||||
} else {
|
||||
|
||||
if (conditionMet || value.indexOf(condition_answer) != -1 || (value == condition_answer)) {
|
||||
container.addClass("cmplz-hidden");
|
||||
if (input.hasClass('is-required')) input.prop('required', false);
|
||||
} else {
|
||||
container.removeClass("cmplz-hidden");
|
||||
if (input.hasClass('is-required')) input.prop('required', true);
|
||||
conditionMet = true;
|
||||
}
|
||||
}
|
||||
});
|
||||
if (!conditionMet) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
get checkbox values, array proof.
|
||||
*/
|
||||
|
||||
function get_input_value(fieldName) {
|
||||
|
||||
if ($('input[name=' + fieldName + ']').attr('type') == 'text') {
|
||||
return $('input[name^=' + fieldName + ']').val();
|
||||
} else {
|
||||
var checked_boxes = [];
|
||||
$('input[name=' + fieldName + ']:checked').each(function () {
|
||||
checked_boxes[checked_boxes.length] = $(this).val();
|
||||
});
|
||||
return checked_boxes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//select2 dropdown
|
||||
if ($('.cmplz-select2').length) {
|
||||
cmplzInitSelect2()
|
||||
}
|
||||
|
||||
function cmplzInitSelect2() {
|
||||
$('.cmplz-select2').select2({
|
||||
tags: true,
|
||||
width:'400px',
|
||||
});
|
||||
|
||||
$('.cmplz-select2-no-additions').select2({
|
||||
width:'400px',
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* hide and show custom url
|
||||
*/
|
||||
$(document).on('change', '.cmplz-document-input', function(){
|
||||
cmplz_update_document_field();
|
||||
});
|
||||
|
||||
function cmplz_update_document_field(){
|
||||
if ($('.cmplz-document-field').length){
|
||||
$('.cmplz-document-field').each(function(){
|
||||
var fieldname = $(this).data('fieldname');
|
||||
var value = $('input[name='+fieldname+']:checked').val();
|
||||
var urlField = $(this).find('.cmplz-document-custom-url');
|
||||
var pageField = $(this).find('.cmplz-document-custom-page');
|
||||
|
||||
if (value==='custom'){
|
||||
pageField.show();
|
||||
pageField.prop('required', true);
|
||||
} else {
|
||||
pageField.hide();
|
||||
pageField.prop('required', false);
|
||||
}
|
||||
|
||||
if (value==='url'){
|
||||
urlField.show();
|
||||
urlField.prop('required', true);
|
||||
} else {
|
||||
urlField.hide();
|
||||
urlField.prop('required', false);
|
||||
}
|
||||
|
||||
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create missing pages
|
||||
*/
|
||||
$(document).on('click', '#cmplz-tcf-create_pages', function(){
|
||||
//init loader anim
|
||||
var btn = $('#cmplz-tcf-create_pages');
|
||||
btn.attr('disabled', 'disabled');
|
||||
var oldBtnHtml = btn.html();
|
||||
btn.html('<div class="cmplz-loader "><div class="rect1"></div><div class="rect2"></div><div class="rect3"></div><div class="rect4"></div><div class="rect5"></div></div>');
|
||||
|
||||
//get all page titles from the page
|
||||
var pageTitles = {};
|
||||
$('.cmplz-create-page-title').each(function(){
|
||||
if (pageTitles.hasOwnProperty($(this).data('region'))){
|
||||
region = pageTitles[$(this).data('region')];
|
||||
} else {
|
||||
var region = {};
|
||||
}
|
||||
region[$(this).attr('name')] = $(this).val();
|
||||
pageTitles[$(this).data('region')] = region;
|
||||
});
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: complianz_tc_admin.admin_url,
|
||||
dataType: 'json',
|
||||
data: ({
|
||||
pages: JSON.stringify(pageTitles),
|
||||
action: 'cmplz_tc_create_pages',
|
||||
nonce: complianz_tc_admin.nonce,
|
||||
}),
|
||||
success: function (response) {
|
||||
if (response.success) {
|
||||
$('.cmplz-create-page-title').each(function(){
|
||||
$(this).removeClass('cmplz-deleted-page').addClass('cmplz-valid-page');
|
||||
$(this).parent().find('.cmplz-icon').replaceWith(response.icon);
|
||||
});
|
||||
btn.html(response.new_button_text);
|
||||
btn.removeAttr('disabled');
|
||||
} else {
|
||||
btn.html(oldBtnHtml);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
@@ -0,0 +1,484 @@
|
||||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle; }
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 28px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
position: relative; }
|
||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px; }
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding-left: 8px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-search--inline {
|
||||
float: left; }
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
padding: 0; }
|
||||
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051; }
|
||||
|
||||
.select2-results {
|
||||
display: block; }
|
||||
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-results__option[aria-selected] {
|
||||
cursor: pointer; }
|
||||
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px; }
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none; }
|
||||
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0); }
|
||||
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
-webkit-clip-path: inset(50%) !important;
|
||||
clip-path: inset(50%) !important;
|
||||
height: 1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important;
|
||||
white-space: nowrap !important; }
|
||||
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
||||
box-sizing: border-box;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
||||
list-style: none; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
float: left; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #333; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
||||
float: right; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa; }
|
||||
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield; }
|
||||
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--default .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
||||
color: #999; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-selected=true] {
|
||||
background-color: #ddd; }
|
||||
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
||||
padding-left: 0; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em; }
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #5897fb;
|
||||
color: white; }
|
||||
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-right: 10px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #aaa;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #aaa;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
||||
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
outline: 0; }
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
||||
display: none; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #555; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
||||
border: 1px solid #5897fb; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #aaa;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid transparent; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none; }
|
||||
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--classic .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
||||
color: grey; }
|
||||
|
||||
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #3875d7;
|
||||
color: white; }
|
||||
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb; }
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/af",[],function(){return{errorLoading:function(){return"Die resultate kon nie gelaai word nie."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Verwyders asseblief "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Voer asseblief "+t+" of meer karakters";return n},loadingMore:function(){return"Meer resultate word gelaai…"},maximumSelected:function(e){var t="Kies asseblief net "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"Geen resultate gevind"},searching:function(){return"Besig…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum;return"الرجاء حذف "+t+" عناصر"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"الرجاء إضافة "+t+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){return"تستطيع إختيار "+e.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bs",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspijelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadejte o jeden znak méně.":n<=4?"Prosím, zadejte o "+e(n,!0)+" znaky méně.":"Prosím, zadejte o "+n+" znaků méně."},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadejte ještě jeden znak.":n<=4?"Prosím, zadejte ještě další "+e(n,!0)+" znaky.":"Prosím, zadejte ještě dalších "+n+" znaků."},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku.":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky.":"Můžete zvolit maximálně "+n+" položek."},noResults:function(){return"Nenalezeny žádné položky."},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/dsb",[],function(){var e=["znamuško","znamušce","znamuška","znamuškow"],t=["zapisk","zapiska","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njejsu se dali zacytaś."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Pšosym lašuj "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Pšosym zapódaj nanejmjenjej "+r+" "+n(r,e)},loadingMore:function(){return"Dalšne wuslědki se zacytaju…"},maximumSelected:function(e){return"Móžoš jano "+e.maximum+" "+n(e.maximum,t)+"wubraś."},noResults:function(){return"Žedne wuslědki namakane"},searching:function(){return"Pyta se…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها میتوانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجهای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Supprimez "+t+" caractère"+(t>1?"s":"")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Saisissez au moins "+t+" caractère"+(t>1?"s":"")},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1?"s":"")},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hsb",[],function(){var e=["znamješko","znamješce","znamješka","znamješkow"],t=["zapisk","zapiskaj","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njedachu so začitać."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Prošu zhašej "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Prošu zapodaj znajmjeńša "+r+" "+n(r,e)},loadingMore:function(){return"Dalše wuslědki so začitaja…"},maximumSelected:function(e){return"Móžeš jenož "+e.maximum+" "+n(e.maximum,t)+"wubrać"},noResults:function(){return"Žane wuslědki namakane"},searching:function(){return"Pyta so…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Vennligst skriv inn "+t+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="د مهربانۍ لمخي "+t+" توری ړنګ کړئ";return t!=1&&(n=n.replace("توری","توري")),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لږ تر لږه "+t+" يا ډېر توري وليکئ";return n},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(e){var t="تاسو يوازي "+e.maximum+" قلم په نښه کولای سی";return e.maximum!=1&&(t=t.replace("قلم","قلمونه")),t},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"caractere",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+" sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{errorLoading:function(){return"Výsledky sa nepodarilo načítať."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Načítanie ďalších výsledkov…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Prosim zbrišite "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Prosim vpišite še "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var t="Označite lahko največ "+e.maximum+" predmet";return e.maximum==2?t+="a":e.maximum!=1&&(t+="e"),t},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" harp bozuň.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ýene-de iň az "+t+" harp ýazyň.";return n},loadingMore:function(){return"Köpräk netije görkezilýär…"},maximumSelected:function(e){var t="Diňe "+e.maximum+" sanysyny saýlaň.";return t},noResults:function(){return"Netije tapylmady."},searching:function(){return"Gözlenýär…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+" ký tự";return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})();
|
||||
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})();
|
||||