| OLD | NEW |
| 1 html { | 1 html { |
| 2 height: 100%; | 2 height: 100%; |
| 3 } | 3 } |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 height: 100%; | 6 height: 100%; |
| 7 width: 100%; | 7 width: 100%; |
| 8 position: relative; | 8 position: relative; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 margin: 0; | 10 margin: 0; |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 body /deep/ input, | 138 body /deep/ input, |
| 139 body /deep/ select { | 139 body /deep/ select { |
| 140 font-family: inherit; | 140 font-family: inherit; |
| 141 font-size: inherit; | 141 font-size: inherit; |
| 142 } | 142 } |
| 143 | 143 |
| 144 body /deep/ input[type="search"]:focus, | 144 body /deep/ input[type="search"]:focus, |
| 145 body /deep/ input[type="text"]:focus { | 145 body /deep/ input[type="text"]:focus { |
| 146 outline: auto 5px -webkit-focus-ring-color; | 146 outline: auto 5px -webkit-focus-ring-color; |
| 147 } | 147 } |
| 148 | |
| 149 body /deep/ input[type="checkbox"] { | |
| 150 height: 12px; | |
| 151 width: 12px; | |
| 152 margin: auto 3px; | |
| 153 flex-shrink: 0; | |
| 154 } | |
| OLD | NEW |