summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/shared/chooser_shared_css.html
blob: 52b75a13193127c06b50826d6d9f02faf684573f (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
<link rel="import" href="chrome://resources/html/polymer.html">

<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
<link rel="import" href="chrome://resources/cr_elements/md_select_css.html">
<link rel="import" href="navi_colors_css.html">

<dom-module id="chooser-shared-css">
  <template>
    <style include="navi-colors-css">
      .option {
        background: var(--cr-card-background-color);
        border: 1px solid var(--navi-border-color);
        color: var(--cr-primary-text-color);
        cursor: pointer;
        flex-direction: column;
      }

      .option:hover {
        box-shadow: var(--navi-option-box-shadow);
      }

      .option-name {
        font-size: .875rem;
      }

      .button-bar {
        display: flex;
        justify-content: space-between;
      }

      :host-context([dir=rtl]) iron-icon[icon='cr:chevron-right'] {
        transform: scaleX(-1);
      }

      iron-icon[icon='cr:chevron-right'] {
        height: 1.25rem;
        margin-inline-end: -.625rem;
        margin-inline-start: .375rem;
        width: 1.25rem;
      }
    </style>
  </template>
</dom-module>