mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
ffc1fb9011
- Enh: Smaller stream style fixes - Enh: Added movable behavior to content type post - Fix: Invalid use of global permission for new force invite
261 lines
4.8 KiB
Plaintext
261 lines
4.8 KiB
Plaintext
// Content create form
|
|
.contentForm_options {
|
|
margin-top: 10px;
|
|
min-height: 29px;
|
|
|
|
.btn_container {
|
|
position: relative;
|
|
.label-public {
|
|
position: absolute;
|
|
right: 40px;
|
|
top: 11px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#content-topic-bar {
|
|
margin-top: 5px;
|
|
text-align:right;
|
|
.label {
|
|
margin-left:4px;
|
|
}
|
|
}
|
|
|
|
#contentFormError {
|
|
color: @danger;
|
|
padding-left: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
// Empty stream info
|
|
.placeholder-empty-stream {
|
|
background-image: url("../img/placeholder-postform-arrow.png");
|
|
background-repeat: no-repeat;
|
|
padding: 37px 0 0 70px;
|
|
margin-left: 90px;
|
|
}
|
|
|
|
// Wall-Entries
|
|
.wall-entry {
|
|
position: relative;
|
|
|
|
.content {
|
|
p, a {
|
|
overflow:hidden;
|
|
text-overflow:ellipsis;
|
|
max-width: 100%;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
.media {
|
|
overflow: visible;
|
|
}
|
|
.well {
|
|
margin-bottom: 0;
|
|
.comment {
|
|
.show-all-link {
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.media-heading {
|
|
font-size:14px;
|
|
padding-top:1px;
|
|
margin-bottom:3px;
|
|
.labels {
|
|
padding-right:32px;
|
|
}
|
|
|
|
.viaLink {
|
|
font-size:13px;
|
|
i {
|
|
color: @text-color-soft;
|
|
padding-left:4px;
|
|
padding-right:4px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.media-subheading {
|
|
color: @text-color-soft;
|
|
font-size:12px;
|
|
|
|
.time {
|
|
font-size:12px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.wall-entry-controls,
|
|
.wall-entry-controls a {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: @text-color-secondary;
|
|
margin-top: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#wall-stream-filter-nav {
|
|
font-size: 12px;
|
|
margin-bottom: 10px;
|
|
padding-top:2px;
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
.wall-stream-filter-root {
|
|
margin:0;
|
|
border:0 !important;
|
|
}
|
|
|
|
.filter-panel {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.wall-stream-filter-head {
|
|
padding: 5px 5px 10px 5px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.wall-stream-filter-body {
|
|
overflow:hidden;
|
|
background-color: @background-color-secondary;
|
|
border: 1px solid #ddd;
|
|
border-top: 0;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
|
|
hr {
|
|
margin:5px 0 0 0;
|
|
}
|
|
|
|
.topic-remove-label {
|
|
float:left;
|
|
}
|
|
|
|
.topic-remove-label, .content-type-remove-label {
|
|
margin-right:6px;
|
|
}
|
|
|
|
.select2 {
|
|
width:260px !important;
|
|
margin-bottom:5px;
|
|
margin-top:2px;
|
|
|
|
.select2-search__field {
|
|
height:25px !important;
|
|
}
|
|
|
|
.select2-selection__choice {
|
|
height:23px !important;
|
|
|
|
span, i {
|
|
line-height: 19px !important;
|
|
}
|
|
|
|
.img-rounded {
|
|
width: 18px !important;
|
|
height: 18px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.wall-stream-filter-bar {
|
|
display:inline;
|
|
float:right;
|
|
white-space: normal;
|
|
|
|
.label {
|
|
height:18px;
|
|
padding-top:4px;
|
|
}
|
|
.btn, .label {
|
|
box-shadow: 0 0 2px @text-color-secondary;
|
|
-webkit-box-shadow: 0 0 2px @text-color-secondary;
|
|
-moz-box-shadow: 0 0 2px @text-color-secondary;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
#wall-stream-filter-nav {
|
|
.wall-stream-filter-root {
|
|
white-space: nowrap;
|
|
}
|
|
.wall-stream-filter-body {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.filter-root {
|
|
margin:15px;
|
|
|
|
.row {
|
|
display:table !important;
|
|
}
|
|
|
|
.filter-panel {
|
|
padding: 0 5px;
|
|
display:table-cell !important;
|
|
float:none;
|
|
|
|
.filter-block {
|
|
strong {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
ul.filter-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 5px;
|
|
|
|
li {
|
|
font-size: 12px;
|
|
padding: 2px;
|
|
a {
|
|
color: @text-color-highlight;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
div.filter-block:last-of-type {
|
|
ul.filter-list {
|
|
margin: 0px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.filter-panel + .filter-panel {
|
|
border-left: 2px solid @background-color-page;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.stream-entry-loader {
|
|
float:right;
|
|
margin-top:5px;
|
|
}
|
|
|
|
.load-suppressed {
|
|
margin-top:-17px;
|
|
margin-bottom:15px;
|
|
text-align:center;
|
|
|
|
a {
|
|
display:inline-block;
|
|
background-color: white;
|
|
padding:5px;
|
|
border-radius: 0 0 4px 4px;
|
|
border: 1px solid #ddd;
|
|
font-size: 11px
|
|
}
|
|
}
|