| OLD | NEW |
| (Empty) | |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. */ |
| 4 html { |
| 5 color: #222; |
| 6 font-family: Arial, san-serif; |
| 7 } |
| 8 body { |
| 9 margin: 0; |
| 10 } |
| 11 .main-column { |
| 12 background-color: #fff; |
| 13 display: -webkit-flex; |
| 14 height: 100%; |
| 15 position: absolute; |
| 16 -webkit-flex-direction: column; |
| 17 width: 100%; |
| 18 } |
| 19 .header, .footer, .left-border, .right-border { |
| 20 background-color: #444; |
| 21 -webkit-flex: none; |
| 22 } |
| 23 .header { |
| 24 color: #fff; |
| 25 font-size: 150%; |
| 26 font-weight: bold; |
| 27 padding: 2px; |
| 28 -webkit-app-region: drag; |
| 29 } |
| 30 .left-border, .right-border { |
| 31 width: 2px; |
| 32 } |
| 33 .footer { |
| 34 height: 2px; |
| 35 } |
| 36 .close-button { |
| 37 background-image: url('button_close.png'); |
| 38 float: right; |
| 39 height: 17px; |
| 40 margin: 8px 2px; |
| 41 text-align: center; |
| 42 -webkit-app-region: no-drag; |
| 43 width: 17px; |
| 44 } |
| 45 .close-button:hover { |
| 46 background-image: url('button_close_hover.png'); |
| 47 } |
| 48 .main { |
| 49 display: -webkit-flex; |
| 50 min-height: 0; |
| 51 -webkit-flex: 1; |
| 52 -webkit-flex-direction: row; |
| 53 } |
| 54 .nav-wrapper { |
| 55 overflow-y: auto; |
| 56 } |
| 57 .nav { |
| 58 padding: 8px; |
| 59 -webkit-flex: initial; |
| 60 } |
| 61 .nav-group-header { |
| 62 font-weight: bold; |
| 63 padding: 4px 0; |
| 64 } |
| 65 .nav-item { |
| 66 cursor: pointer; |
| 67 font-size: 13px; |
| 68 padding: 4px 0; |
| 69 } |
| 70 .nav-item:hover { |
| 71 background-color: #eee; |
| 72 } |
| 73 .selected { |
| 74 color: #dd4b39; |
| 75 } |
| 76 .nav-title { |
| 77 padding-left: 8px; |
| 78 } |
| 79 .iframe-wrapper { |
| 80 overflow-y: auto; |
| 81 -webkit-flex: auto; |
| 82 } |
| 83 iframe { |
| 84 border: none; |
| 85 width: 100%; |
| 86 height: auto; |
| 87 } |
| OLD | NEW |