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

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

Issue 12566035: Added survey butter-bar to web-app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved string grammar. Created 7 years, 9 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/jscompiler_hacks.js ('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 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 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); 372 -webkit-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 {
381 position: absolute;
382 top: 80px;
383 left: 0;
384 }
385
386 .butter-bar {
387 display: -webkit-box;
388 width: 100%;
389 }
390
391 .butter-bar .close-icon {
392 vertical-align: top;
393 opacity: 0.4;
394 margin-__MSG_@@bidi_start_edge__: 2px;
395 margin-__MSG_@@bidi_end_edge__: -12px;
396 }
397
398 .butter-bar .close-icon:hover {
399 opacity: 0.7;
400 }
401
402 .butter-bar > p {
403 background-color: #f9edbe;
404 border: 1px solid #f0c36d;
405 -webkit-border-radius: 2px;
406 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
407 color: #222;
408 font-size: 12px;
409 padding: 4px 16px;
410 margin: auto;
411 }
412
413 .butter-bar a {
414 color: inherit;
415 text-decoration: underline;
416 padding-__MSG_@@bidi_start_edge__: 2px;
417 }
418
380 .message { 419 .message {
381 margin-bottom: 24px; 420 margin-bottom: 24px;
382 } 421 }
383 422
384 .mode-select-button-column { 423 .mode-select-button-column {
385 text-align: __MSG_@@bidi_end_edge__; 424 text-align: __MSG_@@bidi_end_edge__;
386 } 425 }
387 426
388 .mode-select-button-column button { 427 .mode-select-button-column button {
389 min-width: 72px; 428 min-width: 72px;
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 box-sizing: border-box; 636 box-sizing: border-box;
598 } 637 }
599 638
600 /* 639 /*
601 * Setting hidden on elements that match some rule overriding 'display' doesn't 640 * Setting hidden on elements that match some rule overriding 'display' doesn't
602 * do what you would expect unless this is made explicit (and !important). 641 * do what you would expect unless this is made explicit (and !important).
603 */ 642 */
604 [hidden] { 643 [hidden] {
605 display: none !important; 644 display: none !important;
606 } 645 }
OLDNEW
« no previous file with comments | « remoting/webapp/jscompiler_hacks.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698