Projet

Général

Profil

0004-scss-create-visual-separation-in-days-and-desks.patch

Serghei Mihai, 04 septembre 2018 15:12

Télécharger (1,1 ko)

Voir les différences:

Subject: [PATCH 4/4] scss: create visual separation in days and desks

 chrono/manager/static/css/style.scss | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
chrono/manager/static/css/style.scss
127 127
	}
128 128
}
129 129

  
130
.agenda-table tbody tr:nth-child(2n+1) th.hour,
131 130
.agenda-table tbody tr:nth-child(2n+1) td {
132 131
	background: #f0f0f0;
132
	background-clip: content-box;
133 133
	@media print {
134 134
		border-top: 1px solid #aaa;
135 135
	}
136 136
}
137 137

  
138
.agenda-table tbody tr:nth-child(2n+1) th.hour {
139
	background: #f0f0f0;
140
	background-clip: border-box;
141
}
142

  
138 143
.agenda-table tbody td {
139 144
	padding: 0 1ex;
140 145
	vertical-align: top;
141 146
	position: relative;
147
	border-left: 1ex solid transparent;
148
	border-right: 1ex solid transparent;
142 149
}
143 150

  
144 151
.agenda-table tbody tr td.other-month {
145
-