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

Side by Side Diff: chrome/browser/resources/password_manager_internals/password_manager_internals.css

Issue 2231143002: Cleanup: fix some CSS comment styles (especially copyrights) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaelpg@ review Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 * chrome://password-manager-internals/ 5 * chrome://password-manager-internals/ */
6 */
7 6
8 #logging-note { 7 #logging-note {
9 font-style: italic; 8 font-style: italic;
10 } 9 }
11 10
12 #logging-note-incognito { 11 #logging-note-incognito {
13 font-style: italic; 12 font-style: italic;
14 } 13 }
15 14
16 /* Initially, nothing is visible, to avoid flicker. */ 15 /* Initially, nothing is visible, to avoid flicker. */
17 #log-entries, 16 #log-entries,
18 #logging-note, 17 #logging-note,
19 #logging-note-incognito { 18 #logging-note-incognito {
20 display: none; 19 display: none;
21 } 20 }
22 21
23 /* Visibility settings for non-Incognito tabs. */ 22 /* Visibility settings for non-Incognito tabs. */
24 [data-incognito=false] #log-entries, 23 [data-incognito=false] #log-entries,
25 [data-incognito=false] #logging-note { 24 [data-incognito=false] #logging-note {
26 display: block; 25 display: block;
27 } 26 }
28 27
29 /* Visibility settings for Incognito tabs. */ 28 /* Visibility settings for Incognito tabs. */
30 [data-incognito=true] #logging-note-incognito { 29 [data-incognito=true] #logging-note-incognito {
31 display: block; 30 display: block;
32 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698