Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Side by Side Diff: remoting/webapp/me2mom/choice.css

Issue 8511077: Fixed css to make host list prettier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 /* Elements */ 6 /* Elements */
7 a { 7 a {
8 color: rgb(0, 102, 204); 8 color: rgb(0, 102, 204);
9 text-decoration: none; 9 text-decoration: none;
10 } 10 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 button[disabled], .button[disabled]:hover { 49 button[disabled], .button[disabled]:hover {
50 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); 50 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
51 border-color: #aaa; 51 border-color: #aaa;
52 color: #888; 52 color: #888;
53 -webkit-box-shadow: none; 53 -webkit-box-shadow: none;
54 } 54 }
55 55
56 h1 { 56 h1 {
57 font-size: 24px; 57 font-size: 24px;
58 font-weight: normal; 58 font-weight: normal;
59 margin-__MSG_@@bidi_start_edge__: 10px;
60 } 59 }
61 60
62 label { 61 label {
63 color: black; 62 color: black;
64 font-weight: bold; 63 font-weight: bold;
65 } 64 }
66 65
67 /* Classes */ 66 /* Classes */
68 67
69 .access-code-digit-group { 68 .access-code-digit-group {
(...skipping 14 matching lines...) Expand all
84 /* 83 /*
85 Used to force buttons to center correctly on Chrome due to a quirk 84 Used to force buttons to center correctly on Chrome due to a quirk
86 with laying out buttons. http://crbug.com/84654 85 with laying out buttons. http://crbug.com/84654
87 86
88 TODO(ajwong): Either fix Chrome layout behavior, or if Chrome is actually 87 TODO(ajwong): Either fix Chrome layout behavior, or if Chrome is actually
89 conforming correctly to the standard, remove this comment. 88 conforming correctly to the standard, remove this comment.
90 */ 89 */
91 text-align: center; 90 text-align: center;
92 } 91 }
93 92
93 .collapsed {
94 opacity: 0;
95 height: 0 !important;
96 }
97
94 .choice-header { 98 .choice-header {
95 font-size: 24px; 99 font-size: 24px;
96 font-weight: normal; 100 font-weight: normal;
97 margin-__MSG_@@bidi_start_edge__: 10px; 101 margin-__MSG_@@bidi_start_edge__: 10px;
98 } 102 }
99 103
100 .choice-footer { 104 .choice-footer {
101 font-size: 14px; 105 font-size: 14px;
102 } 106 }
103 107
(...skipping 22 matching lines...) Expand all
126 } 130 }
127 131
128 [hidden] { 132 [hidden] {
129 display: none !important; 133 display: none !important;
130 } 134 }
131 135
132 136
133 .icon-label { 137 .icon-label {
134 display: inline-block; 138 display: inline-block;
135 vertical-align: top; 139 vertical-align: top;
140 margin-__MSG_@@bidi_start_edge__: 10px;
136 } 141 }
137 142
138 .information-box { 143 .information-box {
139 background-color: #f9e9be; 144 background-color: #f9e9be;
140 border: 1px solid #cacaca; 145 border: 1px solid #cacaca;
141 bottom: 8px; 146 bottom: 8px;
142 color: black; 147 color: black;
143 padding: 20px; 148 padding: 20px;
144 position: absolute; 149 position: absolute;
145 text-align: center; 150 text-align: center;
(...skipping 27 matching lines...) Expand all
173 } 178 }
174 179
175 .mode-select-table-underline td { 180 .mode-select-table-underline td {
176 border-bottom: 1px solid #c6c6c6; 181 border-bottom: 1px solid #c6c6c6;
177 } 182 }
178 183
179 .hide-scrollbars { 184 .hide-scrollbars {
180 overflow-y: hidden; 185 overflow-y: hidden;
181 } 186 }
182 187
188 .host-list-container {
189 -webkit-transition: all 0.5s;
190 overflow: hidden;
191 }
192
193 .host-list-table {
194 margin-__MSG_@@bidi_start_edge__: 30px;
195 width: 610px; /* width + margin = body width */
196 border-spacing: 0;
197 }
198
199 .host-list-row {
200 height: 50px;
201 color: black;
202 }
203
204 .host-list-row, .host-list-row td {
205 -webkit-transition: all 0.5s;
206 }
207
208 .host-list-row td {
209 border-bottom: 1px solid transparent;
210 border-top: 1px solid transparent;
211 }
212
213 .host-list-row:hover {
214 background-color: #e7eef2;
215 }
216
217 .host-list-row:hover td {
218 border-bottom: 1px solid #c6c6c6;
219 border-top: 1px solid #c6c6c6;
220 }
221
222 .host-list-row-end {
223 padding-__MSG_@@bidi_end_edge__: 10px;
224 }
225
226 .host-list-row-start {
227 padding-__MSG_@@bidi_start_edge__: 10px;
228 }
229
230 .host-offline {
231 color: #a9a9a9;
232 }
233
234 .host-offline img {
235 opacity: 0.5;
236 }
237
183 .small-print { 238 .small-print {
184 font-size: 13px; 239 font-size: 13px;
185 color: #AAA; 240 color: #AAA;
186 } 241 }
187 242
188 .top-primary { 243 .top-primary {
189 font-size: 14px; 244 font-size: 14px;
190 position: absolute; 245 position: absolute;
191 top: 0.5em; 246 top: 0.5em;
192 __MSG_@@bidi_start_edge__: 0.5em; 247 __MSG_@@bidi_start_edge__: 0.5em;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 #session-client-plugin { 331 #session-client-plugin {
277 margin: 0 0 -4px 0; 332 margin: 0 0 -4px 0;
278 } 333 }
279 334
280 #toggle-scaling { 335 #toggle-scaling {
281 margin: 1px 0 0 0; 336 margin: 1px 0 0 0;
282 padding: 1px; 337 padding: 1px;
283 min-width: 0; 338 min-width: 0;
284 line-height: 0; 339 line-height: 0;
285 } 340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698