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

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

Issue 853603002: Merge html-office-public repo into src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 2013 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 -webkit-transition: opacity 400ms ease-in-out;
7 pointer-events: none;
8 position: fixed;
9 right: 0;
10 }
11
12 #text {
13 background-color: rgba(0, 0, 0, 0.5);
14 border-radius: 5px;
15 color: white;
16 float: left;
17 font-family: sans-serif;
18 font-size: 12px;
19 font-weight: bold;
20 line-height: 48px;
21 text-align: center;
22 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
23 width: 62px;
24 }
25
26 #triangle-right {
27 border-bottom: 6px solid transparent;
28 border-left: 8px solid rgba(0, 0, 0, 0.5);
29 border-top: 6px solid transparent;
30 display: inline;
31 float: left;
32 height: 0;
33 margin-top: 18px;
34 width: 0;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698