| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 width: 30%; | 113 width: 30%; |
| 114 z-index: 2; | 114 z-index: 2; |
| 115 } | 115 } |
| 116 | 116 |
| 117 body[new-ui] #butter-bar { | 117 body[new-ui] #butter-bar { |
| 118 color: #666; | 118 color: #666; |
| 119 display: -webkit-box; | 119 display: -webkit-box; |
| 120 padding: 15px; | 120 padding: 15px; |
| 121 } | 121 } |
| 122 | 122 |
| 123 #butter-bar:not(.visible) { | 123 body #butter-bar:not(.visible) { |
| 124 opacity: 0; | 124 opacity: 0; |
| 125 pointer-events: none; | 125 pointer-events: none; |
| 126 } | 126 } |
| 127 | 127 |
| 128 body[new-ui] #butter-bar:not(.visible) { | 128 body[new-ui] #butter-bar:not(.visible) { |
| 129 display: none; | 129 display: none; |
| 130 } | 130 } |
| 131 | 131 |
| 132 #butter-bar .content { | 132 #butter-bar .content { |
| 133 -webkit-box-flex: 1.0; | 133 -webkit-box-flex: 1.0; |
| (...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2038 background-image: -webkit-image-set( | 2038 background-image: -webkit-image-set( |
| 2039 url('../images/files/ui/new-ui/button_list_view.png') 1x, | 2039 url('../images/files/ui/new-ui/button_list_view.png') 1x, |
| 2040 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x); | 2040 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x); |
| 2041 } | 2041 } |
| 2042 | 2042 |
| 2043 body[new-ui] menuitem#thumbnail-view { | 2043 body[new-ui] menuitem#thumbnail-view { |
| 2044 background-image: -webkit-image-set( | 2044 background-image: -webkit-image-set( |
| 2045 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x, | 2045 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x, |
| 2046 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x); | 2046 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x); |
| 2047 } | 2047 } |
| OLD | NEW |