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