Projet

Général

Profil

0001-cells-avoid-lists-of-forms-contents-to-overlap-23977.patch

Anonyme, 22 mai 2018 18:15

Télécharger (1,3 ko)

Voir les différences:

Subject: [PATCH] cells: avoid lists of forms contents to overlap (#23977)

 static/includes/_cells.scss | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)
static/includes/_cells.scss
125 125
	z-index: 0;
126 126

  
127 127
	& > li > a {
128
		display: -ms-flexbox;
129
		display: flex;
130
		-ms-align-items: baseline;
131
		align-items: baseline;
132

  
133
		-ms-flex-wrap: wrap;
134
		flex-wrap: wrap;
128 135
		padding: 1rem;
129
		display: block;
130 136
		color: $cell-entry-color;
131 137
		border-bottom: 1px solid $cell-entry-border-color;
132 138
		position: relative;
139

  
133 140
		&:hover {
134 141
			color: $cell-entry-hover-color;
135 142
			@if $cell-entry-hover-effect != none {
......
207 214

  
208 215
div.list-of-forms {
209 216
	span.form-number {
217
		-ms-flex-grow: 1;
218
		flex-grow: 1;
219

  
220
		margin-right: 1rem;
210 221
		opacity: 0.3;
211 222
		font-size: 80%;
212 223
	}
213 224
	span.form-status {
214
		position: absolute;
215
		right: 1ex;
225
		margin-right: 0;
226
		margin-left: auto;
227
	}
228
	span.form-title {
229
		margin-right: 1rem;
216 230
	}
217 231
}
218 232

  
219
-