| Index: chrome/browser/resources/md_history/history.html
|
| diff --git a/chrome/browser/resources/md_history/history.html b/chrome/browser/resources/md_history/history.html
|
| index 009049ab7fe815776d2511e4cbf1388d352e030d..1c15c5c8332f6235789bc09c4670c9120b735515 100644
|
| --- a/chrome/browser/resources/md_history/history.html
|
| +++ b/chrome/browser/resources/md_history/history.html
|
| @@ -16,38 +16,41 @@
|
|
|
| body {
|
| background: var(--md-background-color);
|
| - display: flex;
|
| - flex-direction: column;
|
| }
|
|
|
| /* Minimal styling required to display app shim. */
|
| - .loading history-app,
|
| - .app-shim {
|
| - display: none;
|
| + .loading history-app {
|
| + visibility: hidden;
|
| }
|
|
|
| - history-app {
|
| - flex: 1;
|
| + #app-shim {
|
| + display: none;
|
| }
|
|
|
| - .loading .app-shim {
|
| + .loading #app-shim {
|
| + bottom: 0;
|
| display: flex;
|
| + flex-direction: column;
|
| font-size: 123%;
|
| + height: 100%;
|
| + left: 0;
|
| + position: absolute;
|
| + right: 0;
|
| + top: 0;
|
| + }
|
| +
|
| + #app-shim span {
|
| + display: flex;
|
| }
|
|
|
| .loading #loading-toolbar {
|
| -webkit-padding-start: 24px;
|
| align-items: center;
|
| + background: var(--md-toolbar-color);
|
| color: #fff;
|
| - flex-direction: row;
|
| - font-weight: 400;
|
| height: 56px;
|
| }
|
|
|
| - .loading #loading-toolbar {
|
| - background: var(--md-toolbar-color);
|
| - }
|
| -
|
| .loading #loading-message {
|
| align-items: center;
|
| color: #b4b4b4;
|
| @@ -60,8 +63,11 @@
|
|
|
| <body class="loading">
|
| <history-app id="history-app"></history-app>
|
| - <span class="app-shim" id="loading-toolbar">$i18n{title}</span>
|
| - <span class="app-shim" id="loading-message">$i18n{loading}</span>
|
| +
|
| + <div id="app-shim">
|
| + <span id="loading-toolbar">$i18n{title}</span>
|
| + <span id="loading-message">$i18n{loading}</span>
|
| + </div>
|
|
|
| <link rel="import" href="chrome://resources/html/cr.html">
|
| <link rel="import" href="chrome://resources/html/util.html">
|
|
|