| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 display: -webkit-box; | 83 display: -webkit-box; |
| 84 min-height: 35px; | 84 min-height: 35px; |
| 85 } | 85 } |
| 86 | 86 |
| 87 #butter-bar .actions { | 87 #butter-bar .actions { |
| 88 -webkit-box-align: center; | 88 -webkit-box-align: center; |
| 89 -webkit-box-orient: horizontal; | 89 -webkit-box-orient: horizontal; |
| 90 -webkit-box-pack: end; | 90 -webkit-box-pack: end; |
| 91 -webkit-margin-start: 6px; | 91 -webkit-margin-start: 6px; |
| 92 display: -webkit-box; | 92 display: -webkit-box; |
| 93 height: 20px; | |
| 94 } | 93 } |
| 95 | 94 |
| 96 #butter-bar .actions a { | 95 #butter-bar .actions a { |
| 97 color: rgb(17, 85, 204); | 96 color: rgb(17, 85, 204); |
| 98 cursor: pointer; | 97 cursor: pointer; |
| 98 vertical-align: middle; |
| 99 } | 99 } |
| 100 | 100 |
| 101 #butter-bar .actions a.x { | 101 #butter-bar .actions a.x { |
| 102 background: center center no-repeat; | 102 background: center center no-repeat; |
| 103 background-image: -webkit-image-set( | 103 background-image: -webkit-image-set( |
| 104 url('../images/files/ui/close_bar.png') 1x, | 104 url('../images/files/ui/close_bar.png') 1x, |
| 105 url('../images/files/ui/2x/close_bar.png') 2x); | 105 url('../images/files/ui/2x/close_bar.png') 2x); |
| 106 display: inline-block; | 106 display: inline-block; |
| 107 height: 12px; | 107 height: 35px; /* #butter-bar .content's min-height. */ |
| 108 padding: 4px 2px; | 108 margin-right: -12px; |
| 109 width: 12px; | 109 width: 35px; |
| 110 } | 110 } |
| 111 | 111 |
| 112 #butter-bar .actions a:first-child { | 112 #butter-bar .actions a.x:first-child { |
| 113 margin-left: 2px; | 113 margin-left: -6px; |
| 114 } | |
| 115 | |
| 116 #butter-bar .actions a:last-child { | |
| 117 margin-right: -2px; /* Overlap the padding with butter-bar padding. */ | |
| 118 } | 114 } |
| 119 | 115 |
| 120 #butter-bar.error { | 116 #butter-bar.error { |
| 121 background-color: rgba(221, 75, 57, 0.2); | 117 background-color: rgba(221, 75, 57, 0.2); |
| 122 } | 118 } |
| 123 | 119 |
| 124 #butter-bar .butter-message.single-line { | 120 #butter-bar .butter-message.single-line { |
| 125 overflow: hidden; | 121 overflow: hidden; |
| 126 text-overflow: ellipsis; | 122 text-overflow: ellipsis; |
| 127 white-space: nowrap; | 123 white-space: nowrap; |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1624 | 1620 |
| 1625 #default-action-dialog { | 1621 #default-action-dialog { |
| 1626 min-width: 300px; | 1622 min-width: 300px; |
| 1627 width: auto; | 1623 width: auto; |
| 1628 } | 1624 } |
| 1629 | 1625 |
| 1630 .drive-welcome-wrapper { | 1626 .drive-welcome-wrapper { |
| 1631 /* drive_welcome.css will override it once loaded. */ | 1627 /* drive_welcome.css will override it once loaded. */ |
| 1632 display: none; | 1628 display: none; |
| 1633 } | 1629 } |
| OLD | NEW |