mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-14 02:55:47 +05:00
42 lines
631 B
CSS
42 lines
631 B
CSS
.forums-node-panel {
|
|
position: relative;
|
|
bottom: 100px;
|
|
margin-left: 200px;
|
|
animation: fadein 0.5s;
|
|
}
|
|
|
|
/* subject */
|
|
table.forums th:nth-child(1) {
|
|
width: 50%;
|
|
text-align: start;
|
|
}
|
|
/* subject */
|
|
table.forums td:nth-child(1) {
|
|
text-align: start;
|
|
/* Truncate text with '...' */
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
table.forums tr:hover {
|
|
background-color: #eef3f6;
|
|
cursor: pointer;
|
|
}
|
|
|
|
table.forums tr.hidden{
|
|
display: none;
|
|
}
|
|
|
|
#searchforum{
|
|
position:relative;
|
|
margin-left: 250px;
|
|
}
|
|
|
|
#forumdetails{
|
|
position: relative;
|
|
margin-left: auto;
|
|
}
|
|
.p{
|
|
margin:0;
|
|
} |