summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/management/management.html
blob: aea7f12bb74f847c2c00f94f96e2424665bd76ab (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
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}" class="loading">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, user-scalable=yes">
  <title>$i18n{title}</title>

  <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
  <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
  <style>
    html {
      background: var(--md-background-color);
      height: 100%;
      overflow: hidden;
    }

    html.loading::before {
      background-color: var(--md-toolbar-color);
      border-bottom: var(--md-toolbar-border);
      box-sizing: border-box;
      content: '';
      display: block;
      height: var(--md-toolbar-height);
    }

    body {
      height: 100%;
      margin: 0;
    }
  </style>

  <script type="module" src="management_ui.js"></script>
</head>
<body>
  <management-ui></management-ui>
</body>
</html>