Projet

Général

Profil

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

Anonyme, 31 mai 2018 17:46

Télécharger (1,46 ko)

Voir les différences:

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

 static/includes/_cells.scss | 21 ++++++++++++++++++---
 1 file changed, 18 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 {
......
172 179
	}
173 180

  
174 181
	li.more-items a {
182
		display: block;
175 183
		padding: 0.5rem 1rem;
176 184
		cursor: pointer;
177 185
		text-align: center;
......
207 215

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

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

  
219
-