Overview
Comment:Correction bugs CSS et date
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 021d913259f851a502af9aa09720d360453c7305
User & Date: bohwaz on 2017-08-17 04:45:07
Other Links: branch diff | manifest | tags
Context
2017-08-17
04:45
Correction rapport d'erreur dans page config check-in: 06ebefa8c7 user: bohwaz tags: dev
04:45
Correction bugs CSS et date check-in: 021d913259 user: bohwaz tags: dev
01:34
Modernisation : comptes bancaires check-in: ddb9d06519 user: bohwaz tags: dev
Changes

Modified src/www/admin/static/admin.css from [4fd9786c21] to [b83f460a19].

27
28
29
30
31
32
33


34
35
36
37
38
39
40
ol, ul {
    list-style: none;
}
caption, th {
    text-align: left;
}
article, aside, figure, section, header, footer { display: block; }



h1  { font-size: 2em; }
h2  { font-size: 1.5em; }
h3  { font-size: 1.2em; }
h4  { font-size: 1em; }
h5  { font-size: 0.9em; }
h6  { font-size: 0.8em; }







>
>







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
ol, ul {
    list-style: none;
}
caption, th {
    text-align: left;
}
article, aside, figure, section, header, footer { display: block; }

span { display: inline-block; }

h1  { font-size: 2em; }
h2  { font-size: 1.5em; }
h3  { font-size: 1.2em; }
h4  { font-size: 1em; }
h5  { font-size: 0.9em; }
h6  { font-size: 0.8em; }

Modified src/www/admin/static/handheld.css from [3677775889] to [ab8f8769ca].

1

2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
21
22
23
24
25
body {

	background: #fff url("bg01.png") no-repeat -180px -50px;
	font-size: 11pt;
}

.header h1 {
	margin: 0;
	text-align: center;
	font-size: 1.2em;
	margin: .3em 0;
}

.header .menu {

	position: relative;
	margin: 0;
	width: 100%;
	padding: 0;
    background: none;
}

.header .menu > li {
	margin: .1em 0;
}

.header .menu a {

>
|











>


|

<







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

20
21
22
23
24
25
26
body {
	background-position: -180px 0px;
	background-attachment: scroll;
	font-size: 11pt;
}

.header h1 {
	margin: 0;
	text-align: center;
	font-size: 1.2em;
	margin: .3em 0;
}

.header .menu {
	background: none !important;
	position: relative;
	margin: 0;
	width: auto;
	padding: 0;

}

.header .menu > li {
	margin: .1em 0;
}

.header .menu a {
66
67
68
69
70
71
72

73
74
75
76
77
78
79
	padding: .2em;
	font-size: .9em;
}

.header .menu li.current > a {
    background: rgb(217, 134, 40);
    background: rgba(217, 134, 40, 0.5);

	color: #000;
}

.header .menu li li.current > a {
	border-radius: .5em;
	padding: .2em .4em;
}







>







67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
	padding: .2em;
	font-size: .9em;
}

.header .menu li.current > a {
    background: rgb(217, 134, 40);
    background: rgba(217, 134, 40, 0.5);
    background: rgba(var(--gSecondColor), 0.5);
	color: #000;
}

.header .menu li li.current > a {
	border-radius: .5em;
	padding: .2em .4em;
}

Modified src/www/admin/static/scripts/datepickr.css from [766cefa9b1] to [62519de7c9].

10
11
12
13
14
15
16

17
18
19
20
21
22
23
    padding: 0.2em;
    width: 14em;
    box-shadow: 2px 2px 5px #666;
    transition: all .5s;
    opacity: 1;
    display: block;
    position: absolute;

}

.calendar.hidden {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}







>







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    padding: 0.2em;
    width: 14em;
    box-shadow: 2px 2px 5px #666;
    transition: all .5s;
    opacity: 1;
    display: block;
    position: absolute;
    z-index: 100000;
}

.calendar.hidden {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

Modified src/www/admin/static/scripts/datepickr.js from [491ae371e7] to [88e2ba5ac7].

280
281
282
283
284
285
286


287
288
289
290
291
292
293

			e.preventDefault();
			return false;
		}

		document.onkeyup = function(e) {
			var k = e.keyCode || e.which;



			// Esc key pressed
			if (k == 27)
			{
				close();
			}
			else if ((k >= 37 && k <= 40) || k == 33 || k == 34 || k == 32 || k == 40)







>
>







280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295

			e.preventDefault();
			return false;
		}

		document.onkeyup = function(e) {
			var k = e.keyCode || e.which;

			console.log(k);

			// Esc key pressed
			if (k == 27)
			{
				close();
			}
			else if ((k >= 37 && k <= 40) || k == 33 || k == 34 || k == 32 || k == 40)