Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / ui / infobar.css
blob92a0f4e369c781703862c0feae4d804d8f971a34
1 /*
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
4 * found in the LICENSE file.
5 */
7 .infobar {
8 color: rgb(34, 34, 34);
9 padding: 4px 6px;
10 white-space: nowrap;
11 display: flex;
12 align-items: flex-start;
13 flex: auto;
14 border-bottom: 1px solid rgb(171, 171, 171);
17 .infobar-warning {
18 background-color: rgb(253, 242, 192);
21 .infobar-info {
22 background-color: rgb(255, 255, 255);
25 .infobar .icon {
26 flex: none;
29 .infobar .content {
30 flex: auto;
31 padding-left: 3px;
32 overflow: hidden;
33 text-overflow: ellipsis;
36 .infobar .close-button {
37 flex: none;
40 .infobar .disable-button {
41 flex: none;
42 margin-right: 5px;
43 text-decoration: underline;
44 cursor: pointer;