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 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1463 opacity: 1; | 1463 opacity: 1; |
1464 padding: 0 16px 0 7px; | 1464 padding: 0 16px 0 7px; |
1465 position: relative; | 1465 position: relative; |
1466 z-index: 3; | 1466 z-index: 3; |
1467 } | 1467 } |
1468 | 1468 |
1469 body[new-ui] .preview-panel { | 1469 body[new-ui] .preview-panel { |
1470 -webkit-box-align: center; | 1470 -webkit-box-align: center; |
1471 -webkit-box-orient: horizontal; | 1471 -webkit-box-orient: horizontal; |
1472 -webkit-transition: background-color 150ms ease; | 1472 -webkit-transition: background-color 150ms ease; |
1473 background: rgba(255, 255, 255, 0.9); | 1473 background: linear-gradient( |
| 1474 to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)); |
1474 border-top: 1px solid rgb(225, 225, 225); | 1475 border-top: 1px solid rgb(225, 225, 225); |
1475 bottom: 0; | 1476 bottom: 0; |
1476 display: -webkit-box; | 1477 display: -webkit-box; |
1477 height: 51px; | 1478 height: 51px; |
1478 left: 0; | 1479 left: 0; |
1479 opacity: 1; | 1480 opacity: 1; |
1480 padding: 0 12px 0 7px; | 1481 padding: 0 12px 0 7px; |
1481 position: absolute; | 1482 position: absolute; |
1482 right: 0; | 1483 right: 0; |
1483 z-index: 3; | 1484 z-index: 3; |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2460 body[new-ui] #iframe-drag-area { | 2461 body[new-ui] #iframe-drag-area { |
2461 -webkit-app-region: drag; | 2462 -webkit-app-region: drag; |
2462 height: 45px; | 2463 height: 45px; |
2463 left: 64px; | 2464 left: 64px; |
2464 position: absolute; | 2465 position: absolute; |
2465 right: 70px; | 2466 right: 70px; |
2466 top: 0; | 2467 top: 0; |
2467 width: auto; | 2468 width: auto; |
2468 z-index: 101; | 2469 z-index: 101; |
2469 } | 2470 } |
OLD | NEW |