editor-inline-editing-style-rtl.css
3 years ago
editor-inline-editing-style-rtl.min.css
3 years ago
editor-inline-editing-style.css
3 years ago
editor-inline-editing-style.min.css
3 years ago
editor-style-rtl.css
3 years ago
editor-style-rtl.min.css
3 years ago
editor-style.css
3 years ago
editor-style.min.css
3 years ago
editor-ui-rtl.css
4 years ago
editor-ui-rtl.min.css
4 years ago
editor-ui.css
5 years ago
editor-ui.min.css
4 years ago
grunion-admin.css
3 years ago
grunion-rtl.css
3 years ago
grunion.css
3 years ago
jquery-ui-datepicker.css
5 years ago
jquery-ui-selectmenu.css
3 years ago
editor-inline-editing-style-rtl.css
725 lines
| 1 | @charset "UTF-8"; |
| 2 | /* ========================================================================== |
| 3 | ** Normalize |
| 4 | ** ======================================================================== */ |
| 5 | html { |
| 6 | direction: rtl; |
| 7 | } |
| 8 | |
| 9 | /* Links */ |
| 10 | a, |
| 11 | a:visited { |
| 12 | color: #0087be; |
| 13 | text-decoration: none; |
| 14 | } |
| 15 | |
| 16 | /* ========================================================================== |
| 17 | ** Card |
| 18 | ** ======================================================================= */ |
| 19 | .card, |
| 20 | body { |
| 21 | display: block; |
| 22 | position: relative; |
| 23 | margin: 0 auto 10px auto; |
| 24 | padding: 16px; |
| 25 | box-sizing: border-box; |
| 26 | background: white; |
| 27 | box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; |
| 28 | } |
| 29 | |
| 30 | body { |
| 31 | margin: 0; |
| 32 | background: #f6f7f7; |
| 33 | } |
| 34 | |
| 35 | .card:after { |
| 36 | content: "."; |
| 37 | display: block; |
| 38 | height: 0; |
| 39 | clear: both; |
| 40 | visibility: hidden; |
| 41 | } |
| 42 | |
| 43 | .card:hover, |
| 44 | .card:focus { |
| 45 | box-shadow: 0 0 0 1px #999, 0 1px 2px #e9eff3; |
| 46 | } |
| 47 | |
| 48 | .card .delete-field { |
| 49 | display: block; |
| 50 | float: left; |
| 51 | } |
| 52 | |
| 53 | @media (min-width: 481px) { |
| 54 | .card { |
| 55 | margin-bottom: 16px; |
| 56 | padding: 24px; |
| 57 | } |
| 58 | body { |
| 59 | padding: 24px; |
| 60 | } |
| 61 | } |
| 62 | .card.is-compact { |
| 63 | margin-bottom: 1px; |
| 64 | } |
| 65 | |
| 66 | @media (min-width: 481px) { |
| 67 | .card.is-compact { |
| 68 | margin-bottom: 1px; |
| 69 | padding: 16px 24px; |
| 70 | } |
| 71 | } |
| 72 | .card > div { |
| 73 | margin-top: 24px; |
| 74 | } |
| 75 | |
| 76 | .card > div:first-child { |
| 77 | margin-top: 0; |
| 78 | } |
| 79 | |
| 80 | /* ========================================================================== |
| 81 | ** Labels |
| 82 | ** ======================================================================= */ |
| 83 | label { |
| 84 | display: block; |
| 85 | font-size: 14px; |
| 86 | font-weight: 600; |
| 87 | margin-bottom: 5px; |
| 88 | margin-top: 8px; |
| 89 | } |
| 90 | |
| 91 | label:first-of-type { |
| 92 | margin-top: 4px; |
| 93 | } |
| 94 | |
| 95 | /* ========================================================================== |
| 96 | ** Text Inputs |
| 97 | ** ======================================================================= */ |
| 98 | input[type=text], |
| 99 | input[type=tel], |
| 100 | input[type=email], |
| 101 | input[type=url] { |
| 102 | border-radius: 0; |
| 103 | -webkit-appearance: none; |
| 104 | appearance: none; |
| 105 | box-sizing: border-box; |
| 106 | margin: 0; |
| 107 | padding: 7px 14px; |
| 108 | width: 100%; |
| 109 | color: #2e4453; |
| 110 | font-size: 16px; |
| 111 | line-height: 1.5; |
| 112 | border: 1px solid #c8d7e1; |
| 113 | background-color: #fff; |
| 114 | transition: all 0.15s ease-in-out; |
| 115 | box-shadow: none; |
| 116 | } |
| 117 | |
| 118 | input[type=text]::placeholder, |
| 119 | input[type=tel]::placeholder, |
| 120 | input[type=email]::placeholder, |
| 121 | input[type=url]::placeholder { |
| 122 | color: #87a6bc; |
| 123 | } |
| 124 | |
| 125 | input[type=text]:hover, |
| 126 | input[type=tel]:hover, |
| 127 | input[type=email]:hover, |
| 128 | input[type=url]:hover { |
| 129 | border-color: #a8bece; |
| 130 | } |
| 131 | |
| 132 | input[type=text]:focus, |
| 133 | input[type=tel]:focus, |
| 134 | input[type=email]:focus, |
| 135 | input[type=url]:focus { |
| 136 | border-color: #0087be; |
| 137 | outline: none; |
| 138 | box-shadow: 0 0 0 2px #78dcfa; |
| 139 | } |
| 140 | |
| 141 | input[type=text]:focus::-ms-clear, |
| 142 | input[type=tel]:focus::-ms-clear, |
| 143 | input[type=email]:focus::-ms-clear, |
| 144 | input[type=url]:focus::-ms-clear { |
| 145 | display: none; |
| 146 | } |
| 147 | |
| 148 | input[type=text]:disabled, |
| 149 | input[type=tel]:disabled, |
| 150 | input[type=email]:disabled, |
| 151 | input[type=url]:disabled { |
| 152 | background: #f3f6f8; |
| 153 | border-color: #e9eff3; |
| 154 | color: #a8bece; |
| 155 | -webkit-text-fill-color: #a8bece; |
| 156 | } |
| 157 | |
| 158 | input[type=text]:disabled:hover, |
| 159 | input[type=tel]:disabled:hover, |
| 160 | input[type=email]:disabled:hover, |
| 161 | input[type=url]:disabled:hover { |
| 162 | cursor: default; |
| 163 | } |
| 164 | |
| 165 | input[type=text]:disabled::placeholder, |
| 166 | input[type=tel]:disabled::placeholder, |
| 167 | input[type=email]:disabled::placeholder, |
| 168 | input[type=url]:disabled::placeholder { |
| 169 | color: #a8bece; |
| 170 | } |
| 171 | |
| 172 | /* ========================================================================== |
| 173 | ** Textareas |
| 174 | ** ======================================================================= */ |
| 175 | textarea { |
| 176 | border-radius: 0; |
| 177 | -webkit-appearance: none; |
| 178 | appearance: none; |
| 179 | box-sizing: border-box; |
| 180 | margin: 0; |
| 181 | padding: 7px 14px; |
| 182 | height: 92px; |
| 183 | width: 100%; |
| 184 | color: #2e4453; |
| 185 | font-size: 16px; |
| 186 | line-height: 1.5; |
| 187 | border: 1px solid #c8d7e1; |
| 188 | background-color: #fff; |
| 189 | transition: all 0.15s ease-in-out; |
| 190 | box-shadow: none; |
| 191 | } |
| 192 | |
| 193 | textarea::placeholder { |
| 194 | color: #87a6bc; |
| 195 | } |
| 196 | |
| 197 | textarea:hover { |
| 198 | border-color: #a8bece; |
| 199 | } |
| 200 | |
| 201 | textarea:focus { |
| 202 | border-color: #0087be; |
| 203 | outline: none; |
| 204 | box-shadow: 0 0 0 2px #78dcfa; |
| 205 | } |
| 206 | |
| 207 | textarea:focus::-ms-clear { |
| 208 | display: none; |
| 209 | } |
| 210 | |
| 211 | textarea:disabled { |
| 212 | background: #f3f6f8; |
| 213 | border-color: #e9eff3; |
| 214 | color: #a8bece; |
| 215 | -webkit-text-fill-color: #a8bece; |
| 216 | } |
| 217 | |
| 218 | textarea:disabled:hover { |
| 219 | cursor: default; |
| 220 | } |
| 221 | |
| 222 | textarea:disabled::placeholder { |
| 223 | color: #a8bece; |
| 224 | } |
| 225 | |
| 226 | /* ========================================================================== |
| 227 | ** Checkboxes |
| 228 | ** ======================================================================= */ |
| 229 | .checkbox, |
| 230 | input[type=checkbox] { |
| 231 | -webkit-appearance: none; |
| 232 | display: inline-block; |
| 233 | box-sizing: border-box; |
| 234 | margin: 2px 0 0; |
| 235 | padding: 7px 14px; |
| 236 | width: 16px; |
| 237 | height: 16px; |
| 238 | float: right; |
| 239 | outline: 0; |
| 240 | padding: 0; |
| 241 | box-shadow: none; |
| 242 | background-color: #fff; |
| 243 | border: 1px solid #c8d7e1; |
| 244 | color: #2e4453; |
| 245 | font-size: 16px; |
| 246 | line-height: 0; |
| 247 | text-align: center; |
| 248 | vertical-align: middle; |
| 249 | appearance: none; |
| 250 | transition: all 0.15s ease-in-out; |
| 251 | clear: none; |
| 252 | cursor: pointer; |
| 253 | } |
| 254 | |
| 255 | .checkbox:checked:before, |
| 256 | input[type=checkbox]:checked:before { |
| 257 | content: "\f147"; |
| 258 | font-family: Dashicons; |
| 259 | margin: -3px -4px 0 0; |
| 260 | float: right; |
| 261 | display: inline-block; |
| 262 | vertical-align: middle; |
| 263 | width: 16px; |
| 264 | font-size: 20px; |
| 265 | line-height: 1; |
| 266 | -webkit-font-smoothing: antialiased; |
| 267 | -moz-osx-font-smoothing: grayscale; |
| 268 | speak: none; |
| 269 | color: #00aadc; |
| 270 | } |
| 271 | |
| 272 | .checkbox:disabled:checked:before, |
| 273 | input[type=checkbox]:disabled:checked:before { |
| 274 | color: #a8bece; |
| 275 | } |
| 276 | |
| 277 | .checkbox:hover, |
| 278 | input[type=checkbox]:hover { |
| 279 | border-color: #a8bece; |
| 280 | } |
| 281 | |
| 282 | .checkbox:focus, |
| 283 | input[type=checkbox]:focus { |
| 284 | border-color: #0087be; |
| 285 | outline: none; |
| 286 | box-shadow: 0 0 0 2px #78dcfa; |
| 287 | } |
| 288 | |
| 289 | .checkbox:disabled, |
| 290 | input[type=checkbox]:disabled { |
| 291 | background: #f3f6f8; |
| 292 | border-color: #e9eff3; |
| 293 | color: #a8bece; |
| 294 | opacity: 1; |
| 295 | } |
| 296 | |
| 297 | .checkbox:disabled:hover, |
| 298 | input[type=checkbox]:disabled:hover { |
| 299 | cursor: default; |
| 300 | } |
| 301 | |
| 302 | .checkbox + span, |
| 303 | input[type=checkbox] + span { |
| 304 | display: block; |
| 305 | font-weight: normal; |
| 306 | margin-right: 24px; |
| 307 | } |
| 308 | |
| 309 | /* ========================================================================== |
| 310 | ** Radio buttons |
| 311 | ** ======================================================================== */ |
| 312 | .radio-button, |
| 313 | input[type=radio] { |
| 314 | color: #2e4453; |
| 315 | font-size: 16px; |
| 316 | border: 1px solid #c8d7e1; |
| 317 | background-color: #fff; |
| 318 | transition: all 0.15s ease-in-out; |
| 319 | box-sizing: border-box; |
| 320 | -webkit-appearance: none; |
| 321 | clear: none; |
| 322 | cursor: pointer; |
| 323 | display: inline-block; |
| 324 | line-height: 0; |
| 325 | height: 16px; |
| 326 | margin: 2px 0 0 4px; |
| 327 | float: right; |
| 328 | outline: 0; |
| 329 | padding: 0; |
| 330 | text-align: center; |
| 331 | vertical-align: middle; |
| 332 | width: 16px; |
| 333 | min-width: 16px; |
| 334 | appearance: none; |
| 335 | border-radius: 50%; |
| 336 | line-height: 10px; |
| 337 | } |
| 338 | |
| 339 | .radio-button:hover, |
| 340 | input[type=radio]:hover { |
| 341 | border-color: #a8bece; |
| 342 | } |
| 343 | |
| 344 | .radio-button:focus, |
| 345 | input[type=radio]:focus { |
| 346 | border-color: #0087be; |
| 347 | outline: none; |
| 348 | box-shadow: 0 0 0 2px #78dcfa; |
| 349 | } |
| 350 | |
| 351 | .radio-button:focus::-ms-clear, |
| 352 | input[type=radio]:focus::-ms-clear { |
| 353 | display: none; |
| 354 | } |
| 355 | |
| 356 | .radio-button:checked:before, |
| 357 | input[type=radio]:checked:before { |
| 358 | float: right; |
| 359 | display: inline-block; |
| 360 | content: "•"; |
| 361 | margin: 3px; |
| 362 | width: 8px; |
| 363 | height: 8px; |
| 364 | text-indent: -9999px; |
| 365 | background: #00aadc; |
| 366 | vertical-align: middle; |
| 367 | border-radius: 50%; |
| 368 | animation: grow 0.2s ease-in-out; |
| 369 | } |
| 370 | |
| 371 | .radio-button:disabled, |
| 372 | input[type=radio]:disabled { |
| 373 | background: #f3f6f8; |
| 374 | border-color: #e9eff3; |
| 375 | color: #a8bece; |
| 376 | opacity: 1; |
| 377 | -webkit-text-fill-color: #a8bece; |
| 378 | } |
| 379 | |
| 380 | .radio-button:disabled:hover, |
| 381 | input[type=radio]:disabled:hover { |
| 382 | cursor: default; |
| 383 | } |
| 384 | |
| 385 | .radio-button:disabled::placeholder, |
| 386 | input[type=radio]:disabled::placeholder { |
| 387 | color: #a8bece; |
| 388 | } |
| 389 | |
| 390 | .radio-button:disabled:checked::before, |
| 391 | input[type=radio]:disabled:checked:before { |
| 392 | background: #e9eff3; |
| 393 | } |
| 394 | |
| 395 | .radio-button + span, |
| 396 | input[type=radio] + span { |
| 397 | display: block; |
| 398 | font-weight: normal; |
| 399 | margin-right: 24px; |
| 400 | } |
| 401 | |
| 402 | @keyframes grow { |
| 403 | 0% { |
| 404 | transform: scale(0.3); |
| 405 | } |
| 406 | 60% { |
| 407 | transform: scale(1.15); |
| 408 | } |
| 409 | 100% { |
| 410 | transform: scale(1); |
| 411 | } |
| 412 | } |
| 413 | @keyframes grow { |
| 414 | 0% { |
| 415 | transform: scale(0.3); |
| 416 | } |
| 417 | 60% { |
| 418 | transform: scale(1.15); |
| 419 | } |
| 420 | 100% { |
| 421 | transform: scale(1); |
| 422 | } |
| 423 | } |
| 424 | /* ========================================================================== |
| 425 | ** Selects |
| 426 | ** ======================================================================== */ |
| 427 | select { |
| 428 | background: #fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjQzhEN0UxIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat left 10px center; |
| 429 | border-color: #c8d7e1; |
| 430 | border-style: solid; |
| 431 | border-radius: 4px; |
| 432 | border-width: 1px 1px 2px; |
| 433 | color: #2e4453; |
| 434 | cursor: pointer; |
| 435 | display: inline-block; |
| 436 | margin: 0; |
| 437 | outline: 0; |
| 438 | overflow: hidden; |
| 439 | font-size: 14px; |
| 440 | line-height: 21px; |
| 441 | font-weight: 600; |
| 442 | text-overflow: ellipsis; |
| 443 | text-decoration: none; |
| 444 | vertical-align: top; |
| 445 | white-space: nowrap; |
| 446 | box-sizing: border-box; |
| 447 | /* Aligns the text to the 8px baseline grid and adds padding on right to allow for the arrow. */ |
| 448 | padding: 7px 14px 9px 32px; |
| 449 | -webkit-appearance: none; |
| 450 | appearance: none; |
| 451 | } |
| 452 | |
| 453 | select:hover { |
| 454 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjYThiZWNlIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); |
| 455 | } |
| 456 | |
| 457 | select:focus { |
| 458 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiA8dGl0bGU+YXJyb3ctZG93bjwvdGl0bGU+IDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiA8ZGVmcz48L2RlZnM+IDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPiA8ZyBpZD0iYXJyb3ctZG93biIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgZmlsbD0iIzJlNDQ1MyI+IDxwYXRoIGQ9Ik0xNS41LDYgTDE3LDcuNSBMMTAuMjUsMTQuMjUgTDMuNSw3LjUgTDUsNiBMMTAuMjUsMTEuMjUgTDE1LjUsNiBaIiBpZD0iRG93bi1BcnJvdyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=); |
| 459 | border-color: #00aadc; |
| 460 | box-shadow: 0 0 0 2px #78dcfa; |
| 461 | outline: 0; |
| 462 | -moz-outline: none; |
| 463 | -moz-user-focus: ignore; |
| 464 | } |
| 465 | |
| 466 | select:disabled, |
| 467 | select:hover:disabled { |
| 468 | background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjZTllZmYzIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat left 10px center; |
| 469 | } |
| 470 | |
| 471 | select.is-compact { |
| 472 | min-width: 0; |
| 473 | padding: 0 6px 2px 20px; |
| 474 | margin: 0 4px; |
| 475 | background-position: left 5px center; |
| 476 | background-size: 12px 12px; |
| 477 | } |
| 478 | |
| 479 | /* Make it display:block when it follows a label */ |
| 480 | label select, |
| 481 | label + select { |
| 482 | display: block; |
| 483 | min-width: 200px; |
| 484 | } |
| 485 | |
| 486 | label select.is-compact, |
| 487 | label + select.is-compact { |
| 488 | display: inline-block; |
| 489 | min-width: 0; |
| 490 | } |
| 491 | |
| 492 | /* IE: Remove the default arrow */ |
| 493 | select::-ms-expand { |
| 494 | display: none; |
| 495 | } |
| 496 | |
| 497 | /* IE: Remove default background and color styles on focus */ |
| 498 | select::-ms-value { |
| 499 | background: none; |
| 500 | color: #2e4453; |
| 501 | } |
| 502 | |
| 503 | /* Firefox: Remove the focus outline, see http://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002 */ |
| 504 | select:-moz-focusring { |
| 505 | color: transparent; |
| 506 | text-shadow: 0 0 0 #2e4453; |
| 507 | } |
| 508 | |
| 509 | /* ========================================================================== |
| 510 | ** Buttons |
| 511 | ** ======================================================================== */ |
| 512 | input[type=submit] { |
| 513 | padding: 0; |
| 514 | font-size: 14px; |
| 515 | -webkit-appearance: none; |
| 516 | appearance: none; |
| 517 | vertical-align: baseline; |
| 518 | background: white; |
| 519 | border-color: #c8d7e1; |
| 520 | border-style: solid; |
| 521 | border-width: 1px 1px 2px; |
| 522 | color: #2e4453; |
| 523 | cursor: pointer; |
| 524 | display: inline-block; |
| 525 | margin: 24px 0 0; |
| 526 | outline: 0; |
| 527 | overflow: hidden; |
| 528 | font-weight: 500; |
| 529 | text-overflow: ellipsis; |
| 530 | text-decoration: none; |
| 531 | vertical-align: top; |
| 532 | box-sizing: border-box; |
| 533 | font-size: 14px; |
| 534 | line-height: 21px; |
| 535 | border-radius: 4px; |
| 536 | padding: 7px 14px 9px; |
| 537 | -webkit-appearance: none; |
| 538 | appearance: none; |
| 539 | } |
| 540 | |
| 541 | input[type=submit]:hover { |
| 542 | border-color: #a8bece; |
| 543 | color: #2e4453; |
| 544 | } |
| 545 | |
| 546 | input[type=submit]:active { |
| 547 | border-width: 2px 1px 1px; |
| 548 | } |
| 549 | |
| 550 | input[type=submit]:visited { |
| 551 | color: #2e4453; |
| 552 | } |
| 553 | |
| 554 | input[type=submit][disabled], |
| 555 | input[type=submit]:disabled { |
| 556 | color: #e9eff3; |
| 557 | background: white; |
| 558 | border-color: #e9eff3; |
| 559 | cursor: default; |
| 560 | } |
| 561 | |
| 562 | input[type=submit][disabled]:active, |
| 563 | input[type=submit]:disabled:active { |
| 564 | border-width: 1px 1px 2px; |
| 565 | } |
| 566 | |
| 567 | input[type=submit]:focus { |
| 568 | border-color: #00aadc; |
| 569 | box-shadow: 0 0 0 2px #78dcfa; |
| 570 | } |
| 571 | |
| 572 | input[type=submit].hidden { |
| 573 | display: none; |
| 574 | } |
| 575 | |
| 576 | input[type=submit] .gridicon { |
| 577 | position: relative; |
| 578 | top: 4px; |
| 579 | margin-top: -2px; |
| 580 | width: 18px; |
| 581 | height: 18px; |
| 582 | } |
| 583 | |
| 584 | input[type=submit].button-primary { |
| 585 | background: #00aadc; |
| 586 | border-color: #008ab3; |
| 587 | color: white; |
| 588 | } |
| 589 | |
| 590 | input[type=submit].button-primary:hover, |
| 591 | input[type=submit].button-primary:focus { |
| 592 | border-color: #005082; |
| 593 | color: white; |
| 594 | } |
| 595 | |
| 596 | input[type=submit].button-primary[disabled], |
| 597 | input[type=submit].button-primary:disabled { |
| 598 | background: #bceefd; |
| 599 | border-color: #8cc9e2; |
| 600 | color: white; |
| 601 | } |
| 602 | |
| 603 | input[type=submit].button-primary { |
| 604 | color: white; |
| 605 | } |
| 606 | |
| 607 | /* ========================================================================== |
| 608 | ** Inline editor styles |
| 609 | ** ======================================================================== */ |
| 610 | .ui-sortable-handle { |
| 611 | cursor: move; |
| 612 | } |
| 613 | |
| 614 | .grunion-section-header { |
| 615 | font-size: 21px; |
| 616 | margin-top: 32px; |
| 617 | font-weight: 600; |
| 618 | } |
| 619 | |
| 620 | .grunion-form-settings:hover { |
| 621 | box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; |
| 622 | } |
| 623 | |
| 624 | .grunion-section-header:first-child { |
| 625 | margin-top: 0; |
| 626 | } |
| 627 | |
| 628 | .grunion-type-options { |
| 629 | display: flex; |
| 630 | flex-wrap: wrap; |
| 631 | } |
| 632 | |
| 633 | .grunion-type { |
| 634 | flex-grow: 0; |
| 635 | flex-shrink: 0; |
| 636 | } |
| 637 | |
| 638 | .grunion-type select { |
| 639 | -webkit-appearance: none; |
| 640 | width: 100%; |
| 641 | } |
| 642 | |
| 643 | .grunion-required { |
| 644 | padding: 27px 16px 0 0; |
| 645 | flex-grow: 0; |
| 646 | flex-shrink: 0; |
| 647 | } |
| 648 | |
| 649 | .grunion-options { |
| 650 | padding-top: 16px; |
| 651 | } |
| 652 | |
| 653 | .grunion-options ol { |
| 654 | list-style: none; |
| 655 | padding: 0; |
| 656 | margin: 8px 0 0; |
| 657 | } |
| 658 | |
| 659 | .grunion-options li { |
| 660 | display: flex; |
| 661 | margin-bottom: 16px; |
| 662 | } |
| 663 | |
| 664 | .grunion-field-edit .grunion-options { |
| 665 | display: none; |
| 666 | } |
| 667 | |
| 668 | .delete-option, |
| 669 | .delete-field { |
| 670 | color: #0087be; |
| 671 | text-decoration: none; |
| 672 | width: 40px; |
| 673 | line-height: 40px; |
| 674 | font-size: 21px; |
| 675 | text-align: center; |
| 676 | font-weight: 600; |
| 677 | } |
| 678 | |
| 679 | .delete-field { |
| 680 | position: absolute; |
| 681 | top: 0; |
| 682 | left: 0; |
| 683 | } |
| 684 | |
| 685 | .grunion-controls { |
| 686 | display: flex; |
| 687 | flex-wrap: wrap; |
| 688 | } |
| 689 | |
| 690 | .grunion-update-controls { |
| 691 | text-align: left; |
| 692 | flex-grow: 1; |
| 693 | } |
| 694 | |
| 695 | #add-field { |
| 696 | flex-grow: 0; |
| 697 | } |
| 698 | |
| 699 | .delete-option:before, |
| 700 | .delete-field:before { |
| 701 | font-family: Dashicons; |
| 702 | /* content: "\f158"; /* This is the bolder X */ |
| 703 | content: "\f335"; /* This is the thinner X */ |
| 704 | display: inline-block; |
| 705 | speak: none; |
| 706 | } |
| 707 | |
| 708 | .grunion-field-edit.grunion-field-checkbox-multiple .grunion-options, |
| 709 | .grunion-field-edit.grunion-field-radio .grunion-options, |
| 710 | .grunion-field-edit.grunion-field-select .grunion-options { |
| 711 | display: block; |
| 712 | } |
| 713 | |
| 714 | .screen-reader-text { |
| 715 | position: absolute; |
| 716 | margin: -1px; |
| 717 | padding: 0; |
| 718 | height: 1px; |
| 719 | width: 1px; |
| 720 | overflow: hidden; |
| 721 | clip: rect(0 0 0 0); |
| 722 | border: 0; |
| 723 | word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ |
| 724 | } |
| 725 |