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

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

Issue 2651083002: DevTools: do not override font size to 11px (Closed)
Patch Set: more 11pxs Created 3 years, 10 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/searchableView.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
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .tooltip { 7 .tooltip {
8 background: hsl(0, 0%, 95%); 8 background: hsl(0, 0%, 95%);
9 border-radius: 2px; 9 border-radius: 2px;
10 color: hsl(0, 0%, 20%); 10 color: hsl(0, 0%, 20%);
11 padding: 5px 8px; 11 padding: 5px 8px;
12 font-size: 11px;
13 line-height: 14px; 12 line-height: 14px;
14 display: flex; 13 display: flex;
15 align-items: center; 14 align-items: center;
16 -webkit-filter: drop-shadow(0 1px 2px hsla(0, 0%, 0%, 0.3)); 15 -webkit-filter: drop-shadow(0 1px 2px hsla(0, 0%, 0%, 0.3));
17 border: 1px solid hsla(0, 0%, 0%, 0.1); 16 border: 1px solid hsla(0, 0%, 0%, 0.1);
18 background-clip: padding-box; 17 background-clip: padding-box;
19 box-sizing: border-box; 18 box-sizing: border-box;
20 position: absolute; 19 position: absolute;
21 visibility: hidden; 20 visibility: hidden;
22 transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, .2, 1); 21 transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, .2, 1);
(...skipping 18 matching lines...) Expand all
41 .tooltip.shown.instant { 40 .tooltip.shown.instant {
42 transition-delay: 0s; 41 transition-delay: 0s;
43 } 42 }
44 43
45 .tooltip-shortcut { 44 .tooltip-shortcut {
46 color: hsl(0, 0%, 45%); 45 color: hsl(0, 0%, 45%);
47 display: inline-block; 46 display: inline-block;
48 margin-left: 8px; 47 margin-left: 8px;
49 flex: 0 0 auto; 48 flex: 0 0 auto;
50 } 49 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/searchableView.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698