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 /* The order of z-index: | 5 /* The order of z-index: |
6 * - 2: drag-selection-bodrder | 6 * - 2: drag-selection-bodrder |
7 * - 3: preview-panel | 7 * - 3: preview-panel |
8 * - 500: scrollbar | 8 * - 500: scrollbar |
9 * - 500: splitter | 9 * - 500: splitter |
10 * - 550: autocomplete-suggestions | 10 * - 550: autocomplete-suggestions |
(...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1869 | 1869 |
1870 #suggest-app-dialog .cr-dialog-title { | 1870 #suggest-app-dialog .cr-dialog-title { |
1871 /* Entire height: 44px (content-box 22px + padding 11px * 2) */ | 1871 /* Entire height: 44px (content-box 22px + padding 11px * 2) */ |
1872 font-size: 16px; | 1872 font-size: 16px; |
1873 height: 22px; | 1873 height: 22px; |
1874 margin: 0; | 1874 margin: 0; |
1875 padding: 11px 18px; | 1875 padding: 11px 18px; |
1876 } | 1876 } |
1877 | 1877 |
1878 #suggest-app-dialog #webview-container { | 1878 #suggest-app-dialog #webview-container { |
1879 border-bottom: solid 2px #bbb; | 1879 border-bottom: solid 1px #bbb; |
1880 border-top: solid 2px #bbb; | 1880 border-top: solid 1px #bbb; |
1881 transition: height 200ms ease; | 1881 transition: height 200ms ease; |
1882 } | 1882 } |
1883 | 1883 |
1884 #suggest-app-dialog #webview-container:not(.loaded) webview { | 1884 #suggest-app-dialog #webview-container:not(.loaded) webview { |
1885 visibility: hidden; | 1885 visibility: hidden; |
1886 } | 1886 } |
1887 | 1887 |
1888 #suggest-app-dialog .cr-dialog-buttons, | 1888 #suggest-app-dialog .cr-dialog-buttons, |
1889 #suggest-app-dialog .cr-dialog-text, | 1889 #suggest-app-dialog .cr-dialog-text, |
1890 #suggest-app-dialog .cr-dialog-ok, | 1890 #suggest-app-dialog .cr-dialog-ok, |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1958 } | 1958 } |
1959 | 1959 |
1960 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { | 1960 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { |
1961 visibility: hidden; | 1961 visibility: hidden; |
1962 } | 1962 } |
1963 | 1963 |
1964 .share-dialog-frame .cr-dialog-text, | 1964 .share-dialog-frame .cr-dialog-text, |
1965 .share-dialog-frame .cr-dialog-buttons { | 1965 .share-dialog-frame .cr-dialog-buttons { |
1966 display: none; | 1966 display: none; |
1967 } | 1967 } |
OLD | NEW |