summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/tab_strip/tab_strip.html
blob: 20b58a70a3cb96c73667e8501b9538d3cf6b419b (plain)
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
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
    <style>
      html {
        --google-grey-50-rgb: 248, 249, 250;
        --google-grey-200-rgb: 232, 234, 237;
        --google-grey-300-rgb: 218, 220, 224;
        --google-grey-800-rgb: 60, 64, 67;
        --google-grey-900-rgb: 32, 33, 36;
        --google-blue-300-rgb: 138, 180, 248;
        --google-blue-500-rgb: 66, 133, 244;

        --tabstrip-background-color: $i18n{frameColor};
        --tabstrip-tab-height: 216px;
        --tabstrip-tab-width: 288px;
        --tabstrip-tab-border-radius: 8px;
        --tabstrip-tab-active-border-color: rgb(var(--google-blue-500-rgb));
      }

      body {
        background: var(--tabstrip-background-color);
        margin: 0;
        padding: 0;
      }

      ::-webkit-scrollbar {
        display: none;
      }
    </style>
  </head>
  <body>
    <tabstrip-tab-list></tabstrip-tab-list>
    <script src="tab_list.js" type="module"></script>
  </body>
</html>