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

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

Issue 14803010: Add link to Hangouts Remote Desktop in the It2Me section of the remoting app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 border: 1px solid #f0c36d; 370 border: 1px solid #f0c36d;
371 -webkit-border-radius: 2px; 371 -webkit-border-radius: 2px;
372 box-shadow: 0px 2px 4px rgba(0,0,0,0.2); 372 box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
373 color: #222; 373 color: #222;
374 padding: 8px 16px; 374 padding: 8px 16px;
375 text-align: center; 375 text-align: center;
376 font-size: 12px; 376 font-size: 12px;
377 margin-top: 30px; 377 margin-top: 30px;
378 } 378 }
379 379
380 #survey-opt-in { 380 #butter-bar {
381 position: absolute; 381 position: absolute;
382 top: 80px; 382 top: 80px;
383 left: 0; 383 left: 0;
384 }
385
386 .butter-bar {
387 display: -webkit-box; 384 display: -webkit-box;
388 width: 100%; 385 width: 100%;
389 } 386 }
390 387
391 .butter-bar .close-icon { 388 #butter-bar .close-icon {
392 vertical-align: top; 389 vertical-align: top;
393 opacity: 0.4; 390 opacity: 0.4;
394 margin-__MSG_@@bidi_start_edge__: 2px; 391 margin-__MSG_@@bidi_start_edge__: 2px;
395 margin-__MSG_@@bidi_end_edge__: -12px; 392 margin-__MSG_@@bidi_end_edge__: -12px;
396 } 393 }
397 394
398 .butter-bar .close-icon:hover { 395 #butter-bar .close-icon:hover {
399 opacity: 0.7; 396 opacity: 0.7;
400 } 397 }
401 398
402 .butter-bar > p { 399 #butter-bar > p {
403 background-color: #f9edbe; 400 background-color: #f9edbe;
404 border: 1px solid #f0c36d; 401 border: 1px solid #f0c36d;
405 -webkit-border-radius: 2px; 402 -webkit-border-radius: 2px;
406 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); 403 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
407 color: #222; 404 color: #222;
408 font-size: 12px; 405 font-size: 12px;
409 padding: 4px 16px; 406 padding: 4px 16px;
410 margin: auto; 407 margin: auto;
411 } 408 }
412 409
413 .butter-bar a { 410 #butter-bar a {
414 color: inherit; 411 color: inherit;
415 text-decoration: underline; 412 text-decoration: underline;
416 padding-__MSG_@@bidi_start_edge__: 2px; 413 padding-__MSG_@@bidi_start_edge__: 2px;
417 } 414 }
418 415
419 .message { 416 .message {
420 margin-bottom: 24px; 417 margin-bottom: 24px;
421 } 418 }
422 419
423 .mode-select-button-column { 420 .mode-select-button-column {
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 box-sizing: border-box; 633 box-sizing: border-box;
637 } 634 }
638 635
639 /* 636 /*
640 * Setting hidden on elements that match some rule overriding 'display' doesn't 637 * Setting hidden on elements that match some rule overriding 'display' doesn't
641 * do what you would expect unless this is made explicit (and !important). 638 * do what you would expect unless this is made explicit (and !important).
642 */ 639 */
643 [hidden] { 640 [hidden] {
644 display: none !important; 641 display: none !important;
645 } 642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698