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
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65

content / browser / resources / attribution_reporting / attribution_internals.css [blame]

/* Copyright 2020 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

* {
  box-sizing: border-box;
}

body {
  color: rgb(48, 57, 66);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  height: 100vh;
  margin: 0;

  --header-background: rgb(241, 243, 244);
  --header-hover-background: var(--border-color);
  --border-color: rgb(218, 220, 224);
  --data-hover-background: #e8f0fe;
  --data-selected-background: #a6c8ff;
  --cell-padding: 16px;
}

header {
  padding: 1rem 1rem 0 1rem;
}

cr-tab-box {
  flex: 1;
  width: 100%;
  min-height: 0;
}

attribution-internals-table {
  min-width: 0;
  flex: 1;
}

attribution-detail-table {
  min-width: 0;
  flex: 2;
}

div[slot='panel'][selected] {
  column-gap: 1rem;
  display: flex;
  width: 100%;
  padding: 1rem 0;
}

header button {
  font: inherit;
  margin-inline-end: 30px;
}

div[slot='tab']::before {
  color: transparent;
  content: '⬤ ' / '';
}

div[slot='tab'].unread::before {
  color: rgb(26,115,232);
  content: '⬤ ' / '(Unread) ';
}