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

Side by Side Diff: Source/devtools/front_end/documentationView.css

Issue 532223002: DevTools: [Documentation] Update empty page style (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iliia-patch
Patch Set: Use flex Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 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 .documentation-code { 7 .documentation-code {
8 border: 1px solid gray; 8 border: 1px solid gray;
9 border-radius: 6px; 9 border-radius: 6px;
10 padding: 10px; 10 padding: 10px;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 .documentation-box { 88 .documentation-box {
89 padding: 6px; 89 padding: 6px;
90 padding-left: 10px; 90 padding-left: 10px;
91 padding-right: 10px; 91 padding-right: 10px;
92 text-decoration: none; 92 text-decoration: none;
93 margin-left: 10px; 93 margin-left: 10px;
94 margin-top: 5px; 94 margin-top: 5px;
95 border-radius: 5px; 95 border-radius: 5px;
96 } 96 }
97
98 .documentation-not-found {
99 display: flex;
100 justify-content: center;
101 align-items: flex-end;
102 font-size: 24px;
lushnikov 2014/09/09 14:34:02 can we use 160% here? should be almost the same
103 font-weight: bold;
104 color: rgb(75%, 75%, 75%);
lushnikov 2014/09/09 14:34:02 can we use integers instead of percentage?
semeny 2014/09/09 15:38:07 Done.
105 flex-shrink: 0;
106 flex-grow: 2;
107 }
108
109 .documentation-empty-page-align {
110 flex-grow: 3;
111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698