OLD | NEW |
---|---|
1 body /deep/ * { | |
lushnikov
2015/04/03 11:16:11
We might want to get rid of these lines in future.
cbiesinger
2015/04/03 18:49:17
Done. I also emailed blink-dev a summary of this c
| |
2 /* This is required for correct sizing of flex items because we rely | |
3 * on an old version of the flexbox spec. */ | |
4 min-width: 0; | |
5 min-height: 0; | |
6 } | |
7 | |
1 html { | 8 html { |
2 height: 100%; | 9 height: 100%; |
3 overflow: hidden; | 10 overflow: hidden; |
4 } | 11 } |
5 | 12 |
6 body { | 13 body { |
7 height: 100%; | 14 height: 100%; |
8 width: 100%; | 15 width: 100%; |
9 position: relative; | 16 position: relative; |
10 overflow: hidden; | 17 overflow: hidden; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
158 } | 165 } |
159 | 166 |
160 body /deep/ input[type="search"]:focus, | 167 body /deep/ input[type="search"]:focus, |
161 body /deep/ input[type="text"]:focus { | 168 body /deep/ input[type="text"]:focus { |
162 outline: auto 5px -webkit-focus-ring-color; | 169 outline: auto 5px -webkit-focus-ring-color; |
163 } | 170 } |
164 | 171 |
165 .overflow-auto { | 172 .overflow-auto { |
166 overflow: auto; | 173 overflow: auto; |
167 } | 174 } |
OLD | NEW |