2025-04-11 21:35:57 +00:00
|
|
|
main .container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
2025-04-11 22:53:20 +00:00
|
|
|
max-width: 1300px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.columnSection {
|
|
|
|
|
padding: 20px 0 20px 0;
|
2025-04-11 22:53:20 +00:00
|
|
|
max-width: 1300px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
2025-04-12 15:05:08 +00:00
|
|
|
.historyButtonContainer {
|
2025-04-18 19:54:36 +00:00
|
|
|
width: 80%;
|
2025-04-11 21:35:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-11 21:40:45 +00:00
|
|
|
.historySearchContainer {
|
2025-04-18 19:54:36 +00:00
|
|
|
width: 20%;
|
2025-04-11 21:35:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
text-align: right;
|
2025-04-18 19:54:36 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
2025-04-11 22:53:20 +00:00
|
|
|
.button-outer {
|
|
|
|
|
margin-right: 15px;
|
2025-04-12 15:05:08 +00:00
|
|
|
background: var(--history-link-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-outer.active {
|
|
|
|
|
color: var(--navlink-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#currentButton {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: var(--white);
|
|
|
|
|
background: var(--link-color);
|
|
|
|
|
border-radius: 5px;
|
2025-04-11 22:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2025-04-18 19:54:36 +00:00
|
|
|
input.historySearch {
|
|
|
|
|
font-family: 'open-sans', sans-serif;
|
|
|
|
|
width: 260px;
|
|
|
|
|
border: 1px solid #DEDEDE;
|
|
|
|
|
padding: 9px 4px 9px 40px;
|
|
|
|
|
background: #DEDEDE url(/public/img/random/search.svg) no-repeat 10px;
|
|
|
|
|
background-size: 18px 18px;
|
|
|
|
|
border-radius: 5px;
|
2025-04-11 22:53:20 +00:00
|
|
|
}
|
2025-04-11 21:35:57 +00:00
|
|
|
|
2025-04-11 22:53:20 +00:00
|
|
|
.searchButton {
|
|
|
|
|
vertical-align: -15px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.historyTable {
|
|
|
|
|
font-family: 'open-sans', sans-serif;
|
|
|
|
|
margin-bottom: 20px;
|
2025-04-11 22:53:20 +00:00
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
|
border-radius: 5px;
|
2025-04-18 19:54:36 +00:00
|
|
|
z-index: 1;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
2025-04-11 22:54:58 +00:00
|
|
|
|
|
|
|
|
.dropdown-results {
|
2025-04-18 19:54:36 +00:00
|
|
|
font-family: 'open-sans', sans-serif;
|
2025-04-11 22:54:58 +00:00
|
|
|
position: absolute;
|
2025-04-18 19:54:36 +00:00
|
|
|
top: 35px;
|
2025-04-11 22:54:58 +00:00
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
overflow-y: auto;
|
2025-04-18 19:54:36 +00:00
|
|
|
background-color: #DEDEDE;
|
2025-04-11 22:54:58 +00:00
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
border-top: none;
|
2025-04-18 19:54:36 +00:00
|
|
|
z-index: 1050;
|
2025-04-11 22:54:58 +00:00
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
2025-04-18 19:54:36 +00:00
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
|
border-bottom-left-radius: 5px;
|
2025-04-11 22:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-item:hover {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
2025-04-12 19:55:25 +00:00
|
|
|
|
|
|
|
|
.changePageButtons {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 10px 0 30px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-18 16:45:40 +00:00
|
|
|
.historyPageButton {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: .25rem;
|
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
|
|
|
|
|
box-sizing: border-box;
|
2025-04-18 17:33:54 +00:00
|
|
|
background-color: var(--history-page-button-background);
|
|
|
|
|
color: var(--font-color);
|
2025-04-18 16:45:40 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
font-family: 'opensans', sans-serif;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
line-height: 1.25;
|
2025-04-12 19:55:25 +00:00
|
|
|
margin: 0 5px 0 5px;
|
2025-04-18 16:45:40 +00:00
|
|
|
min-height: 3rem;
|
|
|
|
|
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
|
|
|
|
|
position: relative;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: all 250ms;
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
touch-action: manipulation;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.historyPageButton.active:hover,
|
|
|
|
|
.historyPageButton.active:focus {
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.15);
|
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
|
2025-04-18 17:33:54 +00:00
|
|
|
color: var(--font-color-hover);
|
2025-04-18 16:45:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.historyPageButton.active:hover {
|
|
|
|
|
transform: translateY(-1px);
|
2025-04-12 19:55:25 +00:00
|
|
|
}
|
2025-04-18 16:45:40 +00:00
|
|
|
|
|
|
|
|
.historyPageButton.active:active {
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.15);
|
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
|
2025-04-18 17:33:54 +00:00
|
|
|
color: var(--font-color-hover);
|
2025-04-18 16:45:40 +00:00
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.historyPageButton.disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
cursor: not-allowed;
|
2025-04-18 17:33:54 +00:00
|
|
|
background-color: var(--color-quaternary);
|
|
|
|
|
color: var(--font-color);
|
2025-04-18 16:45:40 +00:00
|
|
|
box-shadow: none;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prevent hover effects on disabled buttons */
|
|
|
|
|
.historyPageButton.disabled:hover,
|
|
|
|
|
.historyPageButton.disabled:focus {
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
transform: none;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-18 17:33:54 +00:00
|
|
|
.pageNumber {
|
|
|
|
|
font-family: 'open-sans', sans-serif;
|
|
|
|
|
margin: 0 25px 0 25px;
|
2025-04-18 19:54:36 +00:00
|
|
|
color: var(--font-color);
|
|
|
|
|
transition: 0.5s ease;
|
2025-04-18 17:33:54 +00:00
|
|
|
}
|
|
|
|
|
|