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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/timeline/timelineLandingPage.css

Issue 2557973002: DevTools: Introduce Landing page for Timeline panel. (Closed)
Patch Set: addressing comments Created 4 years 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 (c) 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 .timeline-landing-page {
8 align-self: center;
9 max-width: 500px;
10 font-size: 13px;
11 }
12
13 .timeline-landing-page .tabbed-pane {
14 padding: 10px 0 0 0;
15 }
16
17 .timeline-landing-page .tabbed-pane-header {
pfeldman 2016/12/10 02:15:59 This should be removed.
18 background-color: inherit;
19 flex-basis: 33px;
20 align-items: center;
21 }
22
23 .timeline-landing-page .tabbed-pane-header-contents {
pfeldman 2016/12/10 02:15:59 This should be removed.
24 margin-left: 0;
25 }
26
27 .timeline-landing-page .tabbed-pane-header-tab {
pfeldman 2016/12/10 02:15:59 This should be removed.
28 border: none;
29 padding: 4px 12px;
30 cursor: pointer;
31 font-size: 13px;
32 height: 30px;
33 }
34
35 .timeline-landing-page .timeline-perspective-body {
36 align-items: stretch;
37 line-height: 1.5;
38 padding: 12px;
39 white-space: pre-line;
40 width: 100%;
41 font-size: 12px;
42 }
43
44 .timeline-landing-page .timeline-perspective-body > div {
45 margin-bottom: 12px;
46 flex-shrink: 0;
47 }
48
49 .timeline-landing-page button.action-button {
pfeldman 2016/12/10 02:15:59 Please use devtools button custom element.
50 width: 90px;
51 height: 26px;
52 margin: 10px 0 0 0;
53 }
54
55 .timeline-landing-page .recording-setting {
56 display: flex;
57 align-items: flex-start;
58 margin-bottom: 2px !important;
59 }
60
61 .timeline-landing-page .recording-setting input {
pfeldman 2016/12/10 02:15:59 Please use devtools checkbox with label custom ele
62 margin-left: 0;
63 margin-right: 8px;
64 }
65
66 .timeline-landing-page .recording-setting label {
pfeldman 2016/12/10 02:15:59 ditto
67 flex: 100px 0 0;
68 }
69
70 .timeline-landing-page .recording-setting-description {
71 color: #999;
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698