mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
user channel improvements: /add, /remove & /privacy cmds, html output for multiple channels in /surf
place/threads: better _notify msgs & error handling, improved html & json generation, TODO: use signatures here as well place/userthreads: added /add, /remove & /privacy cmds person: (un)subscribe to user channel when a user uses the /add & /remove commands, autojoin to #friends & #follow after friendship is established, added _channels data to qDescription user: htDescription: generate html from _channels data http: TODO: fix web examine cmd so it's not executed twice
This commit is contained in:
parent
af95219a9e
commit
f24d662c3c
7 changed files with 500 additions and 183 deletions
|
@ -19,6 +19,7 @@ body.threads,
|
|||
padding: 4;
|
||||
border: 1px solid #f33;
|
||||
}
|
||||
.comment-submit textarea, .comment-submit input,
|
||||
.Pe form input,select,textarea {
|
||||
background: black;
|
||||
color: #f33;
|
||||
|
@ -79,12 +80,17 @@ body.threads,
|
|||
|
||||
.entry .body {
|
||||
background: black;
|
||||
padding: 5px;
|
||||
padding: 0.4em 0.4em 0 0.4em;
|
||||
}
|
||||
|
||||
.entry .body .text,
|
||||
.entry .body .comment-submit {
|
||||
padding-bottom: 0.4em;
|
||||
}
|
||||
|
||||
.entry .body .comment {
|
||||
margin: 0.5em 1em 0;
|
||||
padding: 2px;
|
||||
margin: 0.2em 1em;
|
||||
padding: 0.2em;
|
||||
border-top: 1px solid #933;
|
||||
}
|
||||
|
||||
|
@ -92,9 +98,19 @@ body.threads,
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.entry .title {
|
||||
display: none;
|
||||
.entry .body .comment-submit {
|
||||
margin: 0 1em;
|
||||
}
|
||||
|
||||
.entry .body .comment-submit input,
|
||||
.entry .body .comment-submit textarea {
|
||||
font-size: 12px;
|
||||
}
|
||||
.entry .body .comment-submit textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.entry .title {}
|
||||
.entry .title .author {}
|
||||
.entry .title .subject {}
|
||||
|
||||
|
@ -114,6 +130,36 @@ body.threads,
|
|||
float: right;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
width: 574px;
|
||||
margin: 22px 44px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid #933;
|
||||
}
|
||||
|
||||
.tabs a {
|
||||
padding: 2px;
|
||||
background: #333;
|
||||
border: 1px solid #933;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tabs a:hover {
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.tabs > a.selected {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
|
||||
.tab-contents > div {
|
||||
display: none;
|
||||
}
|
||||
.tab-contents > div.selected {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue