mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-02-25 17:36:31 +00:00
Compare commits
3 Commits
90e3871934
...
ab6c943126
Author | SHA1 | Date | |
---|---|---|---|
|
ab6c943126 | ||
|
5dc5f56ae4 | ||
|
81017fc393 |
@ -1,4 +1,4 @@
|
||||
# Copyright (C) 2018-2021 by BDE ENS Paris-Saclay
|
||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import datetime
|
||||
@ -77,9 +77,9 @@ def get_row_class(record):
|
||||
c += " table-info"
|
||||
elif record.note.balance < 0:
|
||||
c += " table-danger"
|
||||
#MODE VIEUXCON=ON
|
||||
if (datetime.datetime.utcnow().timestamp() - record.note.created_at.timestamp()) > 3600*24*365*3:
|
||||
c += " font-weight-bold"
|
||||
# MODE VIEUXCON=ON
|
||||
if (datetime.datetime.utcnow().timestamp() - record.note.created_at.timestamp()) > 3600 * 24 * 365 * 3:
|
||||
c += " font-weight-bold"
|
||||
return c
|
||||
|
||||
|
||||
|
@ -65,10 +65,14 @@ mark {
|
||||
|
||||
/* Last BDE colors */
|
||||
.bg-primary {
|
||||
/* background-color: rgb(18, 67, 4) !important; */
|
||||
/* background-color: rgb(0, 0, 0) !important; */
|
||||
/* MODE VIEUXCON=ON */
|
||||
/*Listo/*
|
||||
/* background-color: rgb(166, 0, 2) !important; */
|
||||
background-color: rgb(0, 0, 0) !important;
|
||||
/*Finalist*/
|
||||
/* background-color: rgb(0, 119, 139) !important;*/
|
||||
/*Saperlist*/
|
||||
background-color: rgb(18, 67, 4) !important;
|
||||
}
|
||||
|
||||
html {
|
||||
@ -83,51 +87,113 @@ body {
|
||||
.btn-outline-primary:hover,
|
||||
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
||||
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
||||
color: rgb(241, 229, 52);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(241, 229, 52);
|
||||
background-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);*/
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*color: #fff;
|
||||
background-color: rgb(0, 119, 139);
|
||||
border-color: rgb(0, 119, 139);*/
|
||||
/*Saperlist*/
|
||||
color: #fff;
|
||||
background-color: rgb(18, 67, 46);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
.btn-outline-primary {
|
||||
color: #fff;
|
||||
/*Last BDE*/
|
||||
/* color: #fff;
|
||||
background-color: #000;
|
||||
border-color: #464647;
|
||||
border-color: #464647;*/
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*color: rgb(0, 119, 139);
|
||||
background-color: rgba(248, 249, 250, 0.9);
|
||||
border-color: rgb(0, 119, 139);*/
|
||||
/*Saperlist*/
|
||||
color: rgb(18, 67, 46);
|
||||
background-color: rgba(248, 249, 250, 0.9);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
.turbolinks-progress-bar {
|
||||
/*Last BDE*/
|
||||
/*background-color: #12432E;*/
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*background-color: #01D3FB;*/
|
||||
/*Saperlist*/
|
||||
background-color: #12432E;
|
||||
}
|
||||
|
||||
.btn-primary:hover,
|
||||
.btn-primary:not(:disabled):not(.disabled).active,
|
||||
.btn-primary:not(:disabled):not(.disabled):active {
|
||||
color: rgb(241, 229, 52);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(241, 229, 52);
|
||||
background-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);/*
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*color: #fff;
|
||||
background-color: rgb(0, 119, 139);
|
||||
border-color: rgb(0, 119, 139);*/
|
||||
/*Saperlist*/
|
||||
color: #fff;
|
||||
background-color: rgb(18, 67, 46);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
/*Last BDE*/
|
||||
/* color: #fff;
|
||||
background-color: #000;
|
||||
border-color: #adb5bd;
|
||||
border-color: #adb5bd;*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
color: rgba(248, 249, 250, 0.9);
|
||||
background-color: rgb(28, 114, 10);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
.border-primary {
|
||||
border-color: rgb(228, 35, 132) !important;
|
||||
/*Last BDE*/
|
||||
/* border-color: rgb(228, 35, 132) !important;*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
border-color: rgb(28, 114, 10) !important;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
color: #fff;
|
||||
/*Last BDE*/
|
||||
/* color: #fff;
|
||||
background-color: #000;
|
||||
border-color: #adb5bd;
|
||||
border-color: #adb5bd;*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
color: rgba(248, 249, 250, 0.9);
|
||||
background-color: rgb(28, 114, 10);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
.btn-secondary:hover,
|
||||
.btn-secondary:not(:disabled):not(.disabled).active,
|
||||
.btn-secondary:not(:disabled):not(.disabled):active {
|
||||
color: rgb(241, 229, 52);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(241, 229, 52);
|
||||
background-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);/*
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*color: #fff;
|
||||
background-color: rgb(0, 119, 139);
|
||||
border-color: rgb(0, 119, 139);*/
|
||||
/*Saperlist*/
|
||||
color: #fff;
|
||||
background-color: rgb(18, 67, 46);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
|
||||
@ -139,25 +205,52 @@ body {
|
||||
.btn-outline-dark:hover,
|
||||
.btn-outline-dark:not(:disabled):not(.disabled).active,
|
||||
.btn-outline-dark:not(:disabled):not(.disabled):active {
|
||||
color: rgb(241, 229, 52);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(241, 229, 52);
|
||||
background-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);
|
||||
border-color: rgb(228, 35, 132);*/
|
||||
/*Pot Vieux*/
|
||||
/*Finalist*/
|
||||
/*color: #fff;
|
||||
background-color: rgb(0, 119, 139);
|
||||
border-color: rgb(0, 119, 139);*/
|
||||
/*Saperlist*/
|
||||
color: #fff;
|
||||
background-color: rgb(18, 67, 46);
|
||||
border-color: rgb(18, 67, 46);
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
color: rgb(228, 35, 132);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(228, 35, 132);*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
color: rgb(28, 114, 10);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: rgb(228, 35, 132);
|
||||
/*Last BDE*/
|
||||
/* color: rgb(228, 35, 132);*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
color: rgb(122, 163, 75);
|
||||
}
|
||||
|
||||
.form-control:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgb(228 35 132 / 50%);
|
||||
border-color: rgb(228, 35, 132);
|
||||
/*Last BDE*/
|
||||
/* box-shadow: 0 0 0 0.25rem rgb(228 35 132 / 50%);
|
||||
border-color: rgb(228, 35, 132);*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
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 rgb(228 35 132 / 10%);
|
||||
/*Last BDE*/
|
||||
/* box-shadow: 0 0 0 0.25rem rgb(228 35 132 / 10%);*/
|
||||
/*Pot Vieux*/
|
||||
/*Saperlist*/
|
||||
box-shadow: 0 0 0 0.25rem rgba(122, 163, 75, 0.5);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user