mirror of
https://gitlab.com/MrFry/qmining-page
synced 2026-04-28 03:07:36 +02:00
86 lines
1.1 KiB
CSS
86 lines
1.1 KiB
CSS
.comment {
|
|
margin-left: 25px;
|
|
padding: 8px 0px;
|
|
}
|
|
|
|
.commentData {
|
|
padding: 5px 2px;
|
|
border-left: 2px solid var(--text-color);
|
|
background-color: #222;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.commentHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.commentHeader > div {
|
|
font-weight: bold;
|
|
margin: 2px;
|
|
}
|
|
|
|
.userContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.userContainer > div {
|
|
padding: 0px 3px;
|
|
}
|
|
|
|
.commentText {
|
|
margin: 2px;
|
|
padding: 10px 5px;
|
|
}
|
|
|
|
.ownComment {
|
|
border-left: 2px solid green;
|
|
}
|
|
|
|
.showHide {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.actionsContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
margin: 2px 2px;
|
|
padding: 0px 10px;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
.commentArea {
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
font-size: 16px;
|
|
box-sizing: border-box;
|
|
height: 120px;
|
|
width: 100%;
|
|
}
|
|
|
|
.commentAreaContainer {
|
|
margin: 0px 8px 3px 8px;
|
|
}
|
|
|
|
.commentAreaContainer > div {
|
|
margin: 5px 0px;
|
|
}
|
|
|
|
.adminComment {
|
|
border-left: 2px solid yellow;
|
|
}
|