Merge branch 'beta' into 'master'

changement couleur final (j'espère)

See merge request bde/nk20!166
This commit is contained in:
ourspalois 2021-05-22 14:09:51 +00:00
commit 08ba0b263a
2 changed files with 25 additions and 2 deletions

View File

@ -57,7 +57,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
<ul class="list-group list-group-flush" id="source_note_list">
</ul>
<div class="card-body">
<select id="credit_type" class="custom-select d-none">
<select id="credit_type" class="form-control custom-select d-none">
{% for special_type in special_types %}
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
{% endfor %}
@ -84,7 +84,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
<ul class="list-group list-group-flush" id="dest_note_list">
</ul>
<div class="card-body">
<select id="debit_type" class="custom-select d-none">
<select id="debit_type" class="form-control custom-select d-none">
{% for special_type in special_types %}
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
{% endfor %}

View File

@ -108,3 +108,26 @@ body {
background-color: rgb(28, 114, 10);
border-color: rgb(18, 67, 46);
}
.border-primary {
border-color: rgb(28, 114, 10) !important;
}
a {
color: rgb(28, 114, 10);
}
a:hover {
color: rgb(122, 163, 75);
}
.form-control:focus {
box-shadow: 0 0 0 0.25rem rgba(122, 163, 75, 0.25);
border-color: rgb(122, 163, 75);
}
.btn-outline-primary.focus {
box-shadow: 0 0 0 0.25rem rgba(122, 163, 75, 0.5);
}