OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 html { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
(...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 background-color: white; | 1687 background-color: white; |
1688 border: 1px solid white; | 1688 border: 1px solid white; |
1689 } | 1689 } |
1690 | 1690 |
1691 list.autocomplete-suggestions > li > div.detail-text { | 1691 list.autocomplete-suggestions > li > div.detail-text { |
1692 -webkit-box-flex: 1; | 1692 -webkit-box-flex: 1; |
1693 overflow-x: hidden; | 1693 overflow-x: hidden; |
1694 text-overflow: ellipsis; | 1694 text-overflow: ellipsis; |
1695 } | 1695 } |
1696 | 1696 |
| 1697 list.autocomplete-suggestions > li > div[search-icon] { |
| 1698 background: -webkit-image-set( |
| 1699 url('../images/files/ui/icon_search.png') 1x, |
| 1700 url('../images/files/ui/2x/icon_search.png') 2x); |
| 1701 background-position: center; |
| 1702 background-repeat: no-repeat; |
| 1703 } |
| 1704 |
1697 list.autocomplete-suggestions[hasElementFocus] > [selected], | 1705 list.autocomplete-suggestions[hasElementFocus] > [selected], |
1698 list.autocomplete-suggestions[hasElementFocus] > [lead], | 1706 list.autocomplete-suggestions[hasElementFocus] > [lead], |
1699 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], | 1707 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], |
1700 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { | 1708 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { |
1701 background-color: rgb(238, 238, 238); | 1709 background-color: rgb(238, 238, 238); |
1702 background-image: none; | 1710 background-image: none; |
1703 border: 1px solid white; | 1711 border: 1px solid white; |
1704 } | 1712 } |
OLD | NEW |