Projet

Général

Profil

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

Anonyme, 22 mai 2018 12:04

Télécharger (1,38 ko)

Voir les différences:

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

 static/includes/_cells.scss | 30 ++++++++++++++++++++++--------
 1 file changed, 22 insertions(+), 8 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-flex-pack: space-around;
131
		-ms-justify-content: space-around;
132
		justify-content: space-around;
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;
......
206 212
}
207 213

  
208 214
div.list-of-forms {
209
	span.form-number {
210
		opacity: 0.3;
211
		font-size: 80%;
212
	}
213
	span.form-status {
214
		position: absolute;
215
		right: 1ex;
215
	span {
216
		&.form-number {
217
			-ms-flex-grow: 1;
218
			flex-grow: 1;
219
			-ms-align-self: flex-end;
220
			align-self: flex-end;
221

  
222
			margin: 0 0.5rem;
223
			opacity: 0.3;
224
			font-size: 80%;
225
		}
226
		&.form-status {
227
			margin-right: 0;
228
			margin-left: auto;
229
		}
216 230
	}
217 231
}
218 232

  
219
-