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

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

Issue 23899005: Fixed CSS to hide AppsV1-only DOM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | 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 13 matching lines...) Expand all
24 font-size: 13px; 24 font-size: 13px;
25 margin: 0; 25 margin: 0;
26 padding: 20px 20px 0 20px; 26 padding: 20px 20px 0 20px;
27 direction: __MSG_@@bidi_dir__; 27 direction: __MSG_@@bidi_dir__;
28 } 28 }
29 29
30 /* 30 /*
31 * The "app-v2" class is added to the <html> node by remoting.init if it's 31 * The "app-v2" class is added to the <html> node by remoting.init if it's
32 * running as a V2 app. 32 * running as a V2 app.
33 */ 33 */
34 body.apps-v2 .apps-v1-only { 34 html.apps-v2 .apps-v1-only {
35 display: none !important; 35 display: none !important;
36 } 36 }
37 37
38 a { 38 a {
39 text-decoration: none; 39 text-decoration: none;
40 color: #15c; 40 color: #15c;
41 cursor: pointer; 41 cursor: pointer;
42 } 42 }
43 43
44 a:active { 44 a:active {
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 box-sizing: border-box; 698 box-sizing: border-box;
699 } 699 }
700 700
701 /* 701 /*
702 * Setting hidden on elements that match some rule overriding 'display' doesn't 702 * Setting hidden on elements that match some rule overriding 'display' doesn't
703 * do what you would expect unless this is made explicit (and !important). 703 * do what you would expect unless this is made explicit (and !important).
704 */ 704 */
705 [hidden] { 705 [hidden] {
706 display: none !important; 706 display: none !important;
707 } 707 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698