34 lines
697 B
CSS
34 lines
697 B
CSS
|
.messages-folder {
|
||
|
margin: 1px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1px;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
.messages-folder-item {
|
||
|
background-color: #161616;
|
||
|
transition: background-color .1s;
|
||
|
}
|
||
|
.messages-folder-item:nth-child(2n) {
|
||
|
background-color: #1f1f1f;
|
||
|
}
|
||
|
.messages-folder-item:hover,
|
||
|
.messages-folder-item:focus {
|
||
|
background-color: #262626;
|
||
|
}
|
||
|
.messages-folder-item:active,
|
||
|
.messages-folder-item-current {
|
||
|
background-color: var(--accent-colour) !important;
|
||
|
}
|
||
|
.messages-folder-notice {
|
||
|
text-align: center;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
.messages-folder-notice-text {
|
||
|
font-size: 1.4em;
|
||
|
line-height: 1.5em;
|
||
|
}
|
||
|
.messages-folder .pagination {
|
||
|
margin-top: 2px;
|
||
|
}
|