diff options
author | Yury German <blueknight@gentoo.org> | 2019-05-22 01:01:36 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2019-05-22 01:01:36 -0400 |
commit | 0914c92da22824025992c368c745546e41fbeb84 (patch) | |
tree | 965f6adf3b725e56d559fe4a93eff02281499dcc /plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css | |
parent | Deleting plugins for update (diff) | |
download | blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.tar.gz blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.tar.bz2 blogs-gentoo-0914c92da22824025992c368c745546e41fbeb84.zip |
Adding Plugins
Updating the following
akismet.4.1.2, google-authenticator.0.52, jetpack.7.3.1
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css')
-rw-r--r-- | plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css | 825 |
1 files changed, 825 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css b/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css new file mode 100644 index 00000000..1cfbf3ce --- /dev/null +++ b/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css @@ -0,0 +1,825 @@ +/* Do not modify this file directly. It is concatenated from individual module CSS files. */ +/* ========================================================================== +** Normalize +** ======================================================================== */ + +html { + direction: rtl; +} + +body { + font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; + font-size: 16px; + line-height: 1.4em; + margin: 0; +} + +/* Links */ +a, +a:visited { + color: #0087be; + text-decoration: none; +} + +a:hover, +a:focus, +a:active { + color: $link-highlight; +} + +/* ========================================================================== +** Card +** ======================================================================= */ + +.card, +body { + display: block; + position: relative; + margin: 0 auto 10px auto; + padding: 16px; + box-sizing: border-box; + background: white; + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; +} + +body { + margin: 0; + background: #f5f5f5; +} + +.card:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.card:hover, +.card:focus { + box-shadow: 0 0 0 1px #999, 0 1px 2px #e9eff3; +} + +.card .delete-field { + display: block; + float: left; +} + +@media ( min-width: 481px ) { + .card { + margin-bottom: 16px; + padding: 24px; + } + body { + padding: 24px; + } +} + +.card.is-compact { + margin-bottom: 1px; +} + +@media ( min-width: 481px ) { + .card.is-compact { + margin-bottom: 1px; + padding: 16px 24px; + } +} + +.card > div { + margin-top: 24px; +} + +.card > div:first-child { + margin-top: 0; +} + + +/* ========================================================================== +** Labels +** ======================================================================= */ + +label { + display: block; + font-size: 14px; + font-weight: 600; + margin-bottom: 5px; + margin-top: 8px; +} + +label:first-of-type { + margin-top: 4px; +} + + +/* ========================================================================== +** Text Inputs +** ======================================================================= */ + +input[type="text"], +input[type="tel"], +input[type="email"], +input[type="url"] { + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + box-sizing: border-box; + margin: 0; + padding: 7px 14px; + width: 100%; + color: #2e4453; + font-size: 16px; + line-height: 1.5; + border: 1px solid #c8d7e1; + background-color: #fff; + transition: all .15s ease-in-out; + box-shadow: none; +} + +input[type="text"]:-ms-input-placeholder, +input[type="tel"]:-ms-input-placeholder, +input[type="email"]:-ms-input-placeholder, +input[type="url"]:-ms-input-placeholder { + color: #87a6bc; +} + +input[type="text"]::-ms-input-placeholder, +input[type="tel"]::-ms-input-placeholder, +input[type="email"]::-ms-input-placeholder, +input[type="url"]::-ms-input-placeholder { + color: #87a6bc; +} + +input[type="text"]::placeholder, +input[type="tel"]::placeholder, +input[type="email"]::placeholder, +input[type="url"]::placeholder { + color: #87a6bc; +} + +input[type="text"]:hover, +input[type="tel"]:hover, +input[type="email"]:hover, +input[type="url"]:hover { + border-color: #a8bece; +} + +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="email"]:focus, +input[type="url"]:focus { + border-color: #0087be; + outline: none; + box-shadow: 0 0 0 2px #78dcfa; +} + +input[type="text"]:focus::-ms-clear, +input[type="tel"]:focus::-ms-clear, +input[type="email"]:focus::-ms-clear, +input[type="url"]:focus::-ms-clear { + display: none; +} + +input[type="text"]:disabled, +input[type="tel"]:disabled, +input[type="email"]:disabled, +input[type="url"]:disabled { + background: #f3f6f8; + border-color: #e9eff3; + color: #a8bece; + -webkit-text-fill-color: #a8bece; +} + +input[type="text"]:disabled:hover, +input[type="tel"]:disabled:hover, +input[type="email"]:disabled:hover, +input[type="url"]:disabled:hover { + cursor: default; +} + +input[type="text"]:disabled:-ms-input-placeholder, +input[type="tel"]:disabled:-ms-input-placeholder, +input[type="email"]:disabled:-ms-input-placeholder, +input[type="url"]:disabled:-ms-input-placeholder { + color: #a8bece; +} + +input[type="text"]:disabled::-ms-input-placeholder, +input[type="tel"]:disabled::-ms-input-placeholder, +input[type="email"]:disabled::-ms-input-placeholder, +input[type="url"]:disabled::-ms-input-placeholder { + color: #a8bece; +} + +input[type="text"]:disabled::placeholder, +input[type="tel"]:disabled::placeholder, +input[type="email"]:disabled::placeholder, +input[type="url"]:disabled::placeholder { + color: #a8bece; +} + + +/* ========================================================================== +** Textareas +** ======================================================================= */ + +textarea { + border-radius: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + box-sizing: border-box; + margin: 0; + padding: 7px 14px; + height: 92px; + width: 100%; + color: #2e4453; + font-size: 16px; + line-height: 1.5; + border: 1px solid #c8d7e1; + background-color: #fff; + transition: all .15s ease-in-out; + box-shadow: none; +} + +textarea:-ms-input-placeholder { + color: #87a6bc; +} + +textarea::-ms-input-placeholder { + color: #87a6bc; +} + +textarea::placeholder { + color: #87a6bc; +} + +textarea:hover { + border-color: #a8bece; +} + +textarea:focus { + border-color: #0087be; + outline: none; + box-shadow: 0 0 0 2px #78dcfa; +} + +textarea:focus::-ms-clear { + display: none; +} + +textarea:disabled { + background: #f3f6f8; + border-color: #e9eff3; + color: #a8bece; + -webkit-text-fill-color: #a8bece; +} + +textarea:disabled:hover { + cursor: default; +} + +textarea:disabled:-ms-input-placeholder { + color: #a8bece; +} + +textarea:disabled::-ms-input-placeholder { + color: #a8bece; +} + +textarea:disabled::placeholder { + color: #a8bece; +} + + +/* ========================================================================== +** Checkboxes +** ======================================================================= */ + +.checkbox, +input[type="checkbox"] { + -webkit-appearance: none; + display: inline-block; + box-sizing: border-box; + margin: 2px 0 0; + padding: 7px 14px; + width: 16px; + height: 16px; + float: right; + outline: 0; + padding: 0; + box-shadow: none; + background-color: #fff; + border: 1px solid #c8d7e1; + color: #2e4453; + font-size: 16px; + line-height: 0; + text-align: center; + vertical-align: middle; + -moz-appearance: none; + appearance: none; + transition: all .15s ease-in-out; + clear: none; + cursor: pointer; +} + +.checkbox:checked:before, +input[type="checkbox"]:checked:before { + content: '\f147'; + font-family: Dashicons; + margin: -3px -4px 0 0; + float: right; + display: inline-block; + vertical-align: middle; + width: 16px; + font-size: 20px; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + speak: none; + color: #00aadc; +} + +.checkbox:disabled:checked:before, +input[type="checkbox"]:disabled:checked:before { + color: #a8bece; +} + +.checkbox:hover, +input[type="checkbox"]:hover { + border-color: #a8bece; +} + +.checkbox:focus, +input[type="checkbox"]:focus { + border-color: #0087be; + outline: none; + box-shadow: 0 0 0 2px #78dcfa; +} + +.checkbox:disabled, +input[type="checkbox"]:disabled { + background: #f3f6f8; + border-color: #e9eff3; + color: #a8bece; + opacity: 1; +} + +.checkbox:disabled:hover, +input[type="checkbox"]:disabled:hover { + cursor: default; +} + +.checkbox + span, +input[type="checkbox"] + span { + display: block; + font-weight: normal; + margin-right: 24px; +} + + +/* ========================================================================== +** Radio buttons +** ======================================================================== */ + +.radio-button, +input[type=radio] { + color: #2e4453; + font-size: 16px; + border: 1px solid #c8d7e1; + background-color: #fff; + transition: all .15s ease-in-out; + box-sizing: border-box; + -webkit-appearance: none; + clear: none; + cursor: pointer; + display: inline-block; + line-height: 0; + height: 16px; + margin: 2px 0 0 4px; + float: right; + outline: 0; + padding: 0; + text-align: center; + vertical-align: middle; + width: 16px; + min-width: 16px; + -moz-appearance: none; + appearance: none; + border-radius: 50%; + line-height: 10px; +} + +.radio-button:hover, +input[type="radio"]:hover { + border-color: #a8bece; +} + +.radio-button:focus, +input[type="radio"]:focus { + border-color: #0087be; + outline: none; + box-shadow: 0 0 0 2px #78dcfa; +} + +.radio-button:focus::-ms-clear, +input[type="radio"]:focus::-ms-clear { + display: none; +} + +.radio-button:checked:before, +input[type="radio"]:checked:before { + float: right; + display: inline-block; + content: '\2022'; + margin: 3px; + width: 8px; + height: 8px; + text-indent: -9999px; + background: #00aadc; + vertical-align: middle; + border-radius: 50%; + animation: grow .2s ease-in-out; +} + +.radio-button:disabled, +input[type="radio"]:disabled { + background: #f3f6f8; + border-color: #e9eff3; + color: #a8bece; + opacity: 1; + -webkit-text-fill-color: #a8bece; +} + +.radio-button:disabled:hover, +input[type="radio"]:disabled:hover { + cursor: default; +} + +.radio-button:disabled:-ms-input-placeholder, +input[type="radio"]:disabled:-ms-input-placeholder { + color: #a8bece; +} + +.radio-button:disabled::-ms-input-placeholder, +input[type="radio"]:disabled::-ms-input-placeholder { + color: #a8bece; +} + +.radio-button:disabled::placeholder, +input[type="radio"]:disabled::placeholder { + color: #a8bece; +} + +.radio-button:disabled:checked::before, +input[type="radio"]:disabled:checked:before { + background: #e9eff3; +} + +.radio-button + span, +input[type="radio"] + span { + display: block; + font-weight: normal; + margin-right: 24px; +} + +@keyframes grow { + 0% { + transform: scale(0.3); + } + + 60% { + transform: scale(1.15); + } + + 100% { + transform: scale(1); + } +} + +@keyframes grow { + 0% { + transform: scale(0.3); + } + + 60% { + transform: scale(1.15); + } + + 100% { + transform: scale(1); + } +} + + +/* ========================================================================== +** Selects +** ======================================================================== */ + +select { + background: #fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjQzhEN0UxIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat left 10px center; + border-color: #c8d7e1; + border-style: solid; + border-radius: 4px; + border-width: 1px 1px 2px; + color: #2e4453; + cursor: pointer; + display: inline-block; + margin: 0; + outline: 0; + overflow: hidden; + font-size: 14px; + line-height: 21px; + font-weight: 600; + text-overflow: ellipsis; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + box-sizing: border-box; + /* Aligns the text to the 8px baseline grid and adds padding on right to allow for the arrow. */ + padding: 7px 14px 9px 32px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +select:hover { + background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjYThiZWNlIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); +} + +select:focus { + background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiA8dGl0bGU+YXJyb3ctZG93bjwvdGl0bGU+IDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiA8ZGVmcz48L2RlZnM+IDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPiA8ZyBpZD0iYXJyb3ctZG93biIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgZmlsbD0iIzJlNDQ1MyI+IDxwYXRoIGQ9Ik0xNS41LDYgTDE3LDcuNSBMMTAuMjUsMTQuMjUgTDMuNSw3LjUgTDUsNiBMMTAuMjUsMTEuMjUgTDE1LjUsNiBaIiBpZD0iRG93bi1BcnJvdyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=); + border-color: #00aadc; + box-shadow: 0 0 0 2px #78dcfa; + outline: 0; + -moz-outline:none; + -moz-user-focus:ignore; +} + +select:disabled, +select:hover:disabled { + background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjZTllZmYzIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat left 10px center;; +} + +select.is-compact { + min-width: 0; + padding: 0 6px 2px 20px; + margin: 0 4px; + background-position: left 5px center; + background-size: 12px 12px; +} + +/* Make it display:block when it follows a label */ +label select, +label + select { + display: block; + min-width: 200px; +} + +label select.is-compact, +label + select.is-compact { + display: inline-block; + min-width: 0; +} + +/* IE: Remove the default arrow */ +select::-ms-expand { + display: none; +} + +/* IE: Remove default background and color styles on focus */ +select::-ms-value { + background: none; + color: #2e4453; +} + +/* Firefox: Remove the focus outline, see http://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002 */ +select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #2e4453; +} + + +/* ========================================================================== +** Buttons +** ======================================================================== */ + +input[type="submit"] { + padding: 0; + font-size: 14px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + vertical-align: baseline; + background: white; + border-color: #c8d7e1; + border-style: solid; + border-width: 1px 1px 2px; + color: #2e4453; + cursor: pointer; + display: inline-block; + margin: 24px 0 0; + outline: 0; + overflow: hidden; + font-weight: 500; + text-overflow: ellipsis; + text-decoration: none; + vertical-align: top; + box-sizing: border-box; + font-size: 14px; + line-height: 21px; + border-radius: 4px; + padding: 7px 14px 9px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +input[type="submit"]:hover { + border-color: #a8bece; + color: #2e4453; +} + +input[type="submit"]:active { + border-width: 2px 1px 1px; +} + +input[type="submit"]:visited { + color: #2e4453; +} + +input[type="submit"][disabled], +input[type="submit"]:disabled { + color: #e9eff3; + background: white; + border-color: #e9eff3; + cursor: default; +} + +input[type="submit"][disabled]:active, +input[type="submit"]:disabled:active { + border-width: 1px 1px 2px; +} + +input[type="submit"]:focus { + border-color: #00aadc; + box-shadow: 0 0 0 2px #78dcfa; +} + +input[type="submit"].hidden { + display: none; +} + +input[type="submit"] .gridicon { + position: relative; + top: 4px; + margin-top: -2px; + width: 18px; + height: 18px; +} + +input[type="submit"].button-primary { + background: #00aadc; + border-color: #008ab3; + color: white; +} + +input[type="submit"].button-primary:hover, +input[type="submit"].button-primary:focus { + border-color: #005082; + color: white; +} + +input[type="submit"].button-primary[disabled], +input[type="submit"].button-primary:disabled { + background: #bceefd; + border-color: #8cc9e2; + color: white; +} + +input[type="submit"].button-primary { + color: white; +} + + +/* ========================================================================== +** Inline editor styles +** ======================================================================== */ + + +.ui-sortable-handle { + cursor: move; +} + +.grunion-section-header { + font-size: 21px; + margin-top: 32px; + font-weight: 600; +} + +.grunion-form-settings:hover { + box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; +} + +.grunion-section-header:first-child { + margin-top: 0; +} + +.grunion-type-options { + display: flex; + flex-wrap: wrap; +} + +.grunion-type { + flex-grow: 0; + flex-shrink: 0; +} + +.grunion-type select { + -webkit-appearance: none; + width: 100%; +} + +.grunion-required { + padding: 27px 16px 0 0; + flex-grow: 0; + flex-shrink: 0; +} + +.grunion-options { + padding-top: 16px; +} + +.grunion-options ol { + list-style: none; + padding: 0; + margin: 8px 0 0; +} + +.grunion-options li { + display: flex; + margin-bottom: 16px; +} + +.grunion-field-edit .grunion-options { + display: none; +} + +.delete-option, +.delete-field { + color: #0087be; + text-decoration: none; + width: 40px; + line-height: 40px; + font-size: 21px; + text-align: center; + font-weight: 600; +} + +.delete-field { + position: absolute; + top: 0; + left: 0; +} + +.grunion-controls { + display: flex; + flex-wrap: wrap; +} + +.grunion-update-controls { + text-align: left; + flex-grow: 1; +} + +#add-field { + flex-grow: 0; +} + +.delete-option:before, +.delete-field:before { + font-family: Dashicons; +/* content: "\f158"; /* This is the bolder X */ + content: "\f335"; /* This is the thinner X */ + display: inline-block; + speak: none; +} + +.grunion-field-edit.grunion-field-checkbox-multiple .grunion-options, +.grunion-field-edit.grunion-field-radio .grunion-options, +.grunion-field-edit.grunion-field-select .grunion-options { + display: block; +} + +.screen-reader-text { + position: absolute; + margin: -1px; + padding: 0; + height: 1px; + width: 1px; + overflow: hidden; + clip: rect(0 0 0 0); + border: 0; + word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ +} |