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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 Copyright 2016 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file.
5
6 This contains the shared styles for the "single page" look, e.g. bot-page.
7 To use, include this file and then
8
9 <style include="single-page-style">
10
11 -->
12
13 <dom-module id="single-page-style">
14 <template>
15 <style>
16 .header {
17 max-width: 800px;
18 }
19
20 .title {
21 font-size: 1.5em;
22 font-weight: bold;
23 margin: 5px;
24 }
25 .id_input {
26 margin-left: 5px;
27 --paper-input-container-input: {
28 font-size: 2em;
29 };
30 }
31 .refresh {
32 max-width: 40px;
33 max-height: 40px;
34 width: initial;
35 height: initial;
36 }
37 button {
38 min-width: 4em;
39 max-height: 55px;
40 }
41
42 table {
43 border-collapse: collapse;
44 margin-left: 5px;
45 margin-bottom: 8px;
46 }
47 td,
48 th {
49 border: 1px solid #BBB;
50 padding: 5px;
51 }
52
53 .tabs {
54 background-color: #1F78B4;
55 color: #fff;
56 max-width: 600px;
57 margin-left: 5px;
58 --paper-checkbox-label-color: #fff;
59 }
60
61 paper-tab {
62 background-color: #A6CEE3;
63 color: #000;
64 }
65
66 paper-tab.iron-selected {
67 background-color: #1F78B4;
68 color: #fff;
69 font-weight: bold;
70 text-decoration: underline;
71 }
72
73 paper-tab[disabled] {
74 background-color: #AAA;
75 text-decoration: line-through;
76 }
77
78 /* These colors are from buildbot */
79 .quarantined {
80 background-color: #ffdddd;
81 }
82 .dead {
83 background-color: #cccccc;
84 }
85
86 </style>
87 </template>
88 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698