summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/md_history/shared_style.html
blob: ea50379198571f302c6c5c7889c0bf9912348ebb (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
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
66
67
68
69
70
71
72
73
74
75
<link rel="import" href="chrome://history/shared_vars.html">
<link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html">

<dom-module id="shared-style">
  <template>
    <style include="cr-hidden-style">
      a {
        color: var(--link-color);
        text-decoration: none;
      }

      .card-title {
        align-items: center;
        border-bottom: 1px solid var(--card-border-color);
        border-radius: 2px 2px 0 0;
        display: flex;
        font-size: 108%;
        font-weight: 500;
        height: 48px;
        line-height: 48px;
        overflow: hidden;
        padding: 0 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .centered-message {
        align-items: center;
        color: var(--md-loading-message-color);
        display: flex;
        flex: 1;
        font-size: 108%;
        font-weight: 500;
        height: 100%;
        justify-content: center;
      }

      .website-icon {
        background-repeat: no-repeat;
        background-size: 16px;
        height: 16px;
        width: 16px;
      }

      .website-title {
        -webkit-margin-start: 16px;
        color: var(--primary-text-color);
        overflow: hidden;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      paper-icon-button-light {
        background: none;
        border: none;
        height: 36px;
        outline: none;
        width: 36px;
      }

      paper-icon-button-light.more-vert-button > button {
        padding: 8px;
      }

      paper-icon-button-light.more-vert-button div {
        border: 2px solid var(--secondary-text-color);
        border-radius: 2px;
        margin: 1px 8px;
        pointer-events: none;
        transform: scale(0.8);
      }
    </style>
  </template>
</dom-module>