Chromium Code Reviews| Index: chrome/browser/resources/file_manager/css/file_manager.css |
| diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css |
| index c44e90fd9b244246294a3676a99f27ba9c89350b..5ff3837fccf5854dde166adba3c73cd10c558f58 100644 |
| --- a/chrome/browser/resources/file_manager/css/file_manager.css |
| +++ b/chrome/browser/resources/file_manager/css/file_manager.css |
| @@ -1017,6 +1017,17 @@ body[new-ui] .main-panel #detail-table > list { |
| padding-bottom: 52px; /* height of the preview panel */ |
| } |
| +body[new-ui] .main-panel #detail-table > list > .drag-selection-border { |
| + -webkit-box-sizing: border-box; |
| + background-color: rgba(255, 255, 255, 0.3); |
| + border: 2px solid rgba(255, 255, 255, 0.6); |
| + border-radius: 0; |
|
mtomasz
2013/05/31 08:15:31
border-radius: 0 redundant?
hirono
2013/06/03 04:40:33
This is overrides cr.ui.List's style.
|
| + outline: 1px solid rgba(0, 0, 0, 0.1); |
| + padding: 0; |
|
mtomasz
2013/05/31 08:15:31
padding: 0 redundant?
hirono
2013/06/03 04:40:33
ditto.
|
| + position: absolute; |
| + z-index: 2; |
| +} |
| + |
| .spinner { |
| background-image: url('../images/common/spinner.svg'); |
| background-size: 100%; |