blob: 4f06e0692ebc61e4729d8e632a47d695f53f562c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
x-info-bar {
-webkit-align-items: center;
-webkit-flex: 0 0 auto;
background-color: rgb(252, 235, 162);
border-bottom: 1px solid #A3A3A3;
border-left: 1px solid white;
border-right: 1px solid #A3A3A3;
border-top: 1px solid white;
display: -webkit-flex;
height: 26px;
padding: 0 3px 0 3px;
}
.info-bar-hidden {
display: none;
}
x-info-bar > .message {
-webkit-flex: 1 1 auto;
}
x-info-bar > .buttons {
}
x-info-bar-group {
-webkit-flex: 0 0 auto;
-webkit-flex-direction: column;
display: -webkit-flex;
}
|