Projet

Général

Profil

0002-style-add-base-styles-to-layout-fields-on-full-or-ha.patch

Frédéric Péters, 26 mai 2015 15:02

Télécharger (1,26 ko)

Voir les différences:

Subject: [PATCH 2/2] style: add base styles to layout fields on full or half
 width (#7355)

 data/themes/alto/wcs.css         |  1 -
 wcs/qommon/static/css/qommon.css | 23 +++++++++++++++++++++++
 2 files changed, 23 insertions(+), 1 deletion(-)
data/themes/alto/wcs.css
210 210
}
211 211

  
212 212
textarea {
213
	max-width: 455px;
214 213
}
215 214

  
216 215
p#breadcrumb {
wcs/qommon/static/css/qommon.css
484 484
	margin-left: 20%;
485 485
	background: #ddf;
486 486
}
487

  
488
div.halfwidth {
489
	width: 45%;
490
	float: left;
491
}
492

  
493
div.widget.halfwidth.right {
494
	clear: none;
495
	margin-left: 5%;
496
}
497

  
498
div.fullwidth {
499
	width: 95%;
500
}
501

  
502
div.halfwidth textarea,
503
div.fullwidth textarea,
504
div.halfwidth select,
505
div.fullwidth select,
506
div.halfwidth input,
507
div.fullwidth input {
508
	width: 100%;
509
}
487
-