| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/av-icons.htm
l"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/av-icons.htm
l"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons
.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons
.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons
.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons
.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen
u.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen
u.html"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 .iron-selected:not(.menu-trigger) > iron-icon { | 25 .iron-selected:not(.menu-trigger) > iron-icon { |
| 26 fill: var(--google-blue-500); | 26 fill: var(--google-blue-500); |
| 27 } | 27 } |
| 28 | 28 |
| 29 .menu-trigger span { | 29 .menu-trigger span { |
| 30 -webkit-margin-end: 16px; | 30 -webkit-margin-end: 16px; |
| 31 flex: 1; | 31 flex: 1; |
| 32 } | 32 } |
| 33 | 33 |
| 34 paper-menu { | 34 paper-menu { |
| 35 background-color: var(--settings-background-color); | 35 background: none; /* Overrides <paper-menu> default. */ |
| 36 color: var(--settings-nav-grey); | 36 color: var(--settings-nav-grey); |
| 37 font-size: 13px; | 37 font-size: 13px; |
| 38 --paper-menu-selected-item: { | 38 --paper-menu-selected-item: { |
| 39 font-weight: 500; | 39 font-weight: 500; |
| 40 }; | 40 }; |
| 41 --paper-menu-focused-item-after: { | 41 --paper-menu-focused-item-after: { |
| 42 background: none; | 42 background: none; |
| 43 }; | 43 }; |
| 44 } | 44 } |
| 45 | 45 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 </paper-submenu> | 166 </paper-submenu> |
| 167 <paper-submenu on-tap="openPage_"> | 167 <paper-submenu on-tap="openPage_"> |
| 168 <div class="menu-trigger"> | 168 <div class="menu-trigger"> |
| 169 <span i18n-content="aboutProgram"></span> | 169 <span i18n-content="aboutProgram"></span> |
| 170 </div> | 170 </div> |
| 171 </paper-submenu> | 171 </paper-submenu> |
| 172 </paper-menu> | 172 </paper-menu> |
| 173 </template> | 173 </template> |
| 174 <script src="settings_menu.js"></script> | 174 <script src="settings_menu.js"></script> |
| 175 </dom-module> | 175 </dom-module> |
| OLD | NEW |