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

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

Issue 1607403004: MD History: Display synced tabs history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: Style fixes & having no synced history will hide the sidebar Created 4 years, 10 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
(Empty)
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html">
4
5 <dom-module id="side-bar">
6 <template>
7 <style>
8 #navigation-menu {
9 padding-top: 5px;
10 width: 200px;
11 }
12
13 .nav-button {
14 @apply(--layout-center);
15 @apply(--layout-horizontal);
16 cursor: pointer;
17 height: 48px;
18 position: relative;
19 }
20
21 p {
22 -webkit-padding-start: 25px;
23 color: #333;
24 font-size: 14px;
25 font-weight: 500;
26 margin: 0;
27 }
28 </style>
29 <div id="navigation-menu">
30 <div on-tap="showHistory" id="history-button" class="nav-button">
31 <p id="history">History</p>
32 <paper-ripple></paper-ripple>
33 </div>
34 <div on-tap="showSyncedTabs" id="tab-button" class="nav-button">
calamity 2016/02/02 04:09:47 synced-tabs-button?
yingran 2016/02/09 04:21:34 Done.
35 <p id="synced-tabs">Open Tabs</p>
calamity 2016/02/02 04:09:47 These text elements shouldn't need ids.
yingran 2016/02/09 04:21:34 Done.
36 <paper-ripple></paper-ripple>
37 </div>
38 </div>
39 </template>
40 <script src="chrome://history/side_bar.js"></script>
41 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698