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

Side by Side Diff: chrome/browser/resources/md_extensions/sidebar.css

Issue 2386813002: [MD Extensions] Merge CSS into html files (Closed)
Patch Set: Created 4 years, 2 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 :host {
6 margin-top: 30px;
7 white-space: nowrap;
8 }
9
10 #section-menu,
11 .section-item {
12 -webkit-margin-start: 20px;
13 }
14
15 #section-menu {
16 --paper-menu-background-color: transparent;
17 --paper-menu-selected-item: {
18 background-color: transparent;
19 color: rgb(66, 133, 244);
20 font-weight: normal;
21 }
22 padding: 0;
23 }
24
25 #more-extensions {
26 display: flex;
27 text-decoration: none;
28 }
29
30 paper-item {
31 color: #5A5A5A;
32 cursor: pointer;
33 font-size: 88%;
34 padding: 0;
35 }
36
37 .section-menu-item iron-icon,
38 .section-item iron-icon {
39 -webkit-margin-end: 15px;
40 }
41
42 #developer-mode-checkbox {
43 --paper-checkbox-checked-color: rgb(66, 133, 244);
44 --primary-text-color: #5A5A5A;
45 }
46
47 #developer-mode {
48 display: flex;
49 }
50
51 #developer-mode span {
52 flex-grow: 1;
53 }
54
55 #devtools-controls {
56 border-top: 1px solid grey;
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698