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

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

Issue 2620613003: MD History: Replace px-based font sizes with %-based sizing (Closed)
Patch Set: Created 3 years, 11 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/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/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml">
6 <link rel="import" href="chrome://history/browser_service.html"> 6 <link rel="import" href="chrome://history/browser_service.html">
7 <link rel="import" href="chrome://history/icons.html"> 7 <link rel="import" href="chrome://history/icons.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://history/shared_style.html">
9 9
10 <!-- Lazy loaded: iron-dropdown, paper-button, paper-icon-button-light, 10 <!-- Lazy loaded: iron-dropdown, paper-button, paper-icon-button-light,
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 101
102 #cancel-icon-button { 102 #cancel-icon-button {
103 -webkit-margin-end: 24px; 103 -webkit-margin-end: 24px;
104 -webkit-margin-start: 2px; 104 -webkit-margin-start: 2px;
105 } 105 }
106 106
107 /* Grouped toolbar. */ 107 /* Grouped toolbar. */
108 108
109 paper-tabs { 109 paper-tabs {
110 /* TODO(tsergeant): Align tabs with cards. */ 110 /* TODO(tsergeant): Align tabs with cards. */
111 --paper-tabs: {
112 font-size: inherit;
113 };
111 --paper-tabs-selection-bar-color: #fff; 114 --paper-tabs-selection-bar-color: #fff;
112 -webkit-margin-start: 32px; 115 -webkit-margin-start: 32px;
113 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height)); 116 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height));
114 min-width: 300px; 117 min-width: 300px;
115 } 118 }
116 119
117 paper-tab { 120 paper-tab {
118 --paper-tab-ink: rgba(255, 255, 255, 0.4); 121 --paper-tab-ink: rgba(255, 255, 255, 0.4);
119 font-size: 13px;
120 text-transform: uppercase; 122 text-transform: uppercase;
121 } 123 }
122 124
123 #grouped-buttons-container { 125 #grouped-buttons-container {
124 align-items: center; 126 align-items: center;
125 display: flex; 127 display: flex;
126 } 128 }
127 129
128 #grouped-nav-container { 130 #grouped-nav-container {
129 -webkit-margin-end: 16px; 131 -webkit-margin-end: 16px;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 on-tap="onNextTap_" 252 on-tap="onNextTap_"
251 disabled="[[isToday_(groupedOffset)]]"> 253 disabled="[[isToday_(groupedOffset)]]">
252 <iron-icon icon="cr:chevron-right"></iron-icon> 254 <iron-icon icon="cr:chevron-right"></iron-icon>
253 </button> 255 </button>
254 </div> 256 </div>
255 </div> 257 </div>
256 </template> 258 </template>
257 </template> 259 </template>
258 <script src="chrome://history/history_toolbar.js"></script> 260 <script src="chrome://history/history_toolbar.js"></script>
259 </dom-module> 261 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | chrome/browser/resources/md_history/lazy_load.crisper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698