mirror of
https://github.com/humhub/humhub.git
synced 2025-02-19 23:54:54 +01:00
* Added new Content State * Added Content SoftDelete * Added Draft option on WallEntryCreate * Draft Stream Handling * Fix show drafts on dashboard * Reset draft state in Content Form * Remove Notifications/Activities on soft delete * Hide new content notifications on draft content * Added ActivityHelper * Added possibility to publish draft content * Added missing message text [skip ci] * Handle search for non published content * Mark default delete implementation as deprecated * Make sure files of deleted content are not longer accessible [skip ci] * Show badge for deleted content * Added State Filter for Content Queries * Added doc * Added ContentContainerStreamTest * Added Acceptance Tests * Fixed UserReleated exception for Guest users * Fixed popover less * Minor improvements
36 lines
671 B
Plaintext
36 lines
671 B
Plaintext
//
|
|
// popover
|
|
// --------------------------------------------------
|
|
.popover {
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
border-radius: 4px;
|
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
|
|
.popover-title {
|
|
background: none;
|
|
border-bottom: none;
|
|
color: @text-color-highlight;
|
|
font-weight: 300;
|
|
font-size: 16px;
|
|
padding: 15px;
|
|
}
|
|
|
|
.popover-content {
|
|
font-size: 13px;
|
|
padding: 5px 15px;
|
|
color: @text-color-highlight;
|
|
|
|
a {
|
|
color: @link;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.popover-navigation {
|
|
padding: 15px;
|
|
}
|
|
}
|