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

Unified Diff: appengine/swarming/elements/res/imp/common/single-page-style.html

Issue 2408743002: Move elements/ to ui/ (Closed)
Patch Set: rebase again Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/elements/res/imp/common/single-page-style.html
diff --git a/appengine/swarming/elements/res/imp/common/single-page-style.html b/appengine/swarming/elements/res/imp/common/single-page-style.html
deleted file mode 100644
index 6ab89133b4e8004543ab0c9f9bf64a63d89875d8..0000000000000000000000000000000000000000
--- a/appengine/swarming/elements/res/imp/common/single-page-style.html
+++ /dev/null
@@ -1,88 +0,0 @@
-<!--
- Copyright 2016 The LUCI Authors. All rights reserved.
- Use of this source code is governed under the Apache License, Version 2.0
- that can be found in the LICENSE file.
-
- This contains the shared styles for the "single page" look, e.g. bot-page.
- To use, include this file and then
-
- <style include="single-page-style">
-
- -->
-
-<dom-module id="single-page-style">
- <template>
- <style>
- .header {
- max-width: 800px;
- }
-
- .title {
- font-size: 1.5em;
- font-weight: bold;
- margin: 5px;
- }
- .id_input {
- margin-left: 5px;
- --paper-input-container-input: {
- font-size: 2em;
- };
- }
- .refresh {
- max-width: 40px;
- max-height: 40px;
- width: initial;
- height: initial;
- }
- button {
- min-width: 4em;
- max-height: 55px;
- }
-
- table {
- border-collapse: collapse;
- margin-left: 5px;
- margin-bottom: 8px;
- }
- td,
- th {
- border: 1px solid #BBB;
- padding: 5px;
- }
-
- .tabs {
- background-color: #1F78B4;
- color: #fff;
- max-width: 600px;
- margin-left: 5px;
- --paper-checkbox-label-color: #fff;
- }
-
- paper-tab {
- background-color: #A6CEE3;
- color: #000;
- }
-
- paper-tab.iron-selected {
- background-color: #1F78B4;
- color: #fff;
- font-weight: bold;
- text-decoration: underline;
- }
-
- paper-tab[disabled] {
- background-color: #AAA;
- text-decoration: line-through;
- }
-
- /* These colors are from buildbot */
- .quarantined {
- background-color: #ffdddd;
- }
- .dead {
- background-color: #cccccc;
- }
-
- </style>
- </template>
-</dom-module>

Powered by Google App Engine
This is Rietveld 408576698