mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
1) Created components for statistic reporting. 2) Database changes and PROC/Function creations. Still need to make MOST VIEWED LIBRARIES/CLIENTS/ MOST ACTIVE USERS dynamically load with date range (Function Creation on DB side)
68 lines
1.0 KiB
CSS
68 lines
1.0 KiB
CSS
.Users
|
|
{
|
|
color: white;
|
|
padding-right: 20px;
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.user-activity-table {
|
|
border-collapse: collapse;
|
|
border-radius: 5px;
|
|
/* margin: 25px 0; */
|
|
font-size: 0.9em;
|
|
font-family: sans-serif;
|
|
min-width: 400px;
|
|
box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
|
|
color: white;
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 12px 15px;
|
|
/* text-align: left; */
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
border-right: 1px solid rgba(255, 255, 255, 0.05);
|
|
border-left:1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
th {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
cursor: pointer;
|
|
}
|
|
|
|
th:hover {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
|
|
|
|
/* tbody tr:last-of-type {
|
|
border-bottom: 2px solid #009879;
|
|
} */
|
|
|
|
|
|
.card-user-image
|
|
{
|
|
border-radius: 50%;
|
|
width: 30px;
|
|
height: 30px;
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
tr:hover
|
|
{
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
|
|
td:first-child {
|
|
border-left: none;
|
|
}
|
|
|
|
td:last-child {
|
|
border-right: none;
|
|
}
|