| 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 /* The order of z-index: | 5 /* The order of z-index: |
| 6 * - 2: drag-selection-bodrder | 6 * - 2: drag-selection-bodrder |
| 7 * - 3: preview-panel | 7 * - 3: preview-panel |
| 8 * - 500: scrollbar | 8 * - 500: scrollbar |
| 9 * - 500: splitter | 9 * - 500: splitter |
| 10 * - 525: spinner | 10 * - 525: spinner |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 } | 93 } |
| 94 | 94 |
| 95 .scrollbar-vertical > .scrollbar-button:hover { | 95 .scrollbar-vertical > .scrollbar-button:hover { |
| 96 opacity: 0.4; | 96 opacity: 0.4; |
| 97 } | 97 } |
| 98 | 98 |
| 99 .scrollbar-vertical > .scrollbar-button.pressed { | 99 .scrollbar-vertical > .scrollbar-button.pressed { |
| 100 opacity: 0.5; | 100 opacity: 0.5; |
| 101 } | 101 } |
| 102 | 102 |
| 103 #butter-bar-container { | |
| 104 width: 100%; | |
| 105 } | |
| 106 | |
| 107 #butter-bar { | |
| 108 color: #666; | |
| 109 display: -webkit-box; | |
| 110 padding: 15px; | |
| 111 } | |
| 112 | |
| 113 #butter-bar:not(.visible) { | |
| 114 display: none; | |
| 115 } | |
| 116 | |
| 117 #butter-bar .content { | |
| 118 -webkit-box-flex: 1.0; | |
| 119 -webkit-box-orient: block-axis; | |
| 120 -webkit-box-pack: end; | |
| 121 display: -webkit-box; | |
| 122 } | |
| 123 | |
| 124 #butter-bar .actions { | |
| 125 -webkit-box-align: end; | |
| 126 -webkit-box-orient: horizontal; | |
| 127 -webkit-box-pack: end; | |
| 128 -webkit-margin-start: 6px; | |
| 129 display: -webkit-box; | |
| 130 } | |
| 131 | |
| 132 #butter-bar .actions a { | |
| 133 color: rgb(17, 85, 204); | |
| 134 cursor: pointer; | |
| 135 vertical-align: middle; | |
| 136 } | |
| 137 | |
| 138 #butter-bar .actions a.x { | |
| 139 background: center center no-repeat; | |
| 140 background-image: -webkit-image-set( | |
| 141 url('../images/files/ui/close_bar.png') 1x, | |
| 142 url('../images/files/ui/2x/close_bar.png') 2x); | |
| 143 display: inline-block; | |
| 144 height: 35px; /* #butter-bar .content's min-height. */ | |
| 145 margin-right: -12px; | |
| 146 width: 35px; | |
| 147 } | |
| 148 | |
| 149 #butter-bar .actions a.x:first-child { | |
| 150 margin-left: -6px; | |
| 151 } | |
| 152 | |
| 153 #butter-bar .actions a.x { | |
| 154 margin-bottom: -14px; | |
| 155 } | |
| 156 | |
| 157 #butter-bar .butter-message.single-line { | |
| 158 line-height: 2.0; | |
| 159 overflow: hidden; | |
| 160 text-overflow: ellipsis; | |
| 161 white-space: nowrap; | |
| 162 } | |
| 163 | |
| 164 /* Main part of the dialog between header and footer. */ | 103 /* Main part of the dialog between header and footer. */ |
| 165 .dialog-container { | 104 .dialog-container { |
| 166 -webkit-box-align: stretch; | 105 -webkit-box-align: stretch; |
| 167 -webkit-box-flex: 1; | 106 -webkit-box-flex: 1; |
| 168 -webkit-box-orient: horizontal; | 107 -webkit-box-orient: horizontal; |
| 169 background-color: white; /* Makes #drag-container invisible. */ | 108 background-color: white; /* Makes #drag-container invisible. */ |
| 170 border-radius: 2px; | 109 border-radius: 2px; |
| 171 display: -webkit-box; | 110 display: -webkit-box; |
| 172 overflow: hidden; | 111 overflow: hidden; |
| 173 position: relative; | 112 position: relative; |
| (...skipping 1930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2104 url(../images/files/ui/2x/process_drawer_button_closed_hover.png) 2x) | 2043 url(../images/files/ui/2x/process_drawer_button_closed_hover.png) 2x) |
| 2105 no-repeat; | 2044 no-repeat; |
| 2106 } | 2045 } |
| 2107 | 2046 |
| 2108 #progress-center.opened button.toggle:active { | 2047 #progress-center.opened button.toggle:active { |
| 2109 background: -webkit-image-set( | 2048 background: -webkit-image-set( |
| 2110 url(../images/files/ui/process_drawer_button_closed_pressed.png) 1x, | 2049 url(../images/files/ui/process_drawer_button_closed_pressed.png) 1x, |
| 2111 url(../images/files/ui/2x/process_drawer_button_closed_pressed.png) 2x) | 2050 url(../images/files/ui/2x/process_drawer_button_closed_pressed.png) 2x) |
| 2112 no-repeat; | 2051 no-repeat; |
| 2113 } | 2052 } |
| OLD | NEW |