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