OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
8 body { | 8 body { |
9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1088 height: 100%; | 1088 height: 100%; |
1089 border: none; | 1089 border: none; |
1090 z-index: 100; | 1090 z-index: 100; |
1091 } | 1091 } |
1092 | 1092 |
1093 menu.file-context-menu { | 1093 menu.file-context-menu { |
1094 z-index: 4; | 1094 z-index: 4; |
1095 } | 1095 } |
1096 | 1096 |
1097 input.common.pin[type="checkbox"]:checked::after { | 1097 input.common.pin[type="checkbox"]:checked::after { |
1098 position: relative; | |
1098 content: url('../images/pin.png'); | 1099 content: url('../images/pin.png'); |
1099 left: 3px; | 1100 left: 3px; |
1100 top: -4px; | 1101 top: -4px; |
1101 } | 1102 } |
1102 | 1103 |
1103 div.offline { | 1104 div.offline { |
1104 -webkit-box-pack: center; | 1105 -webkit-box-pack: center; |
1105 display: -webkit-box; | 1106 display: -webkit-box; |
1106 } | 1107 } |
1107 | 1108 |
1108 div.offline > * { | 1109 div.offline > * { |
1109 -webkit-box-align: center; | 1110 -webkit-box-align: center; |
1110 display: -webkit-box; | 1111 display: -webkit-box; |
1111 } | 1112 } |
1113 | |
1114 /* Message panel for unmounted GData */ | |
1115 .dialog-container:not([unmounted]) .dialog-body > div.unmounted-panel, | |
1116 .dialog-container[unmounted] .dialog-body > div:not(.unmounted-panel) { | |
1117 display: none; | |
1118 } | |
1119 | |
1120 div.unmounted-panel { | |
1121 padding-top: 20px; | |
1122 padding-left: 50px; | |
1123 } | |
1124 | |
1125 div.unmounted-panel > * { | |
1126 height: 22px; | |
1127 margin-bottom: 10px; | |
1128 } | |
1129 | |
1130 div.unmounted-panel > div { | |
1131 display: -webkit-box; | |
1132 -webkit-box-orient: horizontal; | |
1133 -webkit-box-pack: start; | |
1134 -webkit-box-align: center; | |
1135 } | |
1136 | |
1137 .unmounted-panel > .gdata.loading, | |
1138 .unmounted-panel > .gdata.error { | |
1139 margin-left: -30px; | |
1140 padding-left: 30px; | |
dgozman
2012/03/26 16:30:21
Fun stuff :)
Vladislav Kaznacheev
2012/03/27 09:25:35
Yeah. I added a comment explaining the purpose.
On
| |
1141 } | |
1142 | |
1143 .unmounted-panel > .gdata.loading { | |
1144 background-image: url(../images/spinner.svg); | |
1145 background-repeat: no-repeat; | |
1146 background-position: 0 center; | |
1147 } | |
1148 | |
1149 .unmounted-panel:not([loading]) > .gdata.loading, | |
1150 .unmounted-panel:not([error]) > .gdata.error, | |
1151 .unmounted-panel:not([retry]) > .gdata.retry, | |
1152 .unmounted-panel:not([retry]) > .gdata.learn-more { | |
1153 display: none; | |
1154 } | |
OLD | NEW |