Overview
Comment:Améliore aspect messages d'erreur
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 2ddd23337c3ab10dcc457615be5158262b2aea32
User & Date: bohwaz on 2018-08-21 00:56:28
Other Links: branch diff | manifest | tags
Context
2018-08-22
19:49
Suppression de l'import de Galette, remplacé par un import de CSV générique, permettant de s'adapter à n'importe quel format de CSV check-in: 7af44a178e user: bohwaz tags: dev
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
Changes

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

185
186
187
188
189
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
    color: #090;
}

span.alert, b.alert {
    color: #990;
}

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;
}








|
|
<
|

>
|



>
>
>
>
>

|
|
<
<
<
<



|
|
<
<
<
<


|

<
|
>

<


>
>
>
>
>



<

<
<

<
<



<

<
<

<
<







185
186
187
188
189
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
    color: #090;
}

span.alert, b.alert {
    color: #990;
}

p.alert, div.alert, p.error, div.error, p.confirm, div.confirm {
    border: 1px solid #ccc;

    padding: .5em;
    margin-bottom: 1em;
    border-radius: .3em;
    padding-left: 3em;
    position: relative;
}

p.error, div.error {
    border-color: #c00;
    background-color: #fcc;
}

p.confirm, div.confirm {
    border-color: #0c0;
    background-color: #cfc;




}

p.alert, div.alert {
    border-color: #cc0;
    background-color: #ffc;




}

p.confirm::before, div.confirm::before, p.alert::before, div.alert::before, p.error::before, div.error::before {
    font-family: "gicon";

    left: .5em;
    top: .2em;
    position: absolute;

    font-size: 1.5em;
    text-shadow: 2px 2px 5px #666;
}    

p.confirm::before, div.confirm::before {
    content: "☑";
    color: green;
}

p.alert::before, div.alert::before {

    content: "⚠";


    color: yellow;


}

p.error::before, div.error::before {

    content: "⚠";


    color: red;


}

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