streams/view/css/conversation.css

319 lines
3.9 KiB
CSS
Raw Normal View History

/* jot */
.jothidden input {
border: 0px;
margin: 0px;
2014-05-27 14:44:18 +00:00
height: 39px;
width: 100%;
}
.jothidden {
display:none;
}
#jot-title-wrap,
#jot-pagetitle-wrap,
#jot-category-wrap {
border-bottom: 1px solid #ccc;
}
#jot-attachment-wrap {
border-top: 1px solid #ccc;
}
2015-04-12 11:13:22 +00:00
#jot-title-wrap input,
#jot-pagetitle-wrap input {
padding: 10px;
}
#profile-jot-text {
resize: none;
border-width: 0px;
2014-05-27 14:44:18 +00:00
height: 39px;
line-height: 19px;
2016-03-01 12:32:18 +00:00
padding: 10px;
2014-03-22 20:10:26 +00:00
width: 100%;
display: inherit;
}
#profile-jot-text:focus {
resize: vertical;
}
.jot-attachment {
border: 0px;
2016-03-01 12:32:18 +00:00
padding: 10px;
width: 100%;
}
#profile-jot-text-loading {
float: left;
padding: 30px 0px 0px 12px;
}
#profile-jot-submit-wrapper {
border-top: 1px solid #ccc;
padding: 10px;
}
#profile-jot-perms-end {
height: 30px;
}
2016-01-30 13:26:38 +00:00
#profile-jot-wrapper {
margin-bottom: 30px;
}
#profile-rotator-wrapper {
float: left;
}
#profile-rotator {
2016-04-27 09:36:02 +00:00
padding: 15px 0px 0px 15px;
}
.profile-jot-net {
float: left;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
2014-05-15 03:49:33 +00:00
padding: 5px;
}
/* conversation */
2013-12-18 18:47:00 +00:00
.thread-wrapper.toplevel_item {
margin-bottom: 20px;
}
/* conv_item */
.wall-item-info {
display: block;
float: left;
2014-04-15 18:48:15 +00:00
margin-right: 10px;
}
.wall-item-wrapper {
margin-left:10px;
}
.lockview-panel {
padding: 3px 20px;
}
2014-05-01 10:51:34 +00:00
.wall-item-lock {
float: left;
}
a.wall-item-name-link {
2014-10-08 07:24:34 +00:00
font-weight: bold !important;
}
2014-05-01 10:51:34 +00:00
.wall-item-author {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2016-04-30 19:59:02 +00:00
.wall-item-ago .fa-check {
cursor: pointer;
}
.wall-item-content {
overflow: auto;
}
.wall-item-content h1,
.wall-item-content h2 {
font-size: 1.319em;
2014-09-26 10:34:22 +00:00
}
.wall-item-title h3,
.wall-item-content h3,
.wall-item-content h4 {
font-size: 1.112em;
2014-09-26 10:34:22 +00:00
}
2014-10-30 17:55:24 +00:00
.wall-item-content img {
max-width: 100%;
}
2014-05-01 10:51:34 +00:00
.wall-item-title h3 {
font-weight: bold;
2014-05-01 10:51:34 +00:00
margin: 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.wall-item-title-end {
clear: both;
}
.wall-item-body {
word-wrap: break-word;
}
.body-tags {
margin-top: 5px;
}
2014-05-01 10:51:34 +00:00
.item-tool {
cursor: pointer;
}
.like-rotator {
float: right;
2014-05-01 10:51:34 +00:00
margin: 16px;
}
.item-select {
opacity: 0.1;
filter:alpha(opacity=10);
float: right;
margin-right: 10px;
}
.item-select:hover,
.checkeditem {
opacity: 1;
filter:alpha(opacity=100);
}
.shared_header {
margin-bottom: 20px;
}
/* comment_item */
.comment-edit-text-empty,
.comment-edit-text-full {
2014-05-20 15:33:06 +00:00
width: 100%;
display: inherit;
}
.comment-edit-text-empty {
2014-08-13 15:37:41 +00:00
padding: 0px 8px;
line-height: 28px;
2014-05-27 14:44:18 +00:00
height: 30px;
overflow: hidden;
2014-05-20 15:33:06 +00:00
resize: none;
}
.comment-edit-text-full {
2014-08-13 15:37:41 +00:00
padding: 8px;
height: 150px;
overflow: auto;
2016-03-01 13:11:42 +00:00
resize: vertical;
}
.qcomment {
border: 1px solid #EEE;
padding: 3px;
margin-top: 15px;
margin-left: 25px;
width: 125px;
overflow-y: auto;
}
.qcomment option {
width: 125px;
overflow-x: hidden;
}
.qcomment {
opacity: 0.3;
filter:alpha(opacity=30);
}
.qcomment:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
2014-05-20 15:33:06 +00:00
.comment-tools {
display: none;
margin-top: 7px;
}
2014-05-20 15:33:06 +00:00
.comment-edit-preview {
display: none;
margin-top: 7px;
}
/* disable link handling for unknown entries */
.dropdown-menu > li > a.disabled {
pointer-events: none;
cursor: default;
}
2014-10-16 23:19:19 +00:00
2015-02-13 09:40:52 +00:00
.item-verified {
color: darkgreen;
font-size: 1em !important;
}
2014-10-16 23:19:19 +00:00
.item-forged {
color: #FF0000;
2015-02-13 09:40:52 +00:00
font-size: 1em !important;
2014-10-30 13:10:55 +00:00
}
2015-11-25 21:55:07 +00:00
/* event item */
2015-11-28 13:47:17 +00:00
.event-item-title h3 {
margin: 0px 0px 10px 0px;
font-weight: bold;
}
.event-item-description {
padding-bottom: 10px;
}
.event-item-label {
font-weight: bold;
}
/* vevent */
2015-11-25 21:55:07 +00:00
.event-title h3 {
2015-11-26 11:26:27 +00:00
margin: 0px 0px 10px 0px;
2015-11-25 21:55:07 +00:00
font-weight: bold;
}
2015-11-28 13:47:17 +00:00
.vevent {
padding-top: 10px;
}
2015-11-25 21:55:07 +00:00
.event-description {
2015-11-28 13:47:17 +00:00
padding-top: 10px;
2015-11-25 21:55:07 +00:00
padding-bottom: 10px;
}
.event-label {
font-weight: bold;
}
/* bb-code */
code {
font-family: Courier, monospace;
font-size: 1em;
padding: 1em 1.5em;
display: block;
}
code.inline-code {
padding: 0px 4px;
display: inline;
}
.overline {
text-decoration: overline;
}
img.smiley.emoji:hover {
width: 32px;
height: 32px;
}