summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/print_preview/new/color_settings.html
blob: 242cf8789c8a89c88d6aa3fa6e2eb1a2a7f0215c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<link rel="import" href="chrome://resources/html/polymer.html">

<link rel="import" href="print_preview_shared_css.html">
<link rel="import" href="select_css.html">
<link rel="import" href="select_behavior.html">
<link rel="import" href="settings_section.html">

<dom-module id="print-preview-color-settings">
  <template>
    <style include="print-preview-shared select">
    </style>
    <print-preview-settings-section>
      <span id="color-label" slot="title">$i18n{optionColor}</span>
      <div slot="controls">
        <select aria-labelledby="color-label" disabled$="[[disabled]]">
          <option value="bw" selected>$i18n{optionBw}</option>
          <option value="color">$i18n{optionColor}</option>
        </select>
      </div>
    </print-preview-settings-section>
  </template>
  <script src="color_settings.js"></script>
</dom-module>