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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/appManifestView.css

Issue 1942523002: DevTools: render parsed manifest data in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 4 years, 7 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 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 :host {
8 background-color: #f9f9f9;
9 }
10
11 .app-content-box {
12 background-color: white;
13 white-space: nowrap;
14 overflow: auto;
15 }
16
17 .app-manifest-title {
18 font-size: 14px;
19 padding: 12px 24px;
20 }
21
22 .app-manifest-url {
23 font-size: 12px;
24 padding: 0 24px 12px;
25 border-bottom: 1px solid rgb(230, 230, 230);
26 }
27
28 .app-manifest-section {
29 display: flex;
30 padding: 12px 6px;
31 border-bottom: 1px solid rgb(230, 230, 230);
32 flex-direction: column;
33 }
34
35 .app-manifest-section-title {
36 margin-bottom: 10px;
37 padding-left: 18px;
38 }
39
40 .app-manifest-field {
41 display: flex;
42 margin-top: 1px;
43 margin-bottom: 10px;
44 }
45
46 .app-manifest-field-name {
47 color: #888;
48 flex: 0 0 128px;
49 text-align: right;
50 padding: 0 6px;
51 white-space: pre;
52 }
53
54 .app-manifest-field-value {
55 flex: auto;
56 padding: 0 6px;
57 text-overflow: ellipsis;
58 overflow: hidden;
59 }
60
61 .app-manifest-field-value .color-swatch {
62 width: 16px;
63 height: 16px;
64 display: block;
65 }
66
67 .app-manifest-errors {
68 padding-left: 12px;
69 display: flex;
70 flex-direction: column;
71 }
72
73 .app-manifest-errors label {
74 padding: 4px;
75 }
76
77 .app-manifest-icons {
78 display: flex;
79 flex-direction: column;
80 }
81
82 .app-manifest-icons > img {
83 flex: none;
84 max-width: 200px;
85 max-height: 200px;
86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698