/*
 * Copyright 2019 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.
 */

.media-attributes-view {
  border-bottom: 1px solid var(--divider-color);
}

.media-property-renderer {
  line-height: 20px;
  height: 28px;
  padding: 4px 10px;
}

.media-property-renderer-hidden {
  display: none;
}

.media-property-renderer-title {
  font-size: 14px;
}

.media-property-renderer-contents {
  position: absolute;
  left: 200px;
  overflow: hidden;
  height: 20px;
}

.media-property-renderer:nth-child(even) {
  background: hsl(214deg 0% 97%); /* stylelint-disable-line plugin/use_theme_colors */
  /* See: crbug.com/1152736 for color variable migration. */
}

.media-property-renderer:hover {
  background: hsl(214deg 70% 97%); /* stylelint-disable-line plugin/use_theme_colors */
  /* See: crbug.com/1152736 for color variable migration. */
}

.-theme-with-dark-background .media-property-renderer:nth-child(even) {
  background: rgb(41 41 41);
}

.media-properties-frame {
  display: block;
  overflow-x: hidden;
}
