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