blob: e02a07aaba98a59dc028024fc6c139c881f11eb5 [file] [log] [blame]
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}"
class="loading $i18n{loadTimeClasses}" $i18n{dark}>
<head>
<meta charset="utf8">
<title>$i18n{title}</title>
<if expr="not optimize_webui">
<base href="chrome://extensions">
</if>
<link rel="stylesheet" href="chrome://resources/css/md_colors.css">
<style>
html {
background: var(--md-background-color);
/* Remove 300ms delay for 'click' event, when using touch interface. */
touch-action: manipulation;
}
html.loading::before,
html.loading body::before {
box-sizing: border-box;
content: '';
display: block;
}
html.loading::before {
background: var(--md-toolbar-color);
height: 56px;
}
/* Mimics the developer mode toolbar until the real one loads. Note:
* .in-dev-mode is applied by i18n{loadTimeClasses}. */
html.loading.in-dev-mode body::before {
background-color: #fff;
border-bottom: 1px solid #e0e0e0; /* --google-grey-300 */
height: 52px;
}
html[dark].loading.in-dev-mode body::before {
background: none;
}
html[dark].loading.in-dev-mode::before,
html[dark].loading.in-dev-mode body::before {
border-bottom: 1px solid rgba(255, 255, 255, .1);
}
html,
body {
height: 100%;
line-height: 154%;
margin: 0;
overflow: hidden;
width: 100%;
}
</style>
</head>
<body>
<extensions-manager></extensions-manager>
<link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
<link rel="import" href="chrome://extensions/manager.html">
<link rel="import" href="chrome://resources/html/dark_mode.html">
</body>
</html>