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

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

Issue 2651013004: MD History: Improve styling of grouped history toolbar during page load (Closed)
Patch Set: Rebase Created 3 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
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 flex: 1; 104 flex: 1;
105 } 105 }
106 106
107 #cancel-icon-button { 107 #cancel-icon-button {
108 -webkit-margin-end: 24px; 108 -webkit-margin-end: 24px;
109 -webkit-margin-start: 2px; 109 -webkit-margin-start: 2px;
110 } 110 }
111 111
112 /* Grouped toolbar. */ 112 /* Grouped toolbar. */
113 113
114 paper-tabs:unresolved {
115 visibility: hidden;
116 }
117
114 paper-tabs { 118 paper-tabs {
115 /* TODO(tsergeant): Align tabs with cards. */ 119 /* TODO(tsergeant): Align tabs with cards. */
116 --paper-tabs: { 120 --paper-tabs: {
117 font-size: inherit; 121 font-size: inherit;
118 }; 122 };
119 --paper-tabs-selection-bar-color: #fff; 123 --paper-tabs-selection-bar-color: #fff;
120 -webkit-margin-start: 32px; 124 -webkit-margin-start: 32px;
121 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height)); 125 height: calc(var(--toolbar-grouped-height) - var(--toolbar-height));
122 min-width: 300px; 126 min-width: 300px;
123 } 127 }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 on-click="onNextTap_" 257 on-click="onNextTap_"
254 disabled="[[isToday_(groupedOffset)]]"> 258 disabled="[[isToday_(groupedOffset)]]">
255 <iron-icon icon="cr:chevron-right"></iron-icon> 259 <iron-icon icon="cr:chevron-right"></iron-icon>
256 </button> 260 </button>
257 </div> 261 </div>
258 </div> 262 </div>
259 </template> 263 </template>
260 </template> 264 </template>
261 <script src="chrome://history/history_toolbar.js"></script> 265 <script src="chrome://history/history_toolbar.js"></script>
262 </dom-module> 266 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | chrome/browser/resources/md_history/lazy_load.vulcanized.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698