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: lib/resources/styles.css

Issue 1184733002: signatures now appear on the same line as the name (Closed) Base URL: git@github.com:dart-lang/dartdoc.git@master
Patch Set: Created 5 years, 6 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 2
3 Colors 3 Colors
4 4
5 Palette generated by Material Palette - materialpalette.com/cyan/teal 5 Palette generated by Material Palette - materialpalette.com/cyan/teal
6 6
7 .dark-primary-color { background: #0097A7; } 7 .dark-primary-color { background: #0097A7; }
8 .default-primary-color { background: #00BCD4; } 8 .default-primary-color { background: #00BCD4; }
9 .light-primary-color { background: #B2EBF2; } 9 .light-primary-color { background: #B2EBF2; }
10 .text-primary-color { color: #FFFFFF; } 10 .text-primary-color { color: #FFFFFF; }
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 .dl-horizontal dd { 154 .dl-horizontal dd {
155 margin-left: 320px; 155 margin-left: 320px;
156 } 156 }
157 157
158 .dl-horizontal dt { 158 .dl-horizontal dt {
159 width: 320px; 159 width: 320px;
160 } 160 }
161 } 161 }
162 162
163 dl dt.callable .name { 163 dl dt.callable .name {
164 display: block;
165 float: none; 164 float: none;
166 width: auto; 165 width: auto;
167 } 166 }
168 167
169 dl dt.callable .signature {
170 display:block;
171 }
172
173 .signature a { 168 .signature a {
174 color: rgb(51, 51, 51); 169 color: rgb(51, 51, 51);
175 } 170 }
176 171
177 .optional { 172 .optional {
178 font-style: italic; 173 font-style: italic;
179 } 174 }
180 175
181 .deprecated { 176 .deprecated {
182 text-decoration: line-through; 177 text-decoration: line-through;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 font-style: italic; 282 font-style: italic;
288 } 283 }
289 284
290 .readable-writable { 285 .readable-writable {
291 font-style: italic; 286 font-style: italic;
292 } 287 }
293 288
294 section.multi-line-signature div.parameters { 289 section.multi-line-signature div.parameters {
295 margin-left: 16px; 290 margin-left: 16px;
296 } 291 }
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