Projet

Général

Profil

0001-patch-thomas-endpoints.patch

Thomas Jund, 30 janvier 2020 16:26

Télécharger (1,67 ko)

Voir les différences:

Subject: [PATCH] patch thomas endpoints

 passerelle/static/css/style.css | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)
passerelle/static/css/style.css
212 212

  
213 213
@media screen and (max-width: 760px) {
214 214
	.example-url {
215
		padding-right: 0;
216
		margin: 0 5em 0 0;
217 215
		display: inline-block;
218 216
	}
219 217
}
220 218

  
221 219
.example-url {
222 220
	border: 0;
223
	margin-right: 4.3em;
221
	margin-right: 5.5em;
224 222
}
225 223

  
226 224
ul.get-params {
227 225
	padding-left: 1em;
228 226
}
229 227

  
230
#endpoints > div > ul {
228
#endpoints ul {
231 229
	padding: 0;
230
	list-style-type: none;
232 231
}
233 232

  
234
#endpoints > div > ul li {
235
	list-style-type: none;
236
	margin: 0.75em 0;
233
#endpoints > div > ul > li {
234
	margin: 1rem 0;
237 235
	position: relative;
238 236
	padding: 0.3em 0.75em;
239 237
}
......
289 287
	width: 4em;
290 288
	display: inline-block;
291 289
	text-align: center;
292
	margin: -1px -1px 0 0;
293
	cursor: pointer;
294 290
	position: absolute;
295
	right: 0;
296
	top: 0;
291
	right: -1px;
292
	top: -1px;
297 293
}
298 294

  
299 295
#endpoints .description, #endpoints .long-description {
......
303 299
}
304 300

  
305 301
#endpoints .params {
306
	padding: 0 0.3em;
302
	padding: 0.75em;
307 303
	background: hsla(0, 100%, 100%, 0.65);
308 304
	margin: 0.3em 0;
309 305
}
310 306

  
307
#endpoints .params > li + li {
308
	margin-top: 1rem;
309
}
310
#endpoints .get-params > li {
311
	margin-top: .5em;
312
	margin-left: 1em;
313
}
314

  
311 315
#endpoints .params .params-title {
312 316
	font-weight: bold;
313 317
}
314
-