Projet

Général

Profil

0002-remove-padding-top-bottom-on-monthly-booking.patch

Thomas Jund, 08 décembre 2020 10:28

Télécharger (1,2 ko)

Voir les différences:

Subject: [PATCH 2/2] remove padding top & bottom on monthly booking

 chrono/manager/static/css/style.scss | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
chrono/manager/static/css/style.scss
188 188

  
189 189
.agenda-table tbody td div {
190 190
	box-sizing: border-box;
191
	padding: 1ex;
192 191
	position: absolute;
193 192
	overflow: hidden;
194 193
	&.opening-hours, &.exception-hours {
......
220 219
	&.booking {
221 220
		left: 0.5ex;
222 221
		color: #5382CF;
222
		padding: 1ex;
223 223
		background:
224 224
			linear-gradient(
225 225
				110deg,
......
258 258
		width 100ms ease-in,
259 259
		left 100ms ease-in,
260 260
		color 200ms ease-in,
261
		box-shadow 200ms ease-in;
261
		box-shadow 200ms ease-in,
262
		padding 100ms ease-in;
262 263
	text-indent: -9999px;
264
	&:not(:hover) {
265
		padding-top: 0;
266
		padding-bottom: 0;
267
	}
263 268
	&:hover {
264 269
		text-indent: 0;
265 270
		left: 0% !important;
266
-