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

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

Issue 944183002: HostTableEntry refactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's feedbacks with unit tests Created 5 years, 10 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
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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 height: 22px; 493 height: 22px;
494 bottom: -5px; 494 bottom: -5px;
495 right: -10px; 495 right: -10px;
496 } 496 }
497 497
498 .host-offline .host-list-label, 498 .host-offline .host-list-label,
499 .host-offline .host-list-main-icon { 499 .host-offline .host-list-main-icon {
500 opacity: 0.5; 500 opacity: 0.5;
501 } 501 }
502 502
503 #this-host-connect {
504 -webkit-align-items: center;
505 display: flex;
506 }
507
508 #this-host-connect:hover {
509 background-color: #f2f2f2;
Jamie 2015/02/27 18:19:40 I would expect this CSS to be identical to the equ
kelvinp 2015/03/03 21:57:52 Done.
510 }
511
512 #this-host-connect .host-entry {
513 flex: 1;
514 }
515
503 button { 516 button {
504 white-space:nowrap; 517 white-space:nowrap;
505 } 518 }
506 519
507 .small-print { 520 .small-print {
508 font-size: 13px; 521 font-size: 13px;
509 color: #AAA; 522 color: #AAA;
510 } 523 }
511 524
512 .waiting { 525 .waiting {
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 } 721 }
709 722
710 .mouse-cursor-overlay { 723 .mouse-cursor-overlay {
711 position: absolute; 724 position: absolute;
712 pointer-events: none; 725 pointer-events: none;
713 } 726 }
714 727
715 body.hangout-remote-desktop .home-screen { 728 body.hangout-remote-desktop .home-screen {
716 display: none; 729 display: none;
717 } 730 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698