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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css

Issue 2272193002: [DevTools] Extract small-bubble component. (Closed)
Patch Set: Created 4 years, 4 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 | « third_party/WebKit/Source/devtools/front_end/ui/module.json ('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 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 div {
8 display: inline-block;
9 height: 14px;
10 vertical-align: middle;
11 white-space: nowrap;
12 padding: 1px 4px;
13 text-align: left;
14 font-size: 11px;
15 line-height: normal;
16 font-weight: bold;
17 text-shadow: none;
18 color: white;
19 margin-top: -1px;
20 border-radius: 7px;
21 }
22
23 div.info {
24 background-color: rgb(128, 151, 189);
25 }
26
27 div.debug {
28 background-color: rgb(0, 0, 255);
29 }
30
31 div.warning {
32 background-color: rgb(232, 164, 0);
33 }
34
35 div.error {
36 background-color: rgb(216, 35, 35);
37 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698