Overview
Comment: | Autres corrections pour style mobile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
7b6b7bf40eceb67ca326daa53fc488a6 |
User & Date: | bohwaz on 2017-08-04 05:38:01 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-04
| ||
06:02 | Corrige problèmes de mise à jour avec encore des dates bizarres pour le wiki, et l'ordre des colonnes qui a changé pour rappels_envoyes check-in: 6274ecf443 user: bohwaz tags: dev | |
05:38 | Autres corrections pour style mobile check-in: 7b6b7bf40e user: bohwaz tags: dev | |
05:28 | Corrections styles pour mobiles check-in: b9e69f1536 user: bohwaz tags: dev | |
Changes
Modified src/templates/admin/_head.tpl from [5e497dab30] to [fd198ada1d].
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
..
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta charset="utf-8" /> <title>{$title}</title> <link rel="icon" type="image/png" href="{$admin_url}static/icon.png" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, target-densitydpi=device-dpi" /> <link rel="stylesheet" type="text/css" href="{$admin_url}static/admin.css" media="all" /> <link rel="stylesheet" type="text/css" href="{$admin_url}static/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="{$admin_url}static/handheld.css" media="handheld,screen and (max-width:981px)" /> {if isset($js) || isset($custom_js)} <script type="text/javascript" src="{$admin_url}static/scripts/global.js"></script> {/if} {if isset($custom_js)} {foreach from=$custom_js item="js"} <script type="text/javascript" src="{$admin_url}static/scripts/{$js}"></script> {/foreach} ................................................................................ {/foreach} {/if} {if isset($plugin_js)} {foreach from=$plugin_js item="js"} <script type="text/javascript" src="{plugin_url file=$js}"></script> {/foreach} {/if} {custom_colors config=$config} </head> <body{if !empty($body_id)} id="{$body_id}"{/if} data-url="{$admin_url}"> {if empty($is_popup)} <header class="header"> |
<
<
>
>
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
..
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta charset="utf-8" /> <title>{$title}</title> <link rel="icon" type="image/png" href="{$admin_url}static/icon.png" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, target-densitydpi=device-dpi" /> <link rel="stylesheet" type="text/css" href="{$admin_url}static/admin.css" media="all" /> {if isset($js) || isset($custom_js)} <script type="text/javascript" src="{$admin_url}static/scripts/global.js"></script> {/if} {if isset($custom_js)} {foreach from=$custom_js item="js"} <script type="text/javascript" src="{$admin_url}static/scripts/{$js}"></script> {/foreach} ................................................................................ {/foreach} {/if} {if isset($plugin_js)} {foreach from=$plugin_js item="js"} <script type="text/javascript" src="{plugin_url file=$js}"></script> {/foreach} {/if} <link rel="stylesheet" type="text/css" href="{$admin_url}static/print.css" media="print" /> <link rel="stylesheet" type="text/css" href="{$admin_url}static/handheld.css" media="handheld,screen and (max-width:981px)" /> {custom_colors config=$config} </head> <body{if !empty($body_id)} id="{$body_id}"{/if} data-url="{$admin_url}"> {if empty($is_popup)} <header class="header"> |
Modified src/www/admin/static/handheld.css from [4d8d1d2f3b] to [3677775889].
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
...
132
133
134
135
136
137
138
139
|
.header .menu a { font-weight: normal; padding: 0; display: inline; padding: .2em; color: black; } .header .menu a:hover { background: none; } .header .menu > li > a { background: #9c4f15; color: white; display: inline-block; padding: .2em .5em .2em .2em; border-radius: 0 .5em .5em 0; } .header .menu > li > a:hover { color: #000; background: rgb(217, 134, 40); background: rgba(217, 134, 40, 0.5); } .header .menu a b { float: left; font-size: 1.1em; margin: 0 .3em 0 0; width: 1.2em; ................................................................................ border-left: none; } .infos_asso { float: none; width: auto; } } |
>
|
<
<
|
<
<
|
>
>
>
>
>
|
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
...
129
130
131
132
133
134
135
136
137
138
139
140
141
|
.header .menu a { font-weight: normal; padding: 0; display: inline; padding: .2em; color: black; border-radius: 0 .5em .5em 0; } .header .menu a:hover { background: none; } .header .menu > li a { color: white; display: inline-block; padding: .2em .5em .2em .2em; } .header .menu > li > a:active { color: #000; } .header .menu a b { float: left; font-size: 1.1em; margin: 0 .3em 0 0; width: 1.2em; ................................................................................ border-left: none; } .infos_asso { float: none; width: auto; } input[type=text], textarea, input[type=password], input[type=email], input[type=url], input[type=tel], select { min-width: 3em; width: 95%; } } |