editor-inline-editing-style-rtl.css
2 years ago
editor-inline-editing-style-rtl.min.css
2 years ago
editor-inline-editing-style.css
3 years ago
editor-inline-editing-style.min.css
2 years ago
editor-style-rtl.css
2 years ago
editor-style-rtl.min.css
2 years ago
editor-style.css
3 years ago
editor-style.min.css
2 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-style.css
544 lines
| 1 | /* ========================================================================== |
| 2 | ** Card |
| 3 | ** ======================================================================= */ |
| 4 | |
| 5 | .card { |
| 6 | display: block; |
| 7 | position: relative; |
| 8 | margin: 0 auto; |
| 9 | padding: 16px; |
| 10 | box-sizing: border-box; |
| 11 | background: white; |
| 12 | box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; |
| 13 | } |
| 14 | |
| 15 | .card:after { |
| 16 | content: "."; |
| 17 | display: block; |
| 18 | height: 0; |
| 19 | clear: both; |
| 20 | visibility: hidden; |
| 21 | } |
| 22 | |
| 23 | @media ( min-width: 481px ) { |
| 24 | .card { |
| 25 | padding: 24px; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | .card > div { |
| 30 | margin-top: 24px; |
| 31 | } |
| 32 | |
| 33 | .card > div:first-child { |
| 34 | margin-top: 0; |
| 35 | } |
| 36 | |
| 37 | |
| 38 | /* ========================================================================== |
| 39 | ** Labels |
| 40 | ** ======================================================================= */ |
| 41 | |
| 42 | label { |
| 43 | display: block; |
| 44 | font-size: 14px; |
| 45 | font-weight: 600; |
| 46 | margin-bottom: 5px; |
| 47 | } |
| 48 | |
| 49 | |
| 50 | /* ========================================================================== |
| 51 | ** Text Inputs |
| 52 | ** ======================================================================= */ |
| 53 | |
| 54 | input[type="text"], |
| 55 | input[type="tel"], |
| 56 | input[type="email"], |
| 57 | input[type="url"] { |
| 58 | border-radius: 0; |
| 59 | appearance: none; |
| 60 | box-sizing: border-box; |
| 61 | margin: 0; |
| 62 | padding: 7px 14px; |
| 63 | width: 100%; |
| 64 | color: #2e4453; |
| 65 | font-size: 16px; |
| 66 | line-height: 1.5; |
| 67 | border: 1px solid #c8d7e1; |
| 68 | background-color: #fff; |
| 69 | transition: all .15s ease-in-out; |
| 70 | box-shadow: none; |
| 71 | } |
| 72 | |
| 73 | input[type="text"]::placeholder, |
| 74 | input[type="tel"]::placeholder, |
| 75 | input[type="email"]::placeholder, |
| 76 | input[type="url"]::placeholder { |
| 77 | color: #87a6bc; |
| 78 | } |
| 79 | |
| 80 | input[type="text"]:hover, |
| 81 | input[type="tel"]:hover, |
| 82 | input[type="email"]:hover, |
| 83 | input[type="url"]:hover { |
| 84 | border-color: #a8bece; |
| 85 | } |
| 86 | |
| 87 | input[type="text"]:focus, |
| 88 | input[type="tel"]:focus, |
| 89 | input[type="email"]:focus, |
| 90 | input[type="url"]:focus { |
| 91 | border-color: #0087be; |
| 92 | outline: none; |
| 93 | box-shadow: 0 0 0 2px #78dcfa; |
| 94 | } |
| 95 | |
| 96 | input[type="text"]:focus::-ms-clear, |
| 97 | input[type="tel"]:focus::-ms-clear, |
| 98 | input[type="email"]:focus::-ms-clear, |
| 99 | input[type="url"]:focus::-ms-clear { |
| 100 | display: none; |
| 101 | } |
| 102 | |
| 103 | input[type="text"]:disabled, |
| 104 | input[type="tel"]:disabled, |
| 105 | input[type="email"]:disabled, |
| 106 | input[type="url"]:disabled { |
| 107 | background: #f3f6f8; |
| 108 | border-color: #e9eff3; |
| 109 | color: #a8bece; |
| 110 | -webkit-text-fill-color: #a8bece; |
| 111 | } |
| 112 | |
| 113 | input[type="text"]:disabled:hover, |
| 114 | input[type="tel"]:disabled:hover, |
| 115 | input[type="email"]:disabled:hover, |
| 116 | input[type="url"]:disabled:hover { |
| 117 | cursor: default; |
| 118 | } |
| 119 | |
| 120 | input[type="text"]:disabled::placeholder, |
| 121 | input[type="tel"]:disabled::placeholder, |
| 122 | input[type="email"]:disabled::placeholder, |
| 123 | input[type="url"]:disabled::placeholder { |
| 124 | color: #a8bece; |
| 125 | } |
| 126 | |
| 127 | |
| 128 | /* ========================================================================== |
| 129 | ** Textareas |
| 130 | ** ======================================================================= */ |
| 131 | |
| 132 | textarea { |
| 133 | border-radius: 0; |
| 134 | appearance: none; |
| 135 | box-sizing: border-box; |
| 136 | margin: 0; |
| 137 | padding: 7px 14px; |
| 138 | height: 92px; |
| 139 | width: 100%; |
| 140 | color: #2e4453; |
| 141 | font-size: 16px; |
| 142 | line-height: 1.5; |
| 143 | border: 1px solid #c8d7e1; |
| 144 | background-color: #fff; |
| 145 | transition: all .15s ease-in-out; |
| 146 | box-shadow: none; |
| 147 | } |
| 148 | |
| 149 | textarea::placeholder { |
| 150 | color: #87a6bc; |
| 151 | } |
| 152 | |
| 153 | textarea:hover { |
| 154 | border-color: #a8bece; |
| 155 | } |
| 156 | |
| 157 | textarea:focus { |
| 158 | border-color: #0087be; |
| 159 | outline: none; |
| 160 | box-shadow: 0 0 0 2px #78dcfa; |
| 161 | } |
| 162 | |
| 163 | textarea:focus::-ms-clear { |
| 164 | display: none; |
| 165 | } |
| 166 | |
| 167 | textarea:disabled { |
| 168 | background: #f3f6f8; |
| 169 | border-color: #e9eff3; |
| 170 | color: #a8bece; |
| 171 | -webkit-text-fill-color: #a8bece; |
| 172 | } |
| 173 | |
| 174 | textarea:disabled:hover { |
| 175 | cursor: default; |
| 176 | } |
| 177 | |
| 178 | textarea:disabled::placeholder { |
| 179 | color: #a8bece; |
| 180 | } |
| 181 | |
| 182 | |
| 183 | /* ========================================================================== |
| 184 | ** Checkboxes |
| 185 | ** ======================================================================= */ |
| 186 | |
| 187 | input[type="checkbox"] { |
| 188 | -webkit-appearance: none; |
| 189 | display: inline-block; |
| 190 | box-sizing: border-box; |
| 191 | margin: 2px 0 0; |
| 192 | padding: 7px 14px; |
| 193 | width: 16px; |
| 194 | height: 16px; |
| 195 | float: left; |
| 196 | outline: 0; |
| 197 | padding: 0; |
| 198 | box-shadow: none; |
| 199 | background-color: #fff; |
| 200 | border: 1px solid #c8d7e1; |
| 201 | color: #2e4453; |
| 202 | font-size: 16px; |
| 203 | line-height: 0; |
| 204 | text-align: center; |
| 205 | vertical-align: middle; |
| 206 | appearance: none; |
| 207 | transition: all .15s ease-in-out; |
| 208 | clear: none; |
| 209 | cursor: pointer; |
| 210 | } |
| 211 | |
| 212 | input[type="checkbox"]:checked:before { |
| 213 | content: '\f147'; |
| 214 | font-family: Dashicons; |
| 215 | margin: -3px 0 0 -4px; |
| 216 | float: left; |
| 217 | display: inline-block; |
| 218 | vertical-align: middle; |
| 219 | width: 16px; |
| 220 | font-size: 20px; |
| 221 | line-height: 1; |
| 222 | -webkit-font-smoothing: antialiased; |
| 223 | -moz-osx-font-smoothing: grayscale; |
| 224 | speak: none; |
| 225 | color: #00aadc; |
| 226 | } |
| 227 | |
| 228 | input[type="checkbox"]:disabled:checked:before { |
| 229 | color: #a8bece; |
| 230 | } |
| 231 | |
| 232 | input[type="checkbox"]:hover { |
| 233 | border-color: #a8bece; |
| 234 | } |
| 235 | |
| 236 | input[type="checkbox"]:focus { |
| 237 | border-color: #0087be; |
| 238 | outline: none; |
| 239 | box-shadow: 0 0 0 2px #78dcfa; |
| 240 | } |
| 241 | |
| 242 | input[type="checkbox"]:disabled { |
| 243 | background: #f3f6f8; |
| 244 | border-color: #e9eff3; |
| 245 | color: #a8bece; |
| 246 | opacity: 1; |
| 247 | } |
| 248 | |
| 249 | input[type="checkbox"]:disabled:hover { |
| 250 | cursor: default; |
| 251 | } |
| 252 | |
| 253 | input[type="checkbox"] + span { |
| 254 | display: block; |
| 255 | font-weight: normal; |
| 256 | margin-left: 24px; |
| 257 | } |
| 258 | |
| 259 | |
| 260 | /* ========================================================================== |
| 261 | ** Radio buttons |
| 262 | ** ======================================================================== */ |
| 263 | |
| 264 | input[type=radio] { |
| 265 | color: #2e4453; |
| 266 | font-size: 16px; |
| 267 | border: 1px solid #c8d7e1; |
| 268 | background-color: #fff; |
| 269 | transition: all .15s ease-in-out; |
| 270 | box-sizing: border-box; |
| 271 | -webkit-appearance: none; |
| 272 | clear: none; |
| 273 | cursor: pointer; |
| 274 | display: inline-block; |
| 275 | line-height: 0; |
| 276 | height: 16px; |
| 277 | margin: 2px 4px 0 0; |
| 278 | float: left; |
| 279 | outline: 0; |
| 280 | padding: 0; |
| 281 | text-align: center; |
| 282 | vertical-align: middle; |
| 283 | width: 16px; |
| 284 | min-width: 16px; |
| 285 | appearance: none; |
| 286 | border-radius: 50%; |
| 287 | line-height: 10px; |
| 288 | } |
| 289 | |
| 290 | input[type="radio"]:hover { |
| 291 | border-color: #a8bece; |
| 292 | } |
| 293 | |
| 294 | input[type="radio"]:focus { |
| 295 | border-color: #0087be; |
| 296 | outline: none; |
| 297 | box-shadow: 0 0 0 2px #78dcfa; |
| 298 | } |
| 299 | |
| 300 | input[type="radio"]:focus::-ms-clear { |
| 301 | display: none; |
| 302 | } |
| 303 | |
| 304 | input[type="radio"]:checked:before { |
| 305 | float: left; |
| 306 | display: inline-block; |
| 307 | content: '\2022'; |
| 308 | margin: 3px; |
| 309 | width: 8px; |
| 310 | height: 8px; |
| 311 | text-indent: -9999px; |
| 312 | background: #00aadc; |
| 313 | vertical-align: middle; |
| 314 | border-radius: 50%; |
| 315 | animation: grow .2s ease-in-out; |
| 316 | } |
| 317 | |
| 318 | input[type="radio"]:disabled { |
| 319 | background: #f3f6f8; |
| 320 | border-color: #e9eff3; |
| 321 | color: #a8bece; |
| 322 | opacity: 1; |
| 323 | -webkit-text-fill-color: #a8bece; |
| 324 | } |
| 325 | |
| 326 | input[type="radio"]:disabled:hover { |
| 327 | cursor: default; |
| 328 | } |
| 329 | |
| 330 | input[type="radio"]:disabled::placeholder { |
| 331 | color: #a8bece; |
| 332 | } |
| 333 | |
| 334 | input[type="radio"]:disabled:checked:before { |
| 335 | background: #e9eff3; |
| 336 | } |
| 337 | |
| 338 | input[type="radio"] + span { |
| 339 | display: block; |
| 340 | font-weight: normal; |
| 341 | margin-left: 24px; |
| 342 | } |
| 343 | |
| 344 | @keyframes grow { |
| 345 | 0% { |
| 346 | transform: scale(0.3); |
| 347 | } |
| 348 | |
| 349 | 60% { |
| 350 | transform: scale(1.15); |
| 351 | } |
| 352 | |
| 353 | 100% { |
| 354 | transform: scale(1); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | @keyframes grow { |
| 359 | 0% { |
| 360 | transform: scale(0.3); |
| 361 | } |
| 362 | |
| 363 | 60% { |
| 364 | transform: scale(1.15); |
| 365 | } |
| 366 | |
| 367 | 100% { |
| 368 | transform: scale(1); |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | |
| 373 | /* ========================================================================== |
| 374 | ** Selects |
| 375 | ** ======================================================================== */ |
| 376 | |
| 377 | select { |
| 378 | background: #fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjQzhEN0UxIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat right 10px center; |
| 379 | border-color: #c8d7e1; |
| 380 | border-style: solid; |
| 381 | border-radius: 4px; |
| 382 | border-width: 1px 1px 2px; |
| 383 | color: #2e4453; |
| 384 | cursor: pointer; |
| 385 | display: inline-block; |
| 386 | margin: 0; |
| 387 | outline: 0; |
| 388 | overflow: hidden; |
| 389 | font-size: 14px; |
| 390 | line-height: 21px; |
| 391 | font-weight: 600; |
| 392 | text-overflow: ellipsis; |
| 393 | text-decoration: none; |
| 394 | vertical-align: top; |
| 395 | white-space: nowrap; |
| 396 | box-sizing: border-box; |
| 397 | /* Aligns the text to the 8px baseline grid and adds padding on right to allow for the arrow. */ |
| 398 | padding: 7px 32px 9px 14px; |
| 399 | -webkit-appearance: none; |
| 400 | -moz-appearance: none; |
| 401 | appearance: none; |
| 402 | } |
| 403 | |
| 404 | select:hover { |
| 405 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjYThiZWNlIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==); |
| 406 | } |
| 407 | |
| 408 | select:focus { |
| 409 | background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiA8dGl0bGU+YXJyb3ctZG93bjwvdGl0bGU+IDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiA8ZGVmcz48L2RlZnM+IDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPiA8ZyBpZD0iYXJyb3ctZG93biIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgZmlsbD0iIzJlNDQ1MyI+IDxwYXRoIGQ9Ik0xNS41LDYgTDE3LDcuNSBMMTAuMjUsMTQuMjUgTDMuNSw3LjUgTDUsNiBMMTAuMjUsMTEuMjUgTDE1LjUsNiBaIiBpZD0iRG93bi1BcnJvdyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=); |
| 410 | border-color: #00aadc; |
| 411 | box-shadow: 0 0 0 2px #78dcfa; |
| 412 | outline: 0; |
| 413 | -moz-outline:none; |
| 414 | -moz-user-focus:ignore; |
| 415 | } |
| 416 | |
| 417 | select:disabled, |
| 418 | select:hover:disabled { |
| 419 | background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjZTllZmYzIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat right 10px center;; |
| 420 | } |
| 421 | |
| 422 | select.is-compact { |
| 423 | min-width: 0; |
| 424 | padding: 0 20px 2px 6px; |
| 425 | margin: 0 4px; |
| 426 | background-position: right 5px center; |
| 427 | background-size: 12px 12px; |
| 428 | } |
| 429 | |
| 430 | /* Make it display:block when it follows a label */ |
| 431 | label select, |
| 432 | label + select { |
| 433 | display: block; |
| 434 | min-width: 200px; |
| 435 | } |
| 436 | |
| 437 | label select.is-compact, |
| 438 | label + select.is-compact { |
| 439 | display: inline-block; |
| 440 | min-width: 0; |
| 441 | } |
| 442 | |
| 443 | /* IE: Remove the default arrow */ |
| 444 | select::-ms-expand { |
| 445 | display: none; |
| 446 | } |
| 447 | |
| 448 | /* IE: Remove default background and color styles on focus */ |
| 449 | select::-ms-value { |
| 450 | background: none; |
| 451 | color: #2e4453; |
| 452 | } |
| 453 | |
| 454 | /* Firefox: Remove the focus outline, see http://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002 */ |
| 455 | select:-moz-focusring { |
| 456 | color: transparent; |
| 457 | text-shadow: 0 0 0 #2e4453; |
| 458 | } |
| 459 | |
| 460 | |
| 461 | /* ========================================================================== |
| 462 | ** Buttons |
| 463 | ** ======================================================================== */ |
| 464 | |
| 465 | input[type="submit"] { |
| 466 | padding: 0; |
| 467 | font-size: 14px; |
| 468 | -webkit-appearance: none; |
| 469 | -moz-appearance: none; |
| 470 | appearance: none; |
| 471 | vertical-align: baseline; |
| 472 | background: white; |
| 473 | border-color: #c8d7e1; |
| 474 | border-style: solid; |
| 475 | border-width: 1px 1px 2px; |
| 476 | color: #2e4453; |
| 477 | cursor: pointer; |
| 478 | display: inline-block; |
| 479 | margin: 24px 0 0; |
| 480 | outline: 0; |
| 481 | overflow: hidden; |
| 482 | font-weight: 500; |
| 483 | text-overflow: ellipsis; |
| 484 | text-decoration: none; |
| 485 | vertical-align: top; |
| 486 | box-sizing: border-box; |
| 487 | font-size: 14px; |
| 488 | line-height: 21px; |
| 489 | border-radius: 4px; |
| 490 | padding: 7px 14px 9px; |
| 491 | -webkit-appearance: none; |
| 492 | -moz-appearance: none; |
| 493 | appearance: none; |
| 494 | } |
| 495 | |
| 496 | input[type="submit"]:hover { |
| 497 | border-color: #a8bece; |
| 498 | color: #2e4453; |
| 499 | } |
| 500 | |
| 501 | input[type="submit"]:active { |
| 502 | border-width: 2px 1px 1px; |
| 503 | } |
| 504 | |
| 505 | input[type="submit"]:visited { |
| 506 | color: #2e4453; |
| 507 | } |
| 508 | |
| 509 | input[type="submit"][disabled], |
| 510 | input[type="submit"]:disabled { |
| 511 | color: #e9eff3; |
| 512 | background: white; |
| 513 | border-color: #e9eff3; |
| 514 | cursor: default; |
| 515 | } |
| 516 | |
| 517 | input[type="submit"][disabled]:active, |
| 518 | input[type="submit"]:disabled:active { |
| 519 | border-width: 1px 1px 2px; |
| 520 | } |
| 521 | |
| 522 | input[type="submit"]:focus { |
| 523 | border-color: #00aadc; |
| 524 | box-shadow: 0 0 0 2px #78dcfa; |
| 525 | } |
| 526 | |
| 527 | /* ========================================================================== |
| 528 | ** Preview styles |
| 529 | ** ======================================================================== */ |
| 530 | |
| 531 | .wpview.wpview-wrap[data-wpview-type=contact-form] iframe.inline-edit-contact-form { |
| 532 | width: 100%; |
| 533 | min-height: 500px; |
| 534 | border: 0; |
| 535 | overflow: hidden; |
| 536 | margin-bottom: 0; |
| 537 | display: block; |
| 538 | } |
| 539 | |
| 540 | .contact-submit.contact-submit { |
| 541 | margin-top: 0; |
| 542 | margin-bottom: 0; |
| 543 | } |
| 544 |