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

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 }
11
12 .timeline-landing-page .tabbed-pane {
13 padding: 10px 0 0 0;
14 }
15
16 .timeline-landing-page .tabbed-pane-header {
17 background-color: inherit;
18 flex-basis: 33px;
19 align-items: center;
20 }
21
22 .timeline-landing-page .tabbed-pane-header-contents {
23 margin-left: 0;
24 }
25
26 .timeline-landing-page .tabbed-pane-header-tab {
27 border: none;
28 padding: 4px 12px;
29 cursor: pointer;
30 font-size: 13px;
31 height: 30px;
32 }
33
34 .timeline-landing-page .timeline-perspective-body {
35 align-items: stretch;
36 line-height: 1.5;
37 padding: 12px;
38 white-space: pre-line;
39 width: 100%;
40 }
41
42 .timeline-landing-page .timeline-perspective-body > div {
43 margin-bottom: 12px;
44 flex-shrink: 0;
45 }
46
47 .timeline-landing-page button.action-button {
48 width: 90px;
49 height: 26px;
50 margin: 10px 0 0 0;
51 }
52
53 .timeline-landing-page .recording-setting {
54 display: flex;
55 align-items: flex-start;
56 margin-bottom: 2px !important;
57 }
58
59 .timeline-landing-page .recording-setting input {
60 margin-left: 0;
61 margin-right: 8px;
62 }
63
64 .timeline-landing-page .recording-setting label {
65 flex: 100px 0 0;
66 }
67
68 .timeline-landing-page .recording-setting-description {
69 color: #999;
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698