- Change a bit form's coloring scheme

This commit is contained in:
Dave Mc Nicoll 2024-11-11 20:02:21 +00:00
parent 6b655bdc76
commit e1175f7273
3 changed files with 15 additions and 16 deletions

View File

@ -62,15 +62,4 @@
</ol>
</div>
{% endforeach %}
</div>
<style>
.entity-name {background:#eaa1af}
.entity-wrapper ol {background: #f0ddcd;}
.entity-wrapper li {border-color: #ae8585;}
.search-request-name {background: #b6e6ae}
.search-request-wrapper {padding-left: 15px;border-left: 3px solid #72886a;}
.search-request-wrapper ol {background: #d8f0cd;}
.search-request-wrapper li {border-color: #72886a;}
</style>
</div>

View File

@ -4,8 +4,8 @@
<div class="forms">
{% foreach $forms as $form %}
<div class="single-form" style="padding-left:15px;border-left: 3px solid #9ce6bc;">
<h4 style="background:#9ce6bc" class='form-name'>{{ $form['className'] }}</h4>
<div class="single-form" style="padding-left:15px;border-left: 3px solid #9ccce6;">
<h4 class='form-name'>{{ $form['className'] }}</h4>
<div class='description'>{{ $form['description'] }}</div>
<hr style="margin-top:15px">

View File

@ -30,8 +30,18 @@
ol .title { display: flex;justify-content: space-between;background: #ffffffb2;padding: 9px 5px;border: 1px solid #fff;}
.field-desc > div {padding:5px;}
.forms ol {background: #ccf2dd;}
.forms li {border-color: #85ae97;}
.forms ol {background: #ccdef2;}
.forms li {border-color: #859aae;}
.forms .form-name {background: #9cc5e6;color: #284168;font-size:110%}
.entity-wrapper .entity-name {background:#eaa1af;color: #682828;font-size:110%}
.entity-wrapper ol {background: #f0ddcd;}
.entity-wrapper li {border-color: #ae8585;}
.search-request-name {background: #b6e6ae;color: #395332;font-size:110%}
.search-request-wrapper {padding-left: 15px;border-left: 3px solid #72886a;}
.search-request-wrapper ol {background: #d8f0cd;}
.search-request-wrapper li {border-color: #72886a;}
</style>
</head>
{% endsection %}