Projet

Général

Profil

0001-new-colorfull-contrast-with-white-background.patch

Thomas Jund, 11 décembre 2020 16:43

Télécharger (2 ko)

Voir les différences:

Subject: [PATCH] new colorfull contrast  with white background

 chrono/manager/static/css/style.scss | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)
chrono/manager/static/css/style.scss
111 111
table.agenda-table {
112 112
	border-spacing: 1vw 0;
113 113
	table-layout: fixed;
114
	background-color: hsla(0, 0%, 0%, 0.06);
114
	background-color: white;
115 115
	padding: 0.5em 0;
116 116
	padding-bottom: 2em;
117 117
}
......
162 162

  
163 163
.agenda-table tbody tr.odd th.hour,
164 164
.agenda-table tbody tr.odd td {
165
	background: hsla(0, 0%, 0%, 0.06);
165
	background: hsla(0, 0%, 0%, 0.04);
166 166
	@media print {
167 167
		border-top: 1px solid #aaa;
168 168
	}
......
195 195
		background:
196 196
			linear-gradient(
197 197
				135deg,
198
				hsl(100, 20%, 97%) 20%,
199
				hsla(100, 30%, 99%, 0.7) 40%,
200
				hsla(100, 40%, 94%, 0.7) 60%,
201
				hsl(100, 55%, 93%) 100%)
202
			fixed;
198
				hsla(65, 65%, 94%, 0.4) 20%,
199
				hsla(65, 55%, 92%, 0.7) 70%,
200
				hsl(65, 50%, 90%) 90%) fixed;
203 201
		left: 0.5ex;
204 202
		width: calc(100% - 1ex);
205 203
	}
206 204
	&.opening-hours {
207
		border-left: 0.5em solid white;
205
		border-left: 0.5em solid hsl(57, 65%, 85%);
208 206
	}
209 207
	&.exception-hours {
210 208
		background:
......
218 216
	}
219 217
	&.booking {
220 218
		left: 0.5ex;
221
		color: #5382CF;
219
		color: hsl(210, 84%, 40%);
222 220
		padding: 1ex;
223 221
		background:
224 222
			linear-gradient(
225 223
				110deg,
226 224
				hsla(0, 0%, 100%, 0.85) 0%,
227 225
				hsla(0, 0%, 100%, 0.65) 100%)
228
			currentColor
229
			fixed;
226
			currentColor;
230 227
		width: calc(100% - 1ex);
228
		border-left: .5em solid;
229
		border-bottom: 1px solid;
231 230
		border-color: currentColor;
232
		border-left: .5em solid currentcolor;
233 231

  
234 232
		z-index: 2;
235 233
		&:hover {
236
-