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

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

Issue 10103034: Web-app visual and string tweaks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reworded start message. Created 8 years, 8 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
« no previous file with comments | « remoting/webapp/_locales/en/messages.json ('k') | remoting/webapp/main.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 415
416 button { 416 button {
417 white-space:nowrap; 417 white-space:nowrap;
418 } 418 }
419 419
420 .small-print { 420 .small-print {
421 font-size: 13px; 421 font-size: 13px;
422 color: #AAA; 422 color: #AAA;
423 } 423 }
424 424
425 .waiting:before {
426 content: url('spinner.gif');
427 position: absolute;
428 left: 0px;
429 top: -3px;
430 }
431
432 .waiting { 425 .waiting {
426 background-image: url('spinner.gif');
427 background-repeat: no-repeat;
428 background-position: top __MSG_@@bidi_start_edge__;
429 padding-__MSG_@@bidi_start_edge__: 30px;
430 padding-top: 2px;
431 padding-bottom: 4px;
433 color: rgb(180, 180, 180); 432 color: rgb(180, 180, 180);
434 margin-left: 30px; 433 line-height: 27px; /* Same as line-height for buttons */
435 } 434 }
436 435
437 .waiting-container { 436 .waiting-container {
438 position: relative; 437 display: -webkit-box;
439 } 438 }
440 439
441 .space-before { 440 .space-before {
442 margin-top: 30px; 441 margin-top: 30px;
443 } 442 }
444 443
445 444
446 #access-code-countdown-container { 445 #access-code-countdown-container {
447 height: 50px; 446 height: 50px;
448 text-align: center; 447 text-align: center;
(...skipping 14 matching lines...) Expand all
463 #ask-pin-form label { 462 #ask-pin-form label {
464 min-width: 120px; 463 min-width: 120px;
465 text-align: __MSG_@@bidi_end_edge__; 464 text-align: __MSG_@@bidi_end_edge__;
466 display: inline-block; 465 display: inline-block;
467 } 466 }
468 467
469 #ask-pin-form > div { 468 #ask-pin-form > div {
470 margin-bottom: 8px; 469 margin-bottom: 8px;
471 } 470 }
472 471
473
474 #cancel-connect-button, #cancel-share-button {
475 float: __MSG_@@bidi_end_edge__;
476 }
477
478 #current-email { 472 #current-email {
479 color: rgba(0, 0, 0, 0.5); 473 color: rgba(0, 0, 0, 0.5);
480 } 474 }
481 475
482 #daemon-plugin-container { 476 #daemon-plugin-container {
483 width: 0; 477 width: 0;
484 height: 0; 478 height: 0;
485 } 479 }
486 480
487 #dialog-container { 481 #dialog-container {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 box-sizing: border-box; 544 box-sizing: border-box;
551 } 545 }
552 546
553 /* 547 /*
554 * Setting hidden on elements that match some rule overriding 'display' doesn't 548 * Setting hidden on elements that match some rule overriding 'display' doesn't
555 * do what you would expect unless this is made explicit (and !important). 549 * do what you would expect unless this is made explicit (and !important).
556 */ 550 */
557 [hidden] { 551 [hidden] {
558 display: none !important; 552 display: none !important;
559 } 553 }
OLDNEW
« no previous file with comments | « remoting/webapp/_locales/en/messages.json ('k') | remoting/webapp/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698