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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.css

Issue 898673003: Refactor Material Design PDF Viewer toolbar into a single element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase from master Created 5 years, 10 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 paper-progress {
6 height: 56px;
7 position: absolute;
8 width: 100%;
9 z-index: 3;
10 }
11
12 paper-progress::shadow #activeProgress {
13 background-color: rgb(33, 150, 243);
14 }
15
16 paper-progress::shadow #progressContainer {
17 background-color: rgb(100, 181, 246);
18 }
19
20 core-toolbar {
21 background-color: transparent;
22 color: rgb(241, 241, 241);
23 font-size: 1.5em;
24 height: 56px;
25 padding-left: 1em;
26 padding-right: 1em;
27 z-index: 3;
28 }
29
30 core-toolbar /deep/ ::selection {
31 background: rgb(187, 222, 251);
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698