Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 body /deep/ * { | |
|
pfeldman
2015/04/06 10:25:57
- Do you think this affects enterprise sites as mu
| |
| 2 /* This is required for correct sizing of flex items because we rely | |
| 3 * on an old version of the flexbox spec. | |
| 4 * Longer-term we should remove this, see crbug.com/473625 */ | |
| 5 min-width: 0; | |
| 6 min-height: 0; | |
| 7 } | |
| 8 | |
| 1 html { | 9 html { |
| 2 height: 100%; | 10 height: 100%; |
| 3 overflow: hidden; | 11 overflow: hidden; |
| 4 } | 12 } |
| 5 | 13 |
| 6 body { | 14 body { |
| 7 height: 100%; | 15 height: 100%; |
| 8 width: 100%; | 16 width: 100%; |
| 9 position: relative; | 17 position: relative; |
| 10 overflow: hidden; | 18 overflow: hidden; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 158 } | 166 } |
| 159 | 167 |
| 160 body /deep/ input[type="search"]:focus, | 168 body /deep/ input[type="search"]:focus, |
| 161 body /deep/ input[type="text"]:focus { | 169 body /deep/ input[type="text"]:focus { |
| 162 outline: auto 5px -webkit-focus-ring-color; | 170 outline: auto 5px -webkit-focus-ring-color; |
| 163 } | 171 } |
| 164 | 172 |
| 165 .overflow-auto { | 173 .overflow-auto { |
| 166 overflow: auto; | 174 overflow: auto; |
| 167 } | 175 } |
| OLD | NEW |