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