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

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

Issue 551463003: DevTools: [Documentation] fix css style for renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 rgba(128, 128, 128, 0.4);
9 border-radius: 6px; 9 border-radius: 6px;
10 padding: 10px; 10 padding: 10px;
11 margin-bottom: 10px; 11 margin-bottom: 10px;
12 } 12 }
13 13
14 .documentation-section-title { 14 .documentation-section-title {
15 font-size: 120%; 15 font-size: 120%;
16 padding-bottom: 4px;
17 font-weight: bold; 16 font-weight: bold;
17 padding-top: 5px;
18 }
19
20 .documentation-section-content.documentation-return-value {
21 margin-top: 10px;
22 }
23
24 .documentation-parameter-header {
25 margin-top: 10px;
18 } 26 }
19 27
20 .documentation-link { 28 .documentation-link {
21 margin-left: 5px; 29 margin-left: 5px;
22 } 30 }
23 31
24 .documentation-highlighted-text { 32 .documentation-highlighted-text {
25 font-weight: bold; 33 font-weight: bold;
26 } 34 }
27 35
28 .documentation-view .documentation-method-signature.monospace { 36 .documentation-view .documentation-method-signature.monospace {
29 font-size: 120% !important; 37 font-size: 120% !important;
30 border: 1px solid gray; 38 border: 1px solid rgba(128, 128, 128, 0.4);
31 border-radius: 6px; 39 border-radius: 6px;
32 padding: 10px; 40 padding: 10px;
33 } 41 }
34 42
35 .documentation-section { 43 .documentation-section {
36 margin-bottom: 15px; 44 margin-bottom: 15px;
37 } 45 }
38 46
39 .documentation-section-content { 47 .documentation-section-content {
40 margin-left: 16px; 48 margin-left: 16px;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 115 }
108 116
109 .documentation-empty-page { 117 .documentation-empty-page {
110 display: flex; 118 display: flex;
111 flex-direction: column !important; 119 flex-direction: column !important;
112 } 120 }
113 121
114 .documentation-empty-page-align { 122 .documentation-empty-page-align {
115 flex-grow: 3; 123 flex-grow: 3;
116 } 124 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698