You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1016 lines
84 KiB
CSS
1016 lines
84 KiB
CSS
7 months ago
|
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
||
|
/*
|
||
|
Document
|
||
|
========
|
||
|
*/
|
||
|
/**
|
||
|
Use a better box model (opinionated).
|
||
|
*/
|
||
|
*,
|
||
|
::before,
|
||
|
::after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
1. Correct the line height in all browsers.
|
||
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
||
|
3. Use a more readable tab size (opinionated).
|
||
|
*/
|
||
|
html {
|
||
|
line-height: 1.15;
|
||
|
/* 1 */
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
/* 2 */
|
||
|
-moz-tab-size: 4;
|
||
|
/* 3 */
|
||
|
tab-size: 4;
|
||
|
/* 3 */
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Sections
|
||
|
========
|
||
|
*/
|
||
|
/**
|
||
|
1. Remove the margin in all browsers.
|
||
|
2. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
||
|
*/
|
||
|
body {
|
||
|
margin: 0;
|
||
|
/* 1 */
|
||
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Grouping content
|
||
|
================
|
||
|
*/
|
||
|
/**
|
||
|
1. Add the correct height in Firefox.
|
||
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
||
|
*/
|
||
|
hr {
|
||
|
height: 0;
|
||
|
/* 1 */
|
||
|
color: inherit;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Text-level semantics
|
||
|
====================
|
||
|
*/
|
||
|
/**
|
||
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
||
|
*/
|
||
|
abbr[title] {
|
||
|
text-decoration: underline dotted;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Add the correct font weight in Edge and Safari.
|
||
|
*/
|
||
|
b,
|
||
|
strong {
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
||
|
2. Correct the odd 'em' font sizing in all browsers.
|
||
|
*/
|
||
|
code,
|
||
|
kbd,
|
||
|
samp,
|
||
|
pre {
|
||
|
font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
||
|
/* 1 */
|
||
|
font-size: 1em;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Add the correct font size in all browsers.
|
||
|
*/
|
||
|
small {
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
||
|
*/
|
||
|
sub,
|
||
|
sup {
|
||
|
font-size: 75%;
|
||
|
line-height: 0;
|
||
|
position: relative;
|
||
|
vertical-align: baseline;
|
||
|
}
|
||
|
|
||
|
sub {
|
||
|
bottom: -0.25em;
|
||
|
}
|
||
|
|
||
|
sup {
|
||
|
top: -0.5em;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Tabular data
|
||
|
============
|
||
|
*/
|
||
|
/**
|
||
|
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
||
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
||
|
*/
|
||
|
table {
|
||
|
text-indent: 0;
|
||
|
/* 1 */
|
||
|
border-color: inherit;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Forms
|
||
|
=====
|
||
|
*/
|
||
|
/**
|
||
|
1. Change the font styles in all browsers.
|
||
|
2. Remove the margin in Firefox and Safari.
|
||
|
*/
|
||
|
button,
|
||
|
input,
|
||
|
optgroup,
|
||
|
select,
|
||
|
textarea {
|
||
|
font-family: inherit;
|
||
|
/* 1 */
|
||
|
margin: 0;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Remove the inheritance of text transform in Edge and Firefox.
|
||
|
*/
|
||
|
button,
|
||
|
select {
|
||
|
text-transform: none;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Correct the inability to style clickable types in iOS and Safari.
|
||
|
*/
|
||
|
button,
|
||
|
[type='button'],
|
||
|
[type='reset'],
|
||
|
[type='submit'] {
|
||
|
-webkit-appearance: button;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Remove the inner border and padding in Firefox.
|
||
|
*/
|
||
|
::-moz-focus-inner {
|
||
|
border-style: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Restore the focus styles unset by the previous rule.
|
||
|
*/
|
||
|
:-moz-focusring {
|
||
|
outline: 1px dotted ButtonText;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Remove the additional ':invalid' styles in Firefox.
|
||
|
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
||
|
*/
|
||
|
:-moz-ui-invalid {
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
||
|
*/
|
||
|
legend {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Add the correct vertical alignment in Chrome and Firefox.
|
||
|
*/
|
||
|
progress {
|
||
|
vertical-align: baseline;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Correct the cursor style of increment and decrement buttons in Safari.
|
||
|
*/
|
||
|
::-webkit-inner-spin-button,
|
||
|
::-webkit-outer-spin-button {
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
1. Correct the odd appearance in Chrome and Safari.
|
||
|
2. Correct the outline style in Safari.
|
||
|
*/
|
||
|
[type='search'] {
|
||
|
-webkit-appearance: textfield;
|
||
|
/* 1 */
|
||
|
outline-offset: -2px;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Remove the inner padding in Chrome and Safari on macOS.
|
||
|
*/
|
||
|
::-webkit-search-decoration {
|
||
|
appearance: none;
|
||
|
-webkit-appearance: none;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
1. Correct the inability to style clickable types in iOS and Safari.
|
||
|
2. Change font properties to 'inherit' in Safari.
|
||
|
*/
|
||
|
::-webkit-file-upload-button {
|
||
|
-webkit-appearance: button;
|
||
|
/* 1 */
|
||
|
font: inherit;
|
||
|
/* 2 */
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Interactive
|
||
|
===========
|
||
|
*/
|
||
|
/*
|
||
|
Add the correct display in Chrome and Safari.
|
||
|
*/
|
||
|
summary {
|
||
|
display: list-item;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--wpforms-admin-bar-height: 0px;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||
|
font-size: 14px;
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
line-height: 17px;
|
||
|
overflow: hidden !important;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #036aab;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #0399ed;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
button {
|
||
|
transition-duration: 0.05s;
|
||
|
transition-property: border, background, color;
|
||
|
transition-timing-function: ease-in;
|
||
|
}
|
||
|
|
||
|
a:focus,
|
||
|
button:focus {
|
||
|
box-shadow: none;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3 {
|
||
|
font-weight: 600;
|
||
|
margin-bottom: 10px;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 24px;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
line-height: 24px;
|
||
|
margin: 0 0 10px 0;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
margin-block-end: 0;
|
||
|
margin-block-start: 0;
|
||
|
margin-inline-end: 0;
|
||
|
margin-inline-start: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder {
|
||
|
background: #ffffff;
|
||
|
color: #444444;
|
||
|
cursor: default;
|
||
|
height: 100%;
|
||
|
margin: 0 !important;
|
||
|
min-width: 0;
|
||
|
overflow: hidden;
|
||
|
position: fixed;
|
||
|
z-index: 100099;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-clear:before {
|
||
|
content: "";
|
||
|
display: table;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-clear:after {
|
||
|
clear: both;
|
||
|
content: "";
|
||
|
display: table;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .note {
|
||
|
color: #777777;
|
||
|
font-size: 13px;
|
||
|
line-height: 18px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .secondary-text {
|
||
|
color: #777777;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder a.secondary-text:hover {
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .hidden,
|
||
|
#wpforms-builder .wpforms-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-hidden-strict {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-not-available {
|
||
|
opacity: .6;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-one-half {
|
||
|
float: left;
|
||
|
width: calc( 50% - 10px);
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-one-half.last {
|
||
|
float: right;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-one-half.wpforms-hide + .wpforms-one-half.last {
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-one-third {
|
||
|
float: left;
|
||
|
margin-right: 20px;
|
||
|
width: calc( 100%/3 - 13.33333px);
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-one-third.last {
|
||
|
float: right;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-two-thirds {
|
||
|
float: left;
|
||
|
margin-right: 20px;
|
||
|
width: calc( 66.66667% - 13.33333px);
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-help-tooltip {
|
||
|
color: #bbbbbb;
|
||
|
display: inline-block;
|
||
|
font-size: 15px;
|
||
|
margin: 0 0 0 10px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-help-tooltip:hover {
|
||
|
color: #777777;
|
||
|
cursor: help;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-panel-sidebar .wpforms-help-tooltip {
|
||
|
color: #b0b6bd;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder .wpforms-panel-sidebar .wpforms-help-tooltip:hover {
|
||
|
color: #86919e;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder label span.required {
|
||
|
color: #d63638;
|
||
|
}
|
||
|
|
||
|
.wpforms-columns {
|
||
|
display: flex;
|
||
|
flex-wrap: nowrap;
|
||
|
justify-content: space-between;
|
||
|
align-items: stretch;
|
||
|
align-content: flex-start;
|
||
|
}
|
||
|
|
||
|
.wpforms-columns.wpforms-columns-2 .wpforms-column {
|
||
|
width: calc( 50% - 15px);
|
||
|
}
|
||
|
|
||
|
.wpforms-columns.wpforms-columns-3 .wpforms-column {
|
||
|
width: calc( 100% / 3 - 20px);
|
||
|
}
|
||
|
|
||
|
.wpforms-columns.wpforms-columns-4 .wpforms-column {
|
||
|
width: calc( 100% / 4 - 22.5px);
|
||
|
}
|
||
|
|
||
|
.wpforms-loading-spinner {
|
||
|
background-image: url("../../images/spinner.svg");
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: 15px 15px;
|
||
|
display: block;
|
||
|
height: 15px;
|
||
|
margin: 0 10px;
|
||
|
vertical-align: -2px;
|
||
|
width: 15px;
|
||
|
-webkit-animation: wpforms-spinner-rotation 0.8s linear infinite;
|
||
|
-moz-animation: wpforms-spinner-rotation 0.8s linear infinite;
|
||
|
-ms-animation: wpforms-spinner-rotation 0.8s linear infinite;
|
||
|
-o-animation: wpforms-spinner-rotation 0.8s linear infinite;
|
||
|
animation: wpforms-spinner-rotation 0.8s linear infinite;
|
||
|
}
|
||
|
|
||
|
.wpforms-loading-spinner.wpforms-loading-white {
|
||
|
background-image: url("../../images/spinner-white.svg");
|
||
|
}
|
||
|
|
||
|
.wpforms-loading-spinner.wpforms-loading-md {
|
||
|
background-size: 24px 24px;
|
||
|
height: 24px;
|
||
|
width: 24px;
|
||
|
}
|
||
|
|
||
|
.wpforms-loading-spinner.wpforms-loading-inline {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
input[type=text],
|
||
|
input[type=number],
|
||
|
input[type=email],
|
||
|
input[type=url],
|
||
|
input[type=password],
|
||
|
input[type=search],
|
||
|
input[type=tel],
|
||
|
textarea,
|
||
|
select {
|
||
|
border: 1px solid #cccccc;
|
||
|
border-radius: 4px;
|
||
|
box-shadow: none;
|
||
|
color: #444444;
|
||
|
font-size: 14px;
|
||
|
height: 32px;
|
||
|
line-height: 18px;
|
||
|
margin: 0;
|
||
|
padding: 6px 10px;
|
||
|
}
|
||
|
|
||
|
input[type=text].readonly, input[type=text][readonly], input[type=text].disabled, input[type=text]:disabled,
|
||
|
input[type=number].readonly,
|
||
|
input[type=number][readonly],
|
||
|
input[type=number].disabled,
|
||
|
input[type=number]:disabled,
|
||
|
input[type=email].readonly,
|
||
|
input[type=email][readonly],
|
||
|
input[type=email].disabled,
|
||
|
input[type=email]:disabled,
|
||
|
input[type=url].readonly,
|
||
|
input[type=url][readonly],
|
||
|
input[type=url].disabled,
|
||
|
input[type=url]:disabled,
|
||
|
input[type=password].readonly,
|
||
|
input[type=password][readonly],
|
||
|
input[type=password].disabled,
|
||
|
input[type=password]:disabled,
|
||
|
input[type=search].readonly,
|
||
|
input[type=search][readonly],
|
||
|
input[type=search].disabled,
|
||
|
input[type=search]:disabled,
|
||
|
input[type=tel].readonly,
|
||
|
input[type=tel][readonly],
|
||
|
input[type=tel].disabled,
|
||
|
input[type=tel]:disabled,
|
||
|
textarea.readonly,
|
||
|
textarea[readonly],
|
||
|
textarea.disabled,
|
||
|
textarea:disabled,
|
||
|
select.readonly,
|
||
|
select[readonly],
|
||
|
select.disabled,
|
||
|
select:disabled {
|
||
|
opacity: .5;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
input[type=text].readonly:focus, input[type=text][readonly]:focus, input[type=text].disabled:focus, input[type=text]:disabled:focus,
|
||
|
input[type=number].readonly:focus,
|
||
|
input[type=number][readonly]:focus,
|
||
|
input[type=number].disabled:focus,
|
||
|
input[type=number]:disabled:focus,
|
||
|
input[type=email].readonly:focus,
|
||
|
input[type=email][readonly]:focus,
|
||
|
input[type=email].disabled:focus,
|
||
|
input[type=email]:disabled:focus,
|
||
|
input[type=url].readonly:focus,
|
||
|
input[type=url][readonly]:focus,
|
||
|
input[type=url].disabled:focus,
|
||
|
input[type=url]:disabled:focus,
|
||
|
input[type=password].readonly:focus,
|
||
|
input[type=password][readonly]:focus,
|
||
|
input[type=password].disabled:focus,
|
||
|
input[type=password]:disabled:focus,
|
||
|
input[type=search].readonly:focus,
|
||
|
input[type=search][readonly]:focus,
|
||
|
input[type=search].disabled:focus,
|
||
|
input[type=search]:disabled:focus,
|
||
|
input[type=tel].readonly:focus,
|
||
|
input[type=tel][readonly]:focus,
|
||
|
input[type=tel].disabled:focus,
|
||
|
input[type=tel]:disabled:focus,
|
||
|
textarea.readonly:focus,
|
||
|
textarea[readonly]:focus,
|
||
|
textarea.disabled:focus,
|
||
|
textarea:disabled:focus,
|
||
|
select.readonly:focus,
|
||
|
select[readonly]:focus,
|
||
|
select.disabled:focus,
|
||
|
select:disabled:focus {
|
||
|
box-shadow: none;
|
||
|
outline: none;
|
||
|
border: 1px solid #cccccc;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
height: 120px;
|
||
|
resize: vertical;
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
background: #ffffff 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%23777%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%;
|
||
|
background-size: 16px 16px;
|
||
|
cursor: pointer;
|
||
|
min-height: 32px;
|
||
|
padding-right: 24px;
|
||
|
vertical-align: middle;
|
||
|
appearance: none;
|
||
|
-webkit-appearance: none;
|
||
|
}
|
||
|
|
||
|
select:hover {
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
select:-moz-focusring {
|
||
|
color: transparent;
|
||
|
text-shadow: 0 0 0 #036aab;
|
||
|
}
|
||
|
|
||
|
select::-ms-value {
|
||
|
background: 0 0;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
select:hover::-ms-value {
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
select:focus::-ms-value {
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
select::-ms-expand {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
select[multiple] {
|
||
|
background-image: none;
|
||
|
}
|
||
|
|
||
|
select[multiple] option {
|
||
|
padding: 2px 0;
|
||
|
}
|
||
|
|
||
|
input[type=checkbox],
|
||
|
input[type=radio] {
|
||
|
background: linear-gradient(180deg, #e8e8e8 0%, #ffffff 68.23%);
|
||
|
border: 1px solid #7e8993;
|
||
|
border-radius: 4px;
|
||
|
clear: none;
|
||
|
color: #444444;
|
||
|
cursor: pointer;
|
||
|
display: inline-block;
|
||
|
height: 16px;
|
||
|
line-height: 0;
|
||
|
margin: -4px 4px 1px 1px;
|
||
|
min-width: 16px;
|
||
|
outline: 0;
|
||
|
padding: 0 !important;
|
||
|
text-align: center;
|
||
|
vertical-align: middle;
|
||
|
width: 16px;
|
||
|
appearance: none;
|
||
|
-webkit-appearance: none;
|
||
|
transition-property: border-color;
|
||
|
transition-duration: 0.05s;
|
||
|
transition-timing-function: ease-out;
|
||
|
}
|
||
|
|
||
|
input[type=checkbox]:checked::before,
|
||
|
input[type=radio]:checked::before {
|
||
|
display: inline-block;
|
||
|
float: left;
|
||
|
speak: never;
|
||
|
vertical-align: middle;
|
||
|
width: 1rem;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
}
|
||
|
|
||
|
input[type=checkbox]:checked::before {
|
||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23215D8F%27%2F%3E%3C%2Fsvg%3E");
|
||
|
height: 21px;
|
||
|
margin: -3px 0 0 -4px;
|
||
|
width: 21px;
|
||
|
}
|
||
|
|
||
|
input[type=checkbox]:checked::before svg path {
|
||
|
fill: #215d8f;
|
||
|
}
|
||
|
|
||
|
input[type=radio] {
|
||
|
border-radius: 50%;
|
||
|
line-height: .7;
|
||
|
margin-right: 4px;
|
||
|
}
|
||
|
|
||
|
input[type=radio]:checked::before {
|
||
|
background-color: #036aab;
|
||
|
border-radius: 50%;
|
||
|
content: "";
|
||
|
height: 8px;
|
||
|
line-height: 1.1;
|
||
|
margin: 3px;
|
||
|
width: 8px;
|
||
|
}
|
||
|
|
||
|
input[type=number] {
|
||
|
width: 100px;
|
||
|
}
|
||
|
|
||
|
input.wpforms-error,
|
||
|
textarea.wpforms-error,
|
||
|
select.wpforms-error {
|
||
|
border: 1px solid #d63638 !important;
|
||
|
}
|
||
|
|
||
|
input.wpforms-error:focus,
|
||
|
textarea.wpforms-error:focus,
|
||
|
select.wpforms-error:focus {
|
||
|
box-shadow: 0 0 0 1px #d63638;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
input:focus,
|
||
|
textarea:focus,
|
||
|
select:focus {
|
||
|
border: 1px solid #036aab;
|
||
|
box-shadow: 0 0 0 1px #036aab;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
::-webkit-input-placeholder,
|
||
|
::-moz-placeholder,
|
||
|
:-ms-input-placeholder {
|
||
|
color: #bbbbbb;
|
||
|
}
|
||
|
|
||
|
.wpforms_page_wpforms-builder .choices {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.wpforms_page_wpforms-builder .choices .choices__inner {
|
||
|
border: 1px solid #cccccc;
|
||
|
border-radius: 4px;
|
||
|
min-height: 32px;
|
||
|
padding-left: 5px;
|
||
|
}
|
||
|
|
||
|
.wpforms_page_wpforms-builder .choices .choices__item.choices__placeholder {
|
||
|
color: #999999;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
.wpforms-panel-field-colorpicker .minicolors .minicolors-input {
|
||
|
height: 32px;
|
||
|
width: 210px;
|
||
|
border-radius: 4px;
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
text-transform: lowercase;
|
||
|
padding-left: 35px;
|
||
|
}
|
||
|
|
||
|
.wpforms-panel-field-colorpicker .minicolors .minicolors-swatch {
|
||
|
height: 22px;
|
||
|
width: 22px;
|
||
|
border-radius: 2px;
|
||
|
border: none;
|
||
|
overflow: hidden;
|
||
|
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
.wpforms-panel-field-colorpicker .minicolors .minicolors-swatch .minicolors-swatch-color {
|
||
|
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn {
|
||
|
border-width: 1px;
|
||
|
border-style: solid;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
display: inline-block;
|
||
|
margin: 0;
|
||
|
text-decoration: none;
|
||
|
text-align: center;
|
||
|
vertical-align: middle;
|
||
|
white-space: nowrap;
|
||
|
box-shadow: none;
|
||
|
transition-property: all;
|
||
|
transition-duration: 0.05s;
|
||
|
transition-timing-function: ease-in;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn.inactive {
|
||
|
background-color: #d7d7d7;
|
||
|
border-color: #cccccc;
|
||
|
color: #444444;
|
||
|
cursor: no-drop;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn .wpforms-button-icon,
|
||
|
.wpforms-admin-page .wpforms-btn i {
|
||
|
margin: 0 10px 0 0 !important;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-block {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-sm {
|
||
|
font-size: 14px;
|
||
|
font-weight: 500;
|
||
|
padding: 0 10px;
|
||
|
height: 32px;
|
||
|
line-height: 30px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-md {
|
||
|
font-size: 14px;
|
||
|
font-weight: 600;
|
||
|
line-height: 17px;
|
||
|
padding: 10px 15px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-lg {
|
||
|
font-size: 16px;
|
||
|
font-weight: 600;
|
||
|
padding: 16px 28px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-orange {
|
||
|
background-color: #e27730;
|
||
|
border-color: #e27730;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-orange:hover {
|
||
|
background-color: #cd6622;
|
||
|
border-color: #cd6622;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-blue {
|
||
|
background-color: #036aab;
|
||
|
border-color: #036aab;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-blue:hover {
|
||
|
background-color: #215d8f;
|
||
|
border-color: #215d8f;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-blue.wpforms-settings-keyword-filter-save-changes {
|
||
|
font-weight: 400;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-blue.wpforms-settings-keyword-filter-save-changes .wpforms-loading-spinner {
|
||
|
margin-left: 0;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-grey {
|
||
|
background-color: #eeeeee;
|
||
|
border-color: #cccccc;
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-grey:hover {
|
||
|
background-color: #d7d7d7;
|
||
|
border-color: #cccccc;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-light-grey {
|
||
|
background-color: #f8f8f8;
|
||
|
border-color: #cccccc;
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-light-grey:hover {
|
||
|
background-color: #eeeeee;
|
||
|
border-color: #cccccc;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-light-grey-blue-borders {
|
||
|
background-color: #f8f8f8;
|
||
|
border-color: currentColor;
|
||
|
color: #036aab;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-btn-light-grey-blue-borders:hover {
|
||
|
background-color: #eeeeee;
|
||
|
color: #215d8f;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-dismiss-button {
|
||
|
background: none;
|
||
|
border: none;
|
||
|
color: #bbbbbb;
|
||
|
cursor: pointer;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-dismiss-button:hover {
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-dismiss-button:before {
|
||
|
background: 0 0;
|
||
|
content: "\f153";
|
||
|
display: block;
|
||
|
font: normal 16px/16px dashicons, sans-serif;
|
||
|
height: 16px;
|
||
|
speak: none;
|
||
|
text-align: center;
|
||
|
width: 16px;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-page .wpforms-disabled {
|
||
|
cursor: default;
|
||
|
opacity: .5;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge {
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||
|
text-transform: uppercase;
|
||
|
font-weight: 700;
|
||
|
text-align: center;
|
||
|
line-height: 6px;
|
||
|
user-select: none;
|
||
|
transition-property: all;
|
||
|
transition-duration: 0.15s;
|
||
|
transition-timing-function: ease-out;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-lg {
|
||
|
font-size: 10px;
|
||
|
letter-spacing: 0.5px;
|
||
|
padding: 8px 10px;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-sm {
|
||
|
font-size: 8px;
|
||
|
letter-spacing: 0.4px;
|
||
|
padding: 6px 8px;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-inline {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-corner {
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-rounded {
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-rounded-bl {
|
||
|
border-radius: 0 0 0 3px;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-square {
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-silver, .wpforms-badge-platinum {
|
||
|
color: #999999;
|
||
|
background-color: #ededed;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-titanium {
|
||
|
color: #8c8f94;
|
||
|
background-color: #e5e5e6;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-steel {
|
||
|
color: #9ba4af;
|
||
|
background-color: #e7ecf2;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-slate {
|
||
|
color: #9ba4af;
|
||
|
background-color: #dbe4ee;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-orange {
|
||
|
color: #e79055;
|
||
|
background-color: #fdf2eb;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-blue {
|
||
|
color: #30abf0;
|
||
|
background-color: #e6f4fe;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-green {
|
||
|
color: #30b450;
|
||
|
background-color: #e5f6e9;
|
||
|
}
|
||
|
|
||
|
.wpforms-badge-red {
|
||
|
color: #dd595b;
|
||
|
background-color: #fae6e7;
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNzZXRzL2Nzcy9idWlsZGVyL2J1aWxkZXItYmFzaWMuY3NzIiwic291cmNlcyI6WyJhc3NldHMvc2Nzcy9idWlsZGVyL2J1aWxkZXItYmFzaWMuc2NzcyIsImFzc2V0cy9zY3NzL2J1aWxkZXIvcGFydGlhbHMvX2NvbW1vbi5zY3NzIiwiYXNzZXRzL3Njc3MvYnVpbGRlci9wYXJ0aWFscy9fY29sb3JzLnNjc3MiLCJhc3NldHMvc2Nzcy9idWlsZGVyL3BhcnRpYWxzL192YXJpYWJsZXMuc2NzcyIsImFzc2V0cy9zY3NzL2J1aWxkZXIvcGFydGlhbHMvX21peGlucy5zY3NzIiwiYXNzZXRzL3Njc3MvYnVpbGRlci9wYXJ0aWFscy9fbWl4aW5zLWJ1dHRvbnMuc2NzcyIsImFzc2V0cy9zY3NzL2J1aWxkZXIvcGFydGlhbHMvX21vZGVybi1ub3JtYWxpemUuc2NzcyIsImFzc2V0cy9zY3NzL2J1aWxkZXIvcGFydGlhbHMvX2dlbmVyYWwuc2NzcyIsImFzc2V0cy9zY3NzL2J1aWxkZXIvcGFydGlhbHMvX2dlbmVyYWwtaW5wdXRzLnNjc3MiLCJhc3NldHMvc2Nzcy9idWlsZGVyL3BhcnRpYWxzL19idXR0b25zLnNjc3MiLCJhc3NldHMvc2Nzcy9hZG1pbi9fYmFkZ2VzLnNjc3MiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gRm9ybSBCdWlsZGVyIHN0eWxlcy5cbi8vXG4vLyBCYXNpYyBzdHlsZXMuXG4vL1xuLy8gQHNpbmNlIDEuNi44XG5cbkBpbXBvcnQgJ3BhcnRpYWxzL2NvbW1vbic7XG5cbkBpbXBvcnQgJ3BhcnRpYWxzL21vZGVybi1ub3JtYWxpemUnO1xuQGltcG9ydCAncGFydGlhbHMvZ2VuZXJhbCc7XG5AaW1wb3J0ICdwYXJ0aWFscy9nZW5lcmFsLWlucHV0cyc7XG5AaW1wb3J0ICdwYXJ0aWFscy9idXR0b25zJztcbkBpbXBvcnQgJy4uL2FkbWluL2JhZGdlcyc7XG4iLCIvLyBGb3JtIEJ1aWxkZXIgc3R5bGVzLlxuLy9cbi8vIENvbW1vbiBzdHlsZXMuXG4vL1xuLy8gQHNpbmNlIDEuNi44XG5cbkBpbXBvcnQgJ2NvbG9ycyc7XG5AaW1wb3J0ICd2YXJpYWJsZXMnO1xuQGltcG9ydCAnbWl4aW5zJztcbkBpbXBvcnQgJ21peGlucy1idXR0b25zJztcbiIsIi8vIEZvcm0gQnVpbGRlciBzdHlsZXMuXG4vL1xuLy8gQ29sb3JzLlxuLy9cbi8vIEBzaW5jZSAxLjYuOFxuXG4vLyBDb2xvcnMgYnkgbmFtZTpcbiRjb2xvcl93aGl0ZTogICAgICAgICAgICAgICAgICAgICAgICAgICNmZmZmZmY7XG4kY29sb3JfYmxhY2s6ICAgICAgICAgICAgICAgICAgICAgICAgICAjMmQyZDJkO1xuXG4kY29sb3JfZGFya19yZWQ6ICAgICAgICAgICAgICAgICAgICAgICAjYjMyZDJlO1xuJGNvbG9yX3JlZDogICAgICAgICAgICAgICAgICAgICAgICAgICAgI2Q2MzYzODtcbiRjb2xvcl9icmlnaHRfcmVkOiAgICAgICAgICAgICAgICAgICAgICNlZTVjNWM7XG4kY29sb3JfbGlnaHRlc3RfcmVkOiAgICAgICAgICAgICAgICAgICAjZmNmMGYxO1xuXG4kY29sb3JfZGFya19ncmVlbjogICAgICAgICAgICAgICAgICAgICAjMDA4YTIwO1xuJGNvbG9yX2dyZWVuOiAgICAgICAgICAgICAgICAgICAgICAgICAgIzAwYTMyYTtcbiRjb2xvcl9saWdodGVzdF9ncmVlbjogICAgICAgICAgICAgICAgICNlZGZhZWY7XG4kY29sb3JfZGFya2VyX2JsdWU6ICAgICAgICAgICAgICAgICAgICAjMDA1Mzg3O1xuJGNvbG9yX2RhcmtfYmx1ZTogICAgICAgICAgICAgICAgICAgICAgIzIxNWQ4ZjtcbiRjb2xvcl9ibHVlOiAgICAgICAgICAgICAgICAgICAgICAgICAgICMwMzZhYWI7XG4kY29sb3JfYnJpZ2h0X2JsdWU6ICAgICAgICAgICAgICAgICAgICAjMDM5OWVkO1xuJGNvbG9yX2JyaWdodF9ibHVlX2FsdDogICAgICAgICAgICAgICAgIzQyODVmNDtcbiRjb2xvcl9icmlnaHRlcl9ibHVlOiAgICAgICAgICAgICAgICAgICMwMGM2YmY7XG4kY29sb3JfbGlnaHRfYmx1ZTogICAgICAgICAgICAgICAgICAgICAjNzljMmY0O1xuJGNvbG9yX2xpZ2h0ZXJfYmx1ZTogICAgICAgICAgICAgICAgICAgI2NjZTBlZDtcbiRjb2xvcl9saWdodGVzdF9ibHVlOiAgICAgICAgICAgICAgICAgICNmMWY2ZmE7XG5cbiRjb2xvcl9kYXJrX29yYW5nZTogICAgICAgICAgICAgICAgICAgICNjZDY2MjI7XG4kY29sb3Jfb3JhbmdlOiAgICAgICAgICAgICAgICAgICAgICAgICAjZTI3NzMwO1xuJGNvbG9yX2xpZ2h0X29yYW5nZTogICAgICAgICAgICAgICAgICAgI2Y0ODEyMDtcblxuJGNvbG9yX2RhcmtfeWVsbG93OiAgICAgICAgICAgICAgICAgICAgI2ZmYWEwMDtcbiRjb2xvcl95ZWxsb3c6ICAgICAgICAgICAgICAgICAgICAgICAgICNmZmI5MDA7XG4kY29sb3JfbGlnaHRlc3RfeWVsbG93OiAgICAgICAgICAgICAgICAjZmNmOWU4O1xuXG4kY29sb3JfZGFya2VyX2dyZXk6ICAgICAgICAgICAgICAgICAgICAjNjI2MjYyO1xuJGNvbG9yX2RhcmtfZ3JleTogICAgICAgICAgICAgICAgICAgICAgIzY2NjY2NjtcbiRjb2xvcl9icmlnaHRfZ3JleTogICAgICAgICAgICAgICAgICAgICNhYWFhYWE7XG4kY29sb3JfYnJpZ2h0X2dyZXlfYWx0OiAgICAgICAgICAgICAgICAjYjZiNmI2O1xuJGNvbG9yX2JyaWdodGVyX2dyZXk6ICAgICAgICAgICAgICAgICAgI2NjY2NjYztcbiRjb2xvcl9icmlnaHRlcl9ncmV5X2FsdDogICAgICAgICAgICAgICNkNmQ2ZDY7XG4kY29sb3JfYnJpZ2h0ZXN0X2dyZXk6ICAgICAgICAgICAgICAgICAjZThlOGU4O1xuJGNvbG9yX2xpZ2h0X2dyZXk6ICAgICAgICAgICAgICAgICAgICAgI2YxZjFmMTtcbiRjb2xvcl9saWdodGVyX2dyZXk6ICAgICAgICAgICAgICAgICAgICNmNmY2ZjY7XG4kY29sb3JfbGlnaHRlc3RfZ3JleTogICAgICAgICAgICAgICAgICAjZjhmOGY4O1xuXG4vLyBDb2xvcnMgYnkgdXNhZ2U6XG4kY29sb3JfYmxhY2tfYmFja2dyb3VuZDogICAgICAgICAgICAgICAjMmQyZDJkO1xuJGNvbG9yX2JsYWNrX2JhY2tncm91bmRfaG92ZXI6ICAgICAgICAgIzQ0NDQ0NDtcbiRjb2xvcl9kYXJrX2dyZXlfYmFja2dyb3VuZDogICAgICAgICAgICM2ZDZkNmQ7XG4kY29sb3JfZ3JleV9iYWNrZ3JvdW5kOiAgICAgICAgICAgICAgICAjZWVlZWVlO1xuJGNvbG9yX2dyZXlfYmFja2dyb3VuZF9ob3Zlcjog
|