| OLD | NEW |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 * - -1: text-measure | 6 * - -1: text-measure |
| 7 * - 2: drag-selection-border | 7 * - 2: drag-selection-border |
| 8 * - 3: preview-panel | 8 * - 3: preview-panel |
| 9 * - 500: scrollbar | 9 * - 500: scrollbar |
| 10 * - 500: splitter | 10 * - 500: splitter |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 display: flex; | 137 display: flex; |
| 138 flex: none; | 138 flex: none; |
| 139 flex-direction: column; | 139 flex-direction: column; |
| 140 max-width: 40%; | 140 max-width: 40%; |
| 141 min-width: 100px; | 141 min-width: 100px; |
| 142 overflow: hidden; | 142 overflow: hidden; |
| 143 position: relative; | 143 position: relative; |
| 144 width: 190px; | 144 width: 190px; |
| 145 } | 145 } |
| 146 | 146 |
| 147 .dialog-navigation-list-header { | |
| 148 flex: none; | |
| 149 height: 48px; /* Keep in sync with #dialog-header. */ | |
| 150 line-height: 45px; | |
| 151 } | |
| 152 | |
| 153 .dialog-navigation-list-header #app-name { | |
| 154 color: #303030; | |
| 155 font-size: 130%; | |
| 156 margin: 0 15px; | |
| 157 } | |
| 158 | |
| 159 .dialog-navigation-list-contents { | 147 .dialog-navigation-list-contents { |
| 160 display: flex; | 148 display: flex; |
| 161 flex: 1 1 auto; | 149 flex: 1 1 auto; |
| 162 position: relative; | 150 position: relative; |
| 163 } | 151 } |
| 164 | 152 |
| 165 .dialog-navigation-list-footer { | 153 .dialog-navigation-list-footer { |
| 166 display: flex; | 154 display: flex; |
| 167 flex: none; | 155 flex: none; |
| 168 flex-direction: column; | 156 flex-direction: column; |
| (...skipping 1713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 visibility: hidden; | 1870 visibility: hidden; |
| 1883 } | 1871 } |
| 1884 | 1872 |
| 1885 .text-measure { | 1873 .text-measure { |
| 1886 pointer-events: none; | 1874 pointer-events: none; |
| 1887 position: absolute; | 1875 position: absolute; |
| 1888 top: 0; | 1876 top: 0; |
| 1889 visibility: hidden; | 1877 visibility: hidden; |
| 1890 z-index: -1; | 1878 z-index: -1; |
| 1891 } | 1879 } |
| OLD | NEW |