Overview
Comment:Un peu plus de style pour les messages d'info
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 4b80ed2051bfeb4f099302ac4c00bec54bb3f78a
User & Date: bohwaz on 2018-08-21 00:43:18
Other Links: branch diff | manifest | tags
Context
2018-08-21
00:56
Améliore aspect messages d'erreur check-in: 2ddd23337c user: bohwaz tags: dev
00:43
Un peu plus de style pour les messages d'info check-in: 4b80ed2051 user: bohwaz tags: dev
2018-08-20
23:58
Ajout bouton pour voir/cacher le mot de passe sur les champs de mot de passe (pratique sur mobile) check-in: f1dd7f6e09 user: bohwaz tags: dev
Changes

Modified src/templates/admin/config/index.tpl from [8b2246c56b] to [6078c55f63].

1
2
3
4
5
6
7
8
9
10
11
12
{include file="admin/_head.tpl" title="Configuration" current="config"}

{include file="admin/config/_menu.tpl" current="index"}

{if $ok}
    <p class="confirm">
        La configuration a bien été enregistrée.
    </p>
{/if}

{form_errors}





|







1
2
3
4
5
6
7
8
9
10
11
12
{include file="admin/_head.tpl" title="Configuration" current="config"}

{include file="admin/config/_menu.tpl" current="index"}

{if $ok && !$form->hasErrors()}
    <p class="confirm">
        La configuration a bien été enregistrée.
    </p>
{/if}

{form_errors}

Modified src/www/admin/static/admin.css from [0701eca59a] to [2b50d1341c].

190
191
192
193
194
195
196


197
198
199
200
201
202
203


204
205
206
207
208
209
210



211




























212
213
214
215
216
217
218
}

p.error, div.error {
    border: 1px solid #c00;
    background: #fcc;
    padding: 0.5em;
    margin-bottom: 1em;


}

p.confirm, div.confirm {
    border: 1px solid #0c0;
    background: #cfc;
    padding: 0.5em;
    margin-bottom: 1em;


}

p.alert, div.alert {
    border: 1px solid #cc0;
    background: #ffc;
    padding: 0.5em;
    margin-bottom: 1em;



    overflow: auto;




























}

p.help {
    margin: 1em;
    color: #666;
}








>
>







>
>







>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
}

p.error, div.error {
    border: 1px solid #c00;
    background: #fcc;
    padding: 0.5em;
    margin-bottom: 1em;
    margin-left: 2.5em;
    position: relative;
}

p.confirm, div.confirm {
    border: 1px solid #0c0;
    background: #cfc;
    padding: 0.5em;
    margin-bottom: 1em;
    margin-left: 2.5em;
    position: relative;
}

p.alert, div.alert {
    border: 1px solid #cc0;
    background: #ffc;
    padding: 0.5em;
    margin-bottom: 1em;
    position: relative;
    margin-left: 2.5em;
}

p.confirm::before, div.confirm::before {
    font-family: "gicon";
    content: "☑";
    left: -1.5em;
    position: absolute;
    color: green;
    font-size: 1.5em;
    text-shadow: 2px 2px 5px #666;
}

p.alert::before, div.alert::before {
    font-family: "gicon";
    content: "⚠";
    left: -1.5em;
    position: absolute;
    color: yellow;
    font-size: 1.5em;
    text-shadow: 2px 2px 5px #666;
}

p.error::before, div.error::before {
    font-family: "gicon";
    content: "⚠";
    left: -1.5em;
    position: absolute;
    color: red;
    font-size: 1.5em;
    text-shadow: 2px 2px 5px #999;
}

p.help {
    margin: 1em;
    color: #666;
}