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

Side by Side Diff: remoting/webapp/main.css

Issue 10703034: Remove 'Enable' button on unsupported platforms. Added 'No hosts' message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months 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) 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 5
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 tfoot, thead, tr, th, td, button { 10 tfoot, thead, tr, th, td, button {
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 line-height: 24px; 236 line-height: 24px;
237 display: inline-block; 237 display: inline-block;
238 margin-__MSG_@@bidi_start_edge__: 10px; 238 margin-__MSG_@@bidi_start_edge__: 10px;
239 } 239 }
240 240
241 h2 { 241 h2 {
242 font-size: 16px; 242 font-size: 16px;
243 line-height:24px; 243 line-height:24px;
244 font-weight: normal; 244 font-weight: normal;
245 color: #222; 245 color: #222;
246 margin-bottom: 10px;
246 } 247 }
247 248
248 section > h2 { 249 section > h2 {
249 color: #666; 250 color: #666;
250 } 251 }
251 252
252 header { 253 header {
253 display: -webkit-box; 254 display: -webkit-box;
254 width: 100%; 255 width: 100%;
255 } 256 }
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 } 365 }
365 366
366 .mode-select-button-column { 367 .mode-select-button-column {
367 text-align: __MSG_@@bidi_end_edge__; 368 text-align: __MSG_@@bidi_end_edge__;
368 } 369 }
369 370
370 .mode-select-button-column button { 371 .mode-select-button-column button {
371 min-width: 72px; 372 min-width: 72px;
372 } 373 }
373 374
374 .host-list-table {
375 width: 100%;
376 border-spacing: 0;
377 }
378
379 td { 375 td {
380 vertical-align: middle; 376 vertical-align: middle;
381 } 377 }
382 378
383 .host-online.clickable:hover, 379 .host-online.clickable:hover,
384 .host-online.clickable.child-focused { 380 .host-online.clickable.child-focused {
385 background-color: #f2f2f2; 381 background-color: #f2f2f2;
386 } 382 }
387 383
388 .host-list-rename-icon, 384 .host-list-rename-icon,
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 #set-pin-table td { 550 #set-pin-table td {
555 border-bottom: 6px solid transparent; 551 border-bottom: 6px solid transparent;
556 text-align: right; 552 text-align: right;
557 } 553 }
558 554
559 #top-secondary { 555 #top-secondary {
560 margin-top: 10px 556 margin-top: 10px
561 } 557 }
562 558
563 #webapp-description { 559 #webapp-description {
564 margin: 10px 0; 560 margin-bottom: 10px;
565 } 561 }
566 562
567 #why-is-this-safe { 563 #why-is-this-safe {
568 display: inline-block; 564 display: inline-block;
569 margin-top: 7px; 565 margin-top: 7px;
570 } 566 }
571 567
572 * { 568 * {
573 box-sizing: border-box; 569 box-sizing: border-box;
574 } 570 }
575 571
576 /* 572 /*
577 * Setting hidden on elements that match some rule overriding 'display' doesn't 573 * Setting hidden on elements that match some rule overriding 'display' doesn't
578 * do what you would expect unless this is made explicit (and !important). 574 * do what you would expect unless this is made explicit (and !important).
579 */ 575 */
580 [hidden] { 576 [hidden] {
581 display: none !important; 577 display: none !important;
582 } 578 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698