| OLD | NEW |
| 1 .hbox { | 1 .hbox { |
| 2 display: -webkit-box; | 2 display: -webkit-box; |
| 3 -webkit-box-orient: horizontal; | 3 -webkit-box-orient: horizontal; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .vbox { | 6 .vbox { |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 /* | 52 /* |
| 53 * Override the font-size rule in shared_options.css file. | 53 * Override the font-size rule in shared_options.css file. |
| 54 * 16 px font-size proved to be more touch friendly. It increases the touchable | 54 * 16 px font-size proved to be more touch friendly. It increases the touchable |
| 55 * area for buttons and input boxes. | 55 * area for buttons and input boxes. |
| 56 */ | 56 */ |
| 57 body { | 57 body { |
| 58 font-size: 16px; | 58 font-size: 16px; |
| 59 } | 59 } |
| 60 </if> | 60 </if> |
| 61 | 61 |
| 62 | |
| 63 .overlay { | 62 .overlay { |
| 64 -webkit-box-align: center; | 63 -webkit-box-align: center; |
| 65 -webkit-box-orient: vertical; | 64 -webkit-box-orient: vertical; |
| 66 -webkit-box-pack: center; | 65 -webkit-box-pack: center; |
| 67 -webkit-transition: 0.25s opacity; | 66 -webkit-transition: 0.25s opacity; |
| 68 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), | 67 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), |
| 69 rgba(127, 127, 127, 0.5) 35%, | 68 rgba(127, 127, 127, 0.5) 35%, |
| 70 rgba(0, 0, 0, 0.7)); | 69 rgba(0, 0, 0, 0.7)); |
| 71 bottom: 0; | 70 bottom: 0; |
| 72 display: -webkit-box; | 71 display: -webkit-box; |
| (...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 .displaytable > section > * { | 602 .displaytable > section > * { |
| 604 display: table-cell; | 603 display: table-cell; |
| 605 vertical-align: baseline; | 604 vertical-align: baseline; |
| 606 border-bottom: 1px solid #eeeeee; | 605 border-bottom: 1px solid #eeeeee; |
| 607 } | 606 } |
| 608 | 607 |
| 609 /* do not display a border after the last section in the table */ | 608 /* do not display a border after the last section in the table */ |
| 610 .displaytable:not([searching='true']) > section:last-child > * { | 609 .displaytable:not([searching='true']) > section:last-child > * { |
| 611 border-bottom: none; | 610 border-bottom: none; |
| 612 } | 611 } |
| OLD | NEW |