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

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

Issue 10692179: Propagate connection state from networking layer to UI. (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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 #session-mode { 555 #session-mode {
556 position: absolute; 556 position: absolute;
557 -webkit-box-shadow: 0 0 8px 0 black; 557 -webkit-box-shadow: 0 0 8px 0 black;
558 -webkit-user-select: none; 558 -webkit-user-select: none;
559 } 559 }
560 560
561 #session-client-plugin { 561 #session-client-plugin {
562 display: block; 562 display: block;
563 } 563 }
564 564
565 .session-client-inactive {
566 -webkit-filter: grayscale(70%) blur(1px);
Jamie 2012/07/12 01:46:42 Nit: indentation.
Sergey Ulanov 2012/07/13 20:42:50 Done.
567 -webkit-transition: -webkit-filter 0.5s;
Jamie 2012/07/12 01:46:42 I think the transition property needs to be set re
Sergey Ulanov 2012/07/13 20:42:50 That was intentional. It will fade with transition
568 }
569
565 #set-pin-table td { 570 #set-pin-table td {
566 border-bottom: 6px solid transparent; 571 border-bottom: 6px solid transparent;
567 text-align: right; 572 text-align: right;
568 } 573 }
569 574
570 #top-secondary { 575 #top-secondary {
571 margin-top: 10px 576 margin-top: 10px
572 } 577 }
573 578
574 #webapp-description { 579 #webapp-description {
575 margin-bottom: 10px; 580 margin-bottom: 10px;
576 } 581 }
577 582
578 #why-is-this-safe { 583 #why-is-this-safe {
579 display: inline-block; 584 display: inline-block;
580 margin-top: 7px; 585 margin-top: 7px;
581 } 586 }
582 587
583 * { 588 * {
584 box-sizing: border-box; 589 box-sizing: border-box;
585 } 590 }
586 591
587 /* 592 /*
588 * Setting hidden on elements that match some rule overriding 'display' doesn't 593 * Setting hidden on elements that match some rule overriding 'display' doesn't
589 * do what you would expect unless this is made explicit (and !important). 594 * do what you would expect unless this is made explicit (and !important).
590 */ 595 */
591 [hidden] { 596 [hidden] {
592 display: none !important; 597 display: none !important;
593 } 598 }
OLDNEW
« remoting/webapp/client_session.js ('K') | « remoting/webapp/client_session.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698