summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/shared/chooser_shared_css.html
blob: d7346722deb3603c302aab95fe8fb72ee147cece (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
<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>