/* Copyright (c) 2012 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. */ .capture-status-view { background: rgb(238, 0, 0); } .halted-status-view { background: rgb(0, 138, 0); } .loaded-status-view { background: rgb(113, 113, 171); } #capture-status-view { -webkit-align-items: center; display: -webkit-flex; } .capture-status-view-link, .capture-status-view-link:visited, .capture-status-view-link:active { color: white; text-decoration: none; } .capture-status-view-link:hover { color: white; text-decoration: underline; } /* Completely un-style the SELECT. Will place an arrow over it manually. */ #capture-status-view-actions { -webkit-appearance: none; background: none; border: none; height: 25px; outline: none; width: 30px; } .capture-status-view-arrow { display: inline-block; position: relative; } .capture-status-view-arrow::after { color: black; content: '\25bc'; font-size: 9px; left: 0; line-height: 25px; pointer-events: none; position: absolute; text-align: center; top: 0; width: 100%; }