mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-02-24 00:51:20 +00:00
Compare commits
6 Commits
15dd2b8f0c
...
c4c4e9594f
Author | SHA1 | Date | |
---|---|---|---|
|
c4c4e9594f | ||
|
4166823d55 | ||
|
dc0f3dbcef | ||
|
b3abe9ab18 | ||
|
27f23b48b6 | ||
|
67e170d4a6 |
@ -57,7 +57,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<ul class="list-group list-group-flush" id="source_note_list">
|
<ul class="list-group list-group-flush" id="source_note_list">
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<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 %}
|
{% for special_type in special_types %}
|
||||||
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
|
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
|
||||||
{% endfor %}
|
{% 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 class="list-group list-group-flush" id="dest_note_list">
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<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 %}
|
{% for special_type in special_types %}
|
||||||
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
|
<option value="{{ special_type.id }}">{{ special_type.special_type }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -65,7 +65,7 @@ mark {
|
|||||||
|
|
||||||
/* Last BDE colors */
|
/* Last BDE colors */
|
||||||
.bg-primary {
|
.bg-primary {
|
||||||
background-color: rgb(0, 119, 139) !important;
|
background-color: rgb(18, 67, 4) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
@ -81,16 +81,53 @@ body {
|
|||||||
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
||||||
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: rgb(0, 119, 139);
|
background-color: rgb(18, 67, 46);
|
||||||
border-color: rgb(0, 119, 139);
|
border-color: rgb(18, 67, 46);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-primary {
|
.btn-outline-primary {
|
||||||
color: rgb(0, 119, 139);
|
color: rgb(18, 67, 46);
|
||||||
background-color: rgba(248, 249, 250, 0.9);
|
background-color: rgba(248, 249, 250, 0.9);
|
||||||
border-color: rgb(0, 119, 139);
|
border-color: rgb(18, 67, 46);
|
||||||
}
|
}
|
||||||
|
|
||||||
.turbolinks-progress-bar {
|
.turbolinks-progress-bar {
|
||||||
background-color: #01D3FB;
|
background-color: #12432E;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover,
|
||||||
|
.btn-primary:not(:disabled):not(.disabled).active,
|
||||||
|
.btn-primary:not(:disabled):not(.disabled):active {
|
||||||
|
color: #fff;
|
||||||
|
background-color: rgb(18, 67, 46);
|
||||||
|
border-color: rgb(18, 67, 46);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
color: rgba(248, 249, 250, 0.9);
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user