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

Side by Side Diff: Source/devtools/front_end/promises/promisesPanel.css

Issue 603623002: Rename PromisesPanel to PromisePane. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: REBASE Created 6 years, 2 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
« no previous file with comments | « Source/devtools/front_end/promises/promisePane.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 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 .promises .data-grid {
8 border: none;
9 flex: 1 1;
10 }
11
12 .promises .data-grid .odd {
13 background-color: #eee;
14 }
15
16 .promises .data-grid .header-container {
17 height: 30px;
18 }
19
20 .promises .data-grid .data-container {
21 top: 30px;
22 }
23
24 .promises .data-grid table.data {
25 background: transparent;
26 }
27
28 .promises .data-grid th {
29 border-bottom: none;
30 border-left: 1px solid rgb(205, 205, 205);
31 background-color: white;
32 }
33
34 .promises .data-grid td {
35 line-height: 17px;
36 height: 24px;
37 vertical-align: middle;
38 border-bottom: 1px solid rgb(205, 205, 205);
39 border-left: 1px solid rgb(205, 205, 205);
40 }
41
42 .promises .status {
43 border-radius: 25px;
44 width: 54px;
45 text-align: center;
46 color: white;
47 }
48
49 .promises .status.rejected {
50 background-color: #f66;
51 }
52
53 .promises .status.resolved {
54 background-color: #696;
55 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/promises/promisePane.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698