fixed the pagination buttons 2.0
This commit is contained in:
parent
7276b0f751
commit
2dfd59571f
2 changed files with 9025 additions and 3055 deletions
12025
Moonlight/wwwroot/assets/css/style.bundle.css
vendored
12025
Moonlight/wwwroot/assets/css/style.bundle.css
vendored
File diff suppressed because it is too large
Load diff
55
Moonlight/wwwroot/assets/css/utils.css
vendored
55
Moonlight/wwwroot/assets/css/utils.css
vendored
|
@ -1,48 +1,57 @@
|
|||
.invisible-a {
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.invisible-a:hover {
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.blur-unless-hover {
|
||||
filter: blur(5px);
|
||||
filter: blur(5px);
|
||||
}
|
||||
|
||||
.blur-unless-hover:hover {
|
||||
filter: none;
|
||||
filter: none;
|
||||
}
|
||||
|
||||
.blur {
|
||||
filter: blur(5px);
|
||||
filter: blur(5px);
|
||||
}
|
||||
|
||||
div.wave {
|
||||
}
|
||||
div.wave .dot {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
margin-right: 3px;
|
||||
background-color: var(--bs-body-color);
|
||||
animation: wave 1.3s linear infinite;
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
margin-right: 3px;
|
||||
background-color: var(--bs-body-color);
|
||||
animation: wave 1.3s linear infinite;
|
||||
}
|
||||
div.wave .dot:nth-child(2) {
|
||||
animation-delay: -1.1s;
|
||||
animation-delay: -1.1s;
|
||||
}
|
||||
div.wave .dot:nth-child(3) {
|
||||
animation-delay: -0.9s;
|
||||
animation-delay: -0.9s;
|
||||
}
|
||||
|
||||
@keyframes wave {
|
||||
0%, 60%, 100% {
|
||||
transform: initial;
|
||||
}
|
||||
30% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
0%,
|
||||
60%,
|
||||
100% {
|
||||
transform: initial;
|
||||
}
|
||||
30% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
|
||||
div.card-body
|
||||
div.table-responsive
|
||||
div.d-flex.justify-content-end
|
||||
ul.pagination {
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue