summaryrefslogtreecommitdiff
path: root/chromium/ui/webui/resources/cr_elements/md_select_css.html
blob: a5c641ba7ebb094d68e7d36e9bb4051bfb5537cb (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="../html/polymer.html">

<link rel="import" href="shared_vars_css.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">

<dom-module id="md-select">
  <template>
    <style>
      .md-select {
        --md-arrow-width: 10px;
        --md-select-bg-color: var(--google-grey-100);
        --md-select-focus-shadow-color: rgba(var(--google-blue-600-rgb), .4);
        --md-select-option-bg-color: white;
        --md-select-side-padding: 8px;
        --md-select-text-color: var(--cr-primary-text-color);

        -webkit-appearance: none;
        background: url(chrome://resources/images/arrow_down.svg)
            calc(100% - var(--md-select-side-padding))
            center no-repeat;
        background-color: var(--md-select-bg-color);
        background-size: var(--md-arrow-width);
        border: none;
        border-radius: 4px;
        color: var(--md-select-text-color);
        cursor: pointer;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        max-width: 100%;
        outline: none;
        padding-bottom: 6px;
        /* Ensures 3px space between text and arrow */
        padding-inline-end: calc(var(--md-select-side-padding) +
            var(--md-arrow-width) + 3px);
        padding-inline-start: var(--md-select-side-padding);
        padding-top: 6px;
        width: var(--md-select-width, 200px);
      }

      @media (prefers-color-scheme: dark) {
        .md-select {
          --md-select-bg-color: rgba(0, 0, 0, .3);
          --md-select-focus-shadow-color:
              rgba(var(--google-blue-300-rgb), .5);
          --md-select-option-bg-color: var(--google-grey-900-white-4-percent);
          background-image: url(chrome://resources/images/dark/arrow_down.svg);
        }
      }

      /* Makes sure anything within the dropdown menu has a background. */
      .md-select :-webkit-any(option, optgroup) {
        background-color: var(--md-select-option-bg-color);
      }

      .md-select[disabled] {
        opacity: var(--cr-disabled-opacity);
        pointer-events: none;
      }

      .md-select:focus {
        box-shadow: 0 0 0 2px var(--md-select-focus-shadow-color);
      }

      /* Should not have an outline if opened by mouse click. */
      .md-select:active {
        box-shadow: none;
      }

      :host-context([dir=rtl]) .md-select {
        background-position-x: var(--md-select-side-padding);
      }
    </style>
  </template>
</dom-module>