forked from ScoDoc/ScoDoc
déplace css apo_compare_csv
This commit is contained in:
parent
8f2a6aa317
commit
a3394bd779
@ -4214,74 +4214,6 @@ table#apo_csv_list td {
|
|||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.apo_compare_csv_form_but {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.apo_compare_csv_form_submit input {
|
|
||||||
margin-top: 2ex;
|
|
||||||
margin-left: 5em;
|
|
||||||
font-size: 120%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .tit {
|
|
||||||
margin-top: 10px;
|
|
||||||
font-size: 120%;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .key {
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .val_ok {
|
|
||||||
font-size: 110%;
|
|
||||||
color: green;
|
|
||||||
font-weight: bold;
|
|
||||||
font-family: "Courier New", Courier, monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .val_dif {
|
|
||||||
font-size: 110%;
|
|
||||||
color: red;
|
|
||||||
font-weight: bold;
|
|
||||||
font-family: "Courier New", Courier, monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .p_ok {
|
|
||||||
font-size: 100%;
|
|
||||||
font-style: italic;
|
|
||||||
color: green;
|
|
||||||
margin-left: 4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.section .s_ok {
|
|
||||||
font-size: 100%;
|
|
||||||
font-style: italic;
|
|
||||||
color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.sec_table {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.sec_table .gt_table {
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.sec_table .gt_table td.val_A,
|
|
||||||
.apo_compare_csv div.sec_table .gt_table td.val_B {
|
|
||||||
color: red;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.apo_compare_csv div.sec_table .gt_table td.type_res {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.semset_descr {
|
div.semset_descr {
|
||||||
border: 1px dashed rgb(10, 150, 40);
|
border: 1px dashed rgb(10, 150, 40);
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
@ -1,5 +1,79 @@
|
|||||||
{% extends "sco_page.j2" %}
|
{% extends "sco_page.j2" %}
|
||||||
{% import 'wtf.j2' as wtf %}
|
|
||||||
|
{% block styles %}
|
||||||
|
{{super()}}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
div.apo_compare_csv_form_but {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.apo_compare_csv_form_submit input {
|
||||||
|
margin-top: 2ex;
|
||||||
|
margin-left: 5em;
|
||||||
|
font-size: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .tit {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 120%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .key {
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .val_ok {
|
||||||
|
font-size: 110%;
|
||||||
|
color: green;
|
||||||
|
font-weight: bold;
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .val_dif {
|
||||||
|
font-size: 110%;
|
||||||
|
color: red;
|
||||||
|
font-weight: bold;
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .p_ok {
|
||||||
|
font-size: 100%;
|
||||||
|
font-style: italic;
|
||||||
|
color: green;
|
||||||
|
margin-left: 4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.section .s_ok {
|
||||||
|
font-size: 100%;
|
||||||
|
font-style: italic;
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.sec_table {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.sec_table .gt_table {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.sec_table .gt_table td.val_A,
|
||||||
|
.apo_compare_csv div.sec_table .gt_table td.val_B {
|
||||||
|
color: red;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apo_compare_csv div.sec_table .gt_table td.type_res {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
<h1>Comparaison de fichiers Apogée</h1>
|
<h1>Comparaison de fichiers Apogée</h1>
|
||||||
|
Loading…
Reference in New Issue
Block a user