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

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

Issue 1641573005: Regression:[Devtools]Unable to close 'This script is blackboxed..' warning message without closing … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « no previous file | 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 2015 The Chromium Authors. All rights reserved. 2 * Copyright 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 .infobar { 7 .infobar {
8 color: rgb(34, 34, 34); 8 color: rgb(34, 34, 34);
9 display: flex; 9 display: flex;
10 flex: auto; 10 flex: auto;
11 border-bottom: 1px solid rgb(171, 171, 171); 11 border-bottom: 1px solid rgb(171, 171, 171);
12 flex-direction: column; 12 flex-direction: column;
13 align-items: stretch; 13 align-items: stretch;
14 position: relative;
14 } 15 }
15 16
16 .infobar-warning { 17 .infobar-warning {
17 background-color: rgb(253, 242, 192); 18 background-color: rgb(253, 242, 192);
18 } 19 }
19 20
20 .infobar-info { 21 .infobar-info {
21 background-color: rgb(255, 255, 255); 22 background-color: rgb(255, 255, 255);
22 } 23 }
23 24
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 .warning-icon { 81 .warning-icon {
81 -webkit-mask-image: url(Images/ic_warning_black_18dp.svg); 82 -webkit-mask-image: url(Images/ic_warning_black_18dp.svg);
82 background-color: hsl(44, 92%, 50%); 83 background-color: hsl(44, 92%, 50%);
83 } 84 }
84 85
85 .icon { 86 .icon {
86 -webkit-mask-size: 18px 18px; 87 -webkit-mask-size: 18px 18px;
87 width: 18px; 88 width: 18px;
88 height: 19px; 89 height: 19px;
89 } 90 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698