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

Side by Side Diff: chrome/browser/resources/settings/settings_menu/settings_menu.css

Issue 1239963004: Settings Rewrite: Morph old MD-Settings to Basic and Advanced menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 :host { 5 :host {
6 display: block; 6 background-color: rgb(38, 50, 56);
7 color: white;
8 display: flex;
9 flex-direction: column;
10 overflow: auto;
7 } 11 }
8 12
9 paper-menu { 13 paper-menu {
10 margin: 0; 14 margin: 0;
11 padding-top: 20px; 15 padding-top: 20px;
12 } 16 }
13 17
14 paper-menu > * { 18 paper-menu > * {
15 -webkit-padding-start: 40px; 19 -webkit-padding-start: 40px;
16 font-size: 15px; 20 font-size: 15px;
17 margin-bottom: 5px; 21 margin-bottom: 5px;
18 min-height: 45px; 22 min-height: 45px;
19 } 23 }
20 24
21 paper-menu > *.iron-selected { 25 paper-menu > *.iron-selected {
22 background-color: rgb(38, 166, 154); 26 background-color: rgb(38, 166, 154);
23 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698