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

Side by Side Diff: dashboard/dashboard/static/base.css

Issue 2995833002: Switch dashboard to new flexbox. (Closed)
Patch Set: Created 3 years, 4 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
1 /** 1 /**
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 html { 7 html {
8 height: 100%; 8 height: 100%;
9 } 9 }
10 10
11 body { 11 body {
12 line-height: 1.4; 12 line-height: 1.4;
13 font: normal 13px arial,sans-serif; 13 font: normal 13px arial,sans-serif;
14 color: #222; 14 color: #222;
15 background-color: #fff; 15 background-color: #fff;
16 margin: 0; 16 margin: 0;
17 padding: 0 10px; 17 padding: 0 10px;
18 display: flex; 18 display: flex;
19 display: -webkit-flex;
20 flex-direction: column; 19 flex-direction: column;
21 -webkit-flex-direction: column;
22 min-height: 100%; 20 min-height: 100%;
23 } 21 }
24 22
25 nav-bar { 23 nav-bar {
26 width: 100%; 24 width: 100%;
27 } 25 }
28 26
29 h1 { 27 h1 {
30 align-self: center; 28 align-self: center;
31 -webkit-align-self: center;
32 } 29 }
33 30
34 a:link { 31 a:link {
35 color: #15c; 32 color: #15c;
36 } 33 }
37 34
38 a:visited { 35 a:visited {
39 color: #61c; 36 color: #61c;
40 } 37 }
41 38
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 72
76 /* Buttons */ 73 /* Buttons */
77 .kennedy-button, .kennedy-button-submit { 74 .kennedy-button, .kennedy-button-submit {
78 border-radius: 2px; 75 border-radius: 2px;
79 font-size: 11px; 76 font-size: 11px;
80 font-weight: bold; 77 font-weight: bold;
81 min-width: 54px; 78 min-width: 54px;
82 height: 27px; 79 height: 27px;
83 line-height: 27px; 80 line-height: 27px;
84 padding: 0px 8px; 81 padding: 0px 8px;
85 -webkit-user-select: none; 82 user-select: none;
86 } 83 }
87 84
88 .kennedy-button { 85 .kennedy-button {
89 background-color: #f5f5f5; 86 background-color: #f5f5f5;
90 border: 1px solid rgba(0,0,0,0.1); 87 border: 1px solid rgba(0,0,0,0.1);
91 color: #444; 88 color: #444;
92 background-image: linear-gradient(to bottom, #f5f5f5, #f1f1f1); 89 background-image: linear-gradient(to bottom, #f5f5f5, #f1f1f1);
93 cursor: default; 90 cursor: default;
94 } 91 }
95 92
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 position: relative 125 position: relative
129 } 126 }
130 127
131 input[type=checkbox]:checked::after { 128 input[type=checkbox]:checked::after {
132 font-size: 1.3em; 129 font-size: 1.3em;
133 content: "✓"; 130 content: "✓";
134 position: absolute; 131 position: absolute;
135 top: -5px; 132 top: -5px;
136 left: -1px; 133 left: -1px;
137 } 134 }
OLDNEW
« no previous file with comments | « dashboard/dashboard/pinpoint/elements/navigation-bar.html ('k') | dashboard/dashboard/static/benchmark_health_report.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698