* Rename some .js files to .ts
* Add minor fixes for eslint problems
* Add "export {};" line to files without imports and exports to mark
them as modules
* Updates server.go to handle imports without file extension correctly.
Change-Id: I4d4f1eaa689c6f351e64a2c3cfa4e8ac2d2e1f73
88 lines
2.4 KiB
TypeScript
88 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// Mark the file as a module. Otherwise typescript assumes this is a script
|
|
// and $_documentContainer is a global variable.
|
|
// See: https://www.typescriptlang.org/docs/handbook/modules.html
|
|
export {};
|
|
|
|
const $_documentContainer = document.createElement('template');
|
|
|
|
$_documentContainer.innerHTML = `<dom-module id="gr-menu-page-styles">
|
|
<template>
|
|
<style>
|
|
:host {
|
|
display: block;
|
|
}
|
|
main {
|
|
margin: var(--spacing-xxl) auto;
|
|
max-width: 50em;
|
|
}
|
|
.mainHeader {
|
|
margin-left: 14em;
|
|
padding: var(--spacing-l) 0 var(--spacing-l) var(--spacing-xxl);
|
|
}
|
|
main.table,
|
|
.mainHeader {
|
|
margin-top: 0;
|
|
margin-right: 0;
|
|
margin-left: 14em;
|
|
max-width: none;
|
|
}
|
|
h2.edited:after {
|
|
color: var(--deemphasized-text-color);
|
|
content: ' *';
|
|
}
|
|
.loading {
|
|
color: var(--deemphasized-text-color);
|
|
padding: var(--spacing-l);
|
|
}
|
|
@media only screen and (max-width: 67em) {
|
|
main {
|
|
margin: var(--spacing-xxl) 0 var(--spacing-xxl) 15em;
|
|
}
|
|
main.table {
|
|
margin-left: 14em;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 53em) {
|
|
.loading {
|
|
padding: 0 var(--spacing-l);
|
|
}
|
|
main {
|
|
margin: var(--spacing-xxl) var(--spacing-l);
|
|
}
|
|
main.table {
|
|
margin: 0;
|
|
}
|
|
.mainHeader {
|
|
margin-left: 0;
|
|
padding: var(--spacing-m) 0 var(--spacing-m) var(--spacing-l);
|
|
}
|
|
}
|
|
</style>
|
|
</template>
|
|
</dom-module>`;
|
|
|
|
document.head.appendChild($_documentContainer.content);
|
|
|
|
/*
|
|
FIXME(polymer-modulizer): the above comments were extracted
|
|
from HTML and may be out of place here. Review them and
|
|
then delete this comment!
|
|
*/
|