Projet

Général

Profil

0001-scss-more-items-button-40883.patch

Lauréline Guérin, 02 avril 2020 10:31

Télécharger (1,34 ko)

Voir les différences:

Subject: [PATCH] scss: more-items button (#40883)

 static/includes/_cells.scss | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
static/includes/_cells.scss
137 137
	margin: 1em;
138 138
}
139 139

  
140
button.more-items--button {
141
	width: 100%;
142
	padding: 0.5rem 1rem !important;
143
	text-align: center;
144
	background: none !important;
145
	border-radius: 0 !important;
146
	border-top: 1px solid $cell-entry-border-color !important;
147
	color: $cell-entry-color !important;
148
	box-shadow: none !important;
149
	&:hover {
150
		color: $cell-entry-hover-color !important;
151
		background-color: $cell-entry-hover-background !important;
152
	}
153
}
154

  
140 155
div#rub_service div.category ul,
141 156
div#services > ul > li > ul,
142 157
div#account-management ul,
......
155 170
	position: relative;
156 171
	z-index: 0;
157 172

  
173
	&.more-items--list li:first-child {
174
		border-top: 1px solid $cell-entry-border-color;
175
	}
176

  
158 177
	& > li:not(:last-child):not(.more-items) {
159 178
		border-bottom: 1px solid $cell-entry-border-color;
160 179
	}
161
-