Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Side by Side Diff: chrome/browser/resources/md_history/synced_device_card.html

Issue 2277543003: MD History: Replace more-vert iron-icon with styled divs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
8 <link rel="import" href="chrome://history/browser_service.html"> 8 <link rel="import" href="chrome://history/browser_service.html">
9 <link rel="import" href="chrome://history/constants.html"> 9 <link rel="import" href="chrome://history/constants.html">
10 <link rel="import" href="chrome://history/searched_label.html"> 10 <link rel="import" href="chrome://history/searched_label.html">
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 </style> 66 </style>
67 <div id="history-item-container"> 67 <div id="history-item-container">
68 <div class="card-title" id="card-heading" aria-expanded$="[[opened]]" 68 <div class="card-title" id="card-heading" aria-expanded$="[[opened]]"
69 aria-controls="collapse" on-tap="toggleTabCard"> 69 aria-controls="collapse" on-tap="toggleTabCard">
70 <div> 70 <div>
71 [[device]] 71 [[device]]
72 <span id="last-update-time">[[lastUpdateTime]]</span> 72 <span id="last-update-time">[[lastUpdateTime]]</span>
73 </div> 73 </div>
74 <div id="right-buttons"> 74 <div id="right-buttons">
75 <button is="paper-icon-button-light" id="menu-button" 75 <button is="paper-icon-button-light" id="menu-button"
76 class="icon-button" on-tap="onMenuButtonTap_" 76 class="more-vert-button" on-tap="onMenuButtonTap_"
77 title="$i18n{moreActionsButton}"> 77 title="$i18n{moreActionsButton}">
78 <iron-icon icon="cr:more-vert"></iron-icon> 78 <div></div>
79 <div></div>
80 <div></div>
79 </button> 81 </button>
80 <button is="paper-icon-button-light" class="icon-button" 82 <button is="paper-icon-button-light" class="icon-button"
81 title$="[[getCollapseTitle_(opened)]]"> 83 title$="[[getCollapseTitle_(opened)]]">
82 <iron-icon icon="[[getCollapseIcon_(opened)]]" 84 <iron-icon icon="[[getCollapseIcon_(opened)]]"
83 id="dropdown-indicator"> 85 id="dropdown-indicator">
84 </iron-icon> 86 </iron-icon>
85 </button> 87 </button>
86 </div> 88 </div>
87 </div> 89 </div>
88 90
(...skipping 11 matching lines...) Expand all
100 <div id="window-separator" 102 <div id="window-separator"
101 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> 103 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]">
102 </div> 104 </div>
103 </template> 105 </template>
104 </div> 106 </div>
105 </iron-collapse> 107 </iron-collapse>
106 </div> 108 </div>
107 </template> 109 </template>
108 <script src="chrome://history/synced_device_card.js"></script> 110 <script src="chrome://history/synced_device_card.js"></script>
109 </dom-module> 111 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698