Jarvis/static/css/jarvis.css

200 lines
4.8 KiB
CSS
Raw Normal View History

2023-04-25 17:06:14 +02:00
.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
padding: 2px !important;
}
a.maillink {
font-weight: bold !important;
}
.maillink {
font-weight: bold !important;
}
.skill-info {
color: #f4f5f7;
background-color: #1B1D2B !important;
border-color: #1B1D2B !important;
}
.cell-danger {
background-color: #fd5d93 !important;
}
.cell-success {
background-color: #00bf9a !important;
}
.custom_autocomplete_ul {
background: #2C2D3E !important;
background-color: #2C2D3E !important;
}
.custom_autocomplete_li {
background-color: #2C2D3E !important;
}
/*
* Full Calendar overwritten classes
*/
.fc-scrollgrid {
border: 0px !important;
}
.fc-col-header-cell-cushion {
font-weight: bold !important;
}
.card-calendar .fc td:last-child {
border-bottom: 0 !important;
}
.fc-daygrid-day {
border-bottom: 0 !important;
}
.fc .fc-daygrid-day.fc-day-today {
background-color: #252e49 !important;
}
/* .fc-daygrid-day-number {
color: #FFFFFF !important;
} */
textarea.form-control {
max-height: 200px !important;
}
.text-unknown {
color: #fd5d93 !important;
}
.text-with-help {
color: #ff9300 !important;
}
.text-without-help {
color: #E6E200 !important;
}
.text-chained {
color: #04CD89 !important;
}
.text-masterised {
color: #0CA3E0 !important;
}
2024-01-25 10:56:59 +01:00
.text-form-info {
font-weight: lighter !important;
font-size: 12px;
}
2024-05-10 21:53:02 +02:00
.bold {
font-weight: bold;
}
2023-04-25 17:06:14 +02:00
.progress-bar-primary {
background: #ba54f5;
background-image: -webkit-linear-gradient(to bottom left, #ba54f5, #e14eca, #ba54f5);
background-image: -o-linear-gradient(to bottom left, #ba54f5, #e14eca, #ba54f5);
background-image: -moz-linear-gradient(to bottom left, #ba54f5, #e14eca, #ba54f5);
background-image: linear-gradient(to bottom left, #ba54f5, #e14eca, #ba54f5);
background-size: 210% 210%;
background-position: top right;
}
.progress-bar-info {
background: #3358f4;
background-image: -webkit-linear-gradient(to bottom left, #3358f4, #1d8cf8, #3358f4);
background-image: -o-linear-gradient(to bottom left, #3358f4, #1d8cf8, #3358f4);
background-image: -moz-linear-gradient(to bottom left, #3358f4, #1d8cf8, #3358f4);
background-image: linear-gradient(to bottom left, #3358f4, #1d8cf8, #3358f4);
background-size: 210% 210%;
background-position: top right;
}
.progress-bar-success {
background: #0098f0;
background-image: -webkit-linear-gradient(to bottom left, #0098f0, #00f2c3, #0098f0);
background-image: -o-linear-gradient(to bottom left, #0098f0, #00f2c3, #0098f0);
background-image: -moz-linear-gradient(to bottom left, #0098f0, #00f2c3, #0098f0);
background-image: linear-gradient(to bottom left, #0098f0, #00f2c3, #0098f0);
background-size: 210% 210%;
background-position: top right;
}
.progress-bar-warning {
background: #ff6491;
background-image: -webkit-linear-gradient(to bottom left, #ff6491, #ff8d72, #ff6491);
background-image: -o-linear-gradient(to bottom left, #ff6491, #ff8d72, #ff6491);
background-image: -moz-linear-gradient(to bottom left, #ff6491, #ff8d72, #ff6491);
background-image: linear-gradient(to bottom left, #ff6491, #ff8d72, #ff6491);
background-size: 210% 210%;
background-position: top right;
}
.progress-bar-danger {
background: #ec250d;
background-image: -webkit-linear-gradient(to bottom left, #ec250d, #fd5d93, #ec250d);
background-image: -o-linear-gradient(to bottom left, #ec250d, #fd5d93, #ec250d);
background-image: -moz-linear-gradient(to bottom left, #ec250d, #fd5d93, #ec250d);
background-image: linear-gradient(to bottom left, #ec250d, #fd5d93, #ec250d);
background-size: 210% 210%;
background-position: top right;
}
@media screen and (max-width: 575.98px) {
.not-displayed-on-phone {
display: none;
}
2024-04-22 10:36:30 +02:00
}
/* INPUT RANGE */
input[type="range"] {
-webkit-appearance: none;
appearance: none;
background: transparent;
padding: 0 !important;
border: 0 !important;
2024-04-22 10:55:20 +02:00
width: 100%;
2024-04-22 10:36:30 +02:00
}
2024-04-22 14:37:36 +02:00
input[type="range"].rtl {
direction: rtl;
}
2024-04-22 10:36:30 +02:00
/* range track */
input[type="range"]::-webkit-slider-runnable-track {
background: #317BB5;
border-radius: 3px;
/* margin-bottom: .25rem; */
height: 1rem;
}
input[type="range"]::-moz-range-track {
background: #317BB5;
border-radius: 3px;
/* margin-bottom: .25rem; */
/* height: .5rem; */
}
/* bullet */
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background-color: #BEBEBE;
2024-04-22 14:37:36 +02:00
border-style: solid;
border-width: 1px;
border-color: #1B1D2B;
2024-04-22 10:36:30 +02:00
width: 2rem;
height: 1.3rem;
border-radius: 3px;
margin-top: -2px;
}