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

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

Issue 2092023002: PDF: Fix layout issues caused by removing iron-flex-layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: inline-block;
raymes 2016/06/27 01:36:03 This isn't needed now? (Or was it just never neede
tsergeant 2016/06/27 01:47:08 It's not needed now, I'm...not sure if it was actu
7 text-align: start; 6 text-align: start;
8 } 7 }
9 8
10 #container { 9 #container {
11 position: absolute; 10 position: absolute;
12 /* Controls the position of the dropdown relative to the right of the screen. 11 /* Controls the position of the dropdown relative to the right of the screen.
13 * Default is aligned with the right of the toolbar buttons. 12 * Default is aligned with the right of the toolbar buttons.
14 * TODO(tsergeant): Change the layout of the dropdown so this is not required. 13 * TODO(tsergeant): Change the layout of the dropdown so this is not required.
15 */ 14 */
16 right: var(--viewer-toolbar-dropdown-right-distance, 36px); 15 right: var(--viewer-toolbar-dropdown-right-distance, 36px);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 } 50 }
52 51
53 h1 { 52 h1 {
54 border-bottom: 1px solid rgb(219, 219, 219); 53 border-bottom: 1px solid rgb(219, 219, 219);
55 color: rgb(33, 33, 33); 54 color: rgb(33, 33, 33);
56 font-size: 77.8%; 55 font-size: 77.8%;
57 font-weight: 500; 56 font-weight: 500;
58 margin: 0; 57 margin: 0;
59 padding: 14px 28px; 58 padding: 14px 28px;
60 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698