OLD | NEW |
1 html { | 1 html { |
2 height: 100%; | 2 height: 100%; |
3 } | 3 } |
4 | 4 |
5 body { | 5 body { |
6 background: white; | 6 background: white; |
7 display: -webkit-box; | 7 display: -webkit-box; |
8 height: 100%; | 8 height: 100%; |
9 margin: 0; | 9 margin: 0; |
10 overflow: hidden; | 10 overflow: hidden; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 border-radius: 3px; | 209 border-radius: 3px; |
210 border: 1px solid #a0a0a0; | 210 border: 1px solid #a0a0a0; |
211 cursor: default; | 211 cursor: default; |
212 font-size: 13px; | 212 font-size: 13px; |
213 font-weight: 400; | 213 font-weight: 400; |
214 margin: 0; | 214 margin: 0; |
215 padding: 4px 14px; | 215 padding: 4px 14px; |
216 text-shadow: 0 1px 0 rgba(255, 255, 255, .5); | 216 text-shadow: 0 1px 0 rgba(255, 255, 255, .5); |
217 } | 217 } |
218 | 218 |
| 219 button.loading { |
| 220 cursor: progress; |
| 221 } |
| 222 |
219 button.default { | 223 button.default { |
220 -webkit-padding-end: 21px; | 224 -webkit-padding-end: 21px; |
221 -webkit-padding-start: 21px; | 225 -webkit-padding-start: 21px; |
222 border-color: #808080; | 226 border-color: #808080; |
223 border-width: 2px; | 227 border-width: 2px; |
224 font-weight: 600; | 228 font-weight: 600; |
225 } | 229 } |
226 | 230 |
227 button.default:disabled { | 231 button.default:disabled { |
228 border-color: #a0a0a0; | 232 border-color: #a0a0a0; |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 -webkit-padding-start: 14px; | 503 -webkit-padding-start: 14px; |
500 -webkit-user-select: none; | 504 -webkit-user-select: none; |
501 background-image: url('./print_preview/black_arrow.png'), | 505 background-image: url('./print_preview/black_arrow.png'), |
502 -webkit-linear-gradient(#fafafa, #dcdcdc); | 506 -webkit-linear-gradient(#fafafa, #dcdcdc); |
503 background-position: 95% 55%, left top; | 507 background-position: 95% 55%, left top; |
504 background-repeat: no-repeat, repeat; | 508 background-repeat: no-repeat, repeat; |
505 border-radius: 3px; | 509 border-radius: 3px; |
506 border: 1px solid #a0a0a0; | 510 border: 1px solid #a0a0a0; |
507 font-size: 13px; | 511 font-size: 13px; |
508 font-weight: 400; | 512 font-weight: 400; |
| 513 margin-bottom: 0; |
| 514 margin-top: 0; |
509 outline: 0; | 515 outline: 0; |
510 padding-bottom: 3px; | 516 padding-bottom: 3px; |
511 padding-top: 3px; | 517 padding-top: 3px; |
512 text-shadow: 0 1px 0 rgba(255, 255, 255, .5); | 518 text-shadow: 0 1px 0 rgba(255, 255, 255, .5); |
513 width: 100%; | 519 width: 100%; |
514 } | 520 } |
515 | 521 |
516 html[dir='rtl'] select { | 522 html[dir='rtl'] select { |
517 background-position: 5% 55%, right top; | 523 background-position: 5% 55%, right top; |
518 } | 524 } |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 -webkit-animation-delay: 300ms; | 722 -webkit-animation-delay: 300ms; |
717 } | 723 } |
718 | 724 |
719 #two-sided-div { | 725 #two-sided-div { |
720 margin-top: 10px; | 726 margin-top: 10px; |
721 } | 727 } |
722 | 728 |
723 input[disabled] + label { | 729 input[disabled] + label { |
724 color: gray; | 730 color: gray; |
725 } | 731 } |
OLD | NEW |