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