| OLD | NEW |
| 1 body { | 1 body { |
| 2 cursor: default; | 2 cursor: default; |
| 3 font-size: 100%; | 3 font-size: 100%; |
| 4 } | 4 } |
| 5 | 5 |
| 6 #settings-title { | 6 #settings-title { |
| 7 -webkit-padding-end: 24px; | 7 -webkit-padding-end: 24px; |
| 8 color: #53637d; | 8 color: #53637d; |
| 9 cursor: pointer; | 9 cursor: pointer; |
| 10 font-size: 200%; | 10 font-size: 200%; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 html[dir='rtl'] .close-subpage { | 78 html[dir='rtl'] .close-subpage { |
| 79 float: left; | 79 float: left; |
| 80 left: 0; | 80 left: 0; |
| 81 } | 81 } |
| 82 | 82 |
| 83 html[hide-menu=true] .close-subpage { | 83 html[hide-menu=true] .close-subpage { |
| 84 display: none | 84 display: none |
| 85 } | 85 } |
| 86 | 86 |
| 87 .content-area { |
| 88 padding: 10px 15px 5px 15px; |
| 89 } |
| 90 |
| 87 .action-area { | 91 .action-area { |
| 88 -webkit-box-align: center; | 92 -webkit-box-align: center; |
| 89 -webkit-box-orient: horizontal; | 93 -webkit-box-orient: horizontal; |
| 90 bottom: 0; | 94 border-top: 1px solid rgba(188, 193, 208, .5); |
| 91 display: -webkit-box; | 95 display: -webkit-box; |
| 92 padding: 12px; | 96 padding: 12px; |
| 93 position: absolute; | |
| 94 right: 0; | |
| 95 } | 97 } |
| 96 | 98 |
| 97 html[dir='rtl'] .action-area { | 99 html[dir='rtl'] .action-area { |
| 98 left: 0; | 100 left: 0; |
| 99 } | 101 } |
| 100 | 102 |
| 103 .action-area-left { |
| 104 -webkit-box-flex: 1; |
| 105 display: -webkit-box; |
| 106 } |
| 107 |
| 101 .button-strip { | 108 .button-strip { |
| 102 -webkit-box-orient: horizontal; | 109 -webkit-box-orient: horizontal; |
| 103 display: -webkit-box; | 110 display: -webkit-box; |
| 104 } | 111 } |
| 105 | 112 |
| 106 html[toolkit=views] .button-strip { | 113 html[toolkit=views] .button-strip { |
| 107 -webkit-box-direction: reverse; | 114 -webkit-box-direction: reverse; |
| 108 } | 115 } |
| 109 | 116 |
| 110 .button-strip > button { | 117 .button-strip > button { |
| 111 -webkit-margin-start: 10px; | 118 -webkit-margin-start: 10px; |
| 112 display: block; | 119 display: block; |
| 113 } | 120 } |
| 114 | 121 |
| 115 .overlay .page { | 122 .overlay .page { |
| 116 -webkit-box-shadow: 3px 3px 3px #666; | 123 -webkit-box-shadow: 0px 0px 40px -5px #888; |
| 117 background: white; | 124 background: white; |
| 118 border: 1px solid #666; | 125 border: 1px solid rgb(188, 193, 208); |
| 119 border-radius: 5px; | 126 border-radius: 2px; |
| 120 min-width: 400px; | 127 min-width: 400px; |
| 121 padding: 0 15px 50px 15px; | 128 padding: 0; |
| 122 position: relative; | 129 position: relative; |
| 123 } | 130 } |
| 124 | 131 |
| 125 #navbar { | 132 #navbar { |
| 126 margin: 0; | 133 margin: 0; |
| 127 } | 134 } |
| 128 | 135 |
| 129 #navbar-container { | 136 #navbar-container { |
| 130 -webkit-border-end: 1px solid #c6c9ce; | 137 -webkit-border-end: 1px solid #c6c9ce; |
| 131 background: -webkit-linear-gradient(rgba(234, 238, 243, 0), #eaeef3), | 138 background: -webkit-linear-gradient(rgba(234, 238, 243, 0), #eaeef3), |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 } | 654 } |
| 648 | 655 |
| 649 html[os=mac] label > input[type=checkbox], | 656 html[os=mac] label > input[type=checkbox], |
| 650 html[os=mac] label > input[type=radio] { | 657 html[os=mac] label > input[type=radio] { |
| 651 margin-top: 2px; | 658 margin-top: 2px; |
| 652 } | 659 } |
| 653 | 660 |
| 654 .suboption { | 661 .suboption { |
| 655 -webkit-margin-start: 16px; | 662 -webkit-margin-start: 16px; |
| 656 } | 663 } |
| OLD | NEW |