blob: 3294c2b77577e022664438c27fe883ede2a966e6 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* page "Menu et chemins" uniquement */
.menu
{
padding: 0 20px;
}
.menu_edit_entry
{
margin-left: 29px;
}
.menu .new_page_button
{
background-color: white;
padding: 10px;
}
.menu img
{
width: 20px;
}
/*.menu form
{
display: inline;
}*/
.menu p
{
margin: 5px;
}
/* explications pour l'utilisateur */
.menu aside
{
background-color: white;
padding: 10px;
margin-top: 10px;
}
.menu aside .controls_explanations
{
display: flex;
flex-wrap: wrap;
}
.menu aside .controls_explanations p
{
font-size: smaller;
}
.menu aside img
{
vertical-align: bottom;
}
.menu aside input
{
pointer-events: none; /* case non clicable, sauf action au clavier... */
vertical-align: bottom;
}
.menu #location, .menu input[type=submit]
{
color: #ff1d04;
font-size: medium;
border-radius: 4px;
background-color: white;
border: lightgrey 2px outset;
}
.menu button
{
margin: 5px;
}
.menu_entry_checkbox
{
margin-left: 2px;
}
.move_entry_icon
{
width: 20px;
vertical-align: middle;
border: 2px #e3f3ff solid;
}
.menu #location:hover, .menu input[type=submit]:hover, .move_entry_icon:hover
{
background-color: #ffff00;
border-radius: 4px;
border: lightgrey 2px outset;
cursor: pointer;
}
.menu .url_form_zone form
{
padding: 10px;
background-color: #f0f0f0f0;
}
.menu .url_form_zone
{
background-color: white;
padding: 10px;
margin-top: 10px;
}
/*.menu .url_form_zone div
{
display: flex;
}*/
.menu .url_form_zone label
{
text-wrap: nowrap;
margin-right: 5px;
}
.menu .url_form_zone #url_input
{
width: 100%;
}
.menu .url_form_zone p
{
margin: 5px;
display: flex;
align-items: center;
}
@media screen and (min-width: 80rem) {
i{}
}
|