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

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: Changed switching between pages & addressed comments 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 {
30 cursor: default;
calamity 2016/02/11 00:23:31 I think it makes sense to have the same cursor for
yingran 2016/02/11 02:06:36 Done.
31 }
32
33 .selected p {
34 color: #47d;
35 }
36 </style>
37 <div id="navigation-menu">
38 <div on-tap="changeDisplay" id="history-button"
39 class="nav-button selected">
40 <p i18n-content="title"></p>
41 <paper-ripple></paper-ripple>
42 </div>
43 <div on-tap="changeDisplay" id="synced-tabs-button" class="nav-button">
44 <p>Open Tabs</p>
45 <paper-ripple></paper-ripple>
46 </div>
47 </div>
48 </template>
49 <script src="chrome://history/side_bar.js"></script>
50 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698