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 /* Special attribute used in HTML to hide elements. */ | 5 /* Special attribute used in HTML to hide elements. */ |
6 body[type='folder'] [invisibleif~='folder'], | 6 body[type='folder'] [invisibleif~='folder'], |
7 body[type='upload-folder'] [invisibleif~='upload-folder'], | 7 body[type='upload-folder'] [invisibleif~='upload-folder'], |
8 body[type='saveas-file'] [invisibleif~='saveas-file'], | 8 body[type='saveas-file'] [invisibleif~='saveas-file'], |
9 body[type='open-file'] [invisibleif~='open-file'], | 9 body[type='open-file'] [invisibleif~='open-file'], |
10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], | 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], |
(...skipping 1842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1853 /* Entire height: 44px (content-box 22px + padding 11px * 2) */ | 1853 /* Entire height: 44px (content-box 22px + padding 11px * 2) */ |
1854 font-size: 16px; | 1854 font-size: 16px; |
1855 height: 22px; | 1855 height: 22px; |
1856 margin: 0; | 1856 margin: 0; |
1857 padding: 11px 18px; | 1857 padding: 11px 18px; |
1858 } | 1858 } |
1859 | 1859 |
1860 #suggest-app-dialog #webview-container { | 1860 #suggest-app-dialog #webview-container { |
1861 border-bottom: solid 2px #bbb; | 1861 border-bottom: solid 2px #bbb; |
1862 border-top: solid 2px #bbb; | 1862 border-top: solid 2px #bbb; |
| 1863 transition: height 200ms ease; |
| 1864 } |
| 1865 |
| 1866 #suggest-app-dialog #webview-container:not(.loaded) webview { |
| 1867 visibility: hidden; |
1863 } | 1868 } |
1864 | 1869 |
1865 #suggest-app-dialog .cr-dialog-buttons, | 1870 #suggest-app-dialog .cr-dialog-buttons, |
1866 #suggest-app-dialog .cr-dialog-text, | 1871 #suggest-app-dialog .cr-dialog-text, |
1867 #suggest-app-dialog .cr-dialog-ok, | 1872 #suggest-app-dialog .cr-dialog-ok, |
1868 #suggest-app-dialog .cr-dialog-cancel { | 1873 #suggest-app-dialog .cr-dialog-cancel { |
1869 display: none; | 1874 display: none; |
1870 } | 1875 } |
1871 | 1876 |
1872 #suggest-app-dialog #buttons { | 1877 #suggest-app-dialog #buttons { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1935 } | 1940 } |
1936 | 1941 |
1937 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { | 1942 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { |
1938 visibility: hidden; | 1943 visibility: hidden; |
1939 } | 1944 } |
1940 | 1945 |
1941 .share-dialog-frame .cr-dialog-text, | 1946 .share-dialog-frame .cr-dialog-text, |
1942 .share-dialog-frame .cr-dialog-buttons { | 1947 .share-dialog-frame .cr-dialog-buttons { |
1943 display: none; | 1948 display: none; |
1944 } | 1949 } |
OLD | NEW |