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

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: Merged but tests not working everything else SEEMS ok 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
29 .selected p {
30 color: rgb(68, 119, 221);
31 }
32 </style>
33 <div id="navigation-menu">
34 <div on-tap="changeDisplay" id="history-button"
35 class="nav-button selected">
36 <p i18n-content="title"></p>
37 <paper-ripple></paper-ripple>
38 </div>
39 <div on-tap="changeDisplay" id="synced-tabs-button" class="nav-button">
40 <p>Open Tabs</p>
41 <paper-ripple></paper-ripple>
42 </div>
43 </div>
44 </template>
45 <script src="chrome://history/side_bar.js"></script>
46 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/shared_style.html ('k') | chrome/browser/resources/md_history/side_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698