Projet

Général

Profil

0001-style-vertical-align-cell-text-to-the-bottom-7396.patch

Frédéric Péters, 29 mai 2015 16:06

Télécharger (1,08 ko)

Voir les différences:

Subject: [PATCH] style: vertical-align cell text to the bottom (#7396)

 wcs/qommon/static/css/dc2/gadjo.css | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)
wcs/qommon/static/css/dc2/gadjo.css
276 276
}
277 277

  
278 278
ul.apps li {
279
	display: block;
279
	display: table;
280 280
	float: left;
281 281
	margin-right: 1em;
282 282
	margin-bottom: 1em;
......
286 286
	background-color: transparent;
287 287
	background-repeat: no-repeat;
288 288
	background-position: 50% 50%;
289
}
290

  
291
ul.apps li a {
292
	display: block;
289
	display: table-cell;
290
	vertical-align: bottom;
293 291
	width: 120px;
294
	height: 30px;
295
	padding-top: 90px;
292
	height: 110px;
293
	padding-bottom: 10px;
296 294
	font-weight: bold;
297 295
	text-align: center;
298 296
	border: 1px dotted #666;
299
-