CSS样式  |  27行  |  596 B

/* 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.
 */
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;
}

info-bar > .message {
  -webkit-flex: 1 1 auto;
}

info-bar > .buttons {
}