Добавление пагинации в список канбан досок
This commit is contained in:
@@ -100,6 +100,15 @@ ul{
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
.page-container {
|
||||
background-color: #1f2430;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
padding: 20px;
|
||||
margin: 10px auto;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
color: #CAD1D8;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
background-color: #2b3245;
|
||||
padding: 10px;
|
||||
border-radius: 6px;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.nav-sort{
|
||||
@@ -38,10 +38,11 @@
|
||||
|
||||
.kan-ban-list ul button{
|
||||
border-radius: 6px;
|
||||
margin-bottom: 0px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-around;
|
||||
background-color: #3d4763;;
|
||||
background-color: #3d4763;
|
||||
}
|
||||
|
||||
.kan-ban-list ul button:hover{
|
||||
@@ -55,9 +56,52 @@
|
||||
|
||||
.sort-row p, .sort-row h3{
|
||||
margin: 4px 0px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.sort-row+.sort-row p {
|
||||
margin: 16px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.inf h3,
|
||||
.kan-ban-list-sort h3{
|
||||
font-size: 1.7em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*пагинация*/
|
||||
.pagination {
|
||||
background-color: #2b3245;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 16px;
|
||||
flex-wrap: wrap;
|
||||
padding: 10px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.pagination button {
|
||||
padding: 0px;
|
||||
background-color: #3d4763;
|
||||
cursor: pointer;
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
margin: 0px
|
||||
}
|
||||
|
||||
.pagination button:hover:not(.active) {
|
||||
background-color: #5c6b96;
|
||||
}
|
||||
|
||||
.pagination button.active {
|
||||
background-color: #007bff;
|
||||
}
|
||||
|
||||
.pagination button:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
Reference in New Issue
Block a user