mirror of
https://gitlab.com/randompenguin/bookface.git
synced 2025-06-07 11:04:27 +02:00
Restyled Item Responses (part of Issue #25)
This commit is contained in:
parent
af0a0b3e78
commit
a2730bf7d2
1 changed files with 88 additions and 3 deletions
|
@ -828,14 +828,14 @@ ul.nav-tabs {
|
||||||
left: 15px;
|
left: 15px;
|
||||||
}
|
}
|
||||||
.vote-event .wall-item-response:nth-of-type(1) .button-event::after,
|
.vote-event .wall-item-response:nth-of-type(1) .button-event::after,
|
||||||
[id^="attendyes"]::after{
|
.wall-item-actions-row [id^="attendyes"]::after{
|
||||||
content: var(--attendyes-button-text);
|
content: var(--attendyes-button-text);
|
||||||
}
|
}
|
||||||
.vote-event:has(button) .wall-item-response:nth-of-type(2){
|
.vote-event:has(button) .wall-item-response:nth-of-type(2){
|
||||||
left: 105px;
|
left: 105px;
|
||||||
}
|
}
|
||||||
.vote-event .wall-item-response:nth-of-type(2) .button-event::after,
|
.vote-event .wall-item-response:nth-of-type(2) .button-event::after,
|
||||||
[id^="attendno"]::after{
|
.wall-item-actions-row [id^="attendno"]::after{
|
||||||
content: var(--attendno-button-text);
|
content: var(--attendno-button-text);
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
@ -845,7 +845,7 @@ ul.nav-tabs {
|
||||||
left: 204px;
|
left: 204px;
|
||||||
}
|
}
|
||||||
.vote-event .wall-item-response:nth-of-type(3) .button-event::after,
|
.vote-event .wall-item-response:nth-of-type(3) .button-event::after,
|
||||||
[id^="attendmaybe"]::after{
|
.wall-item-actions-row [id^="attendmaybe"]::after{
|
||||||
content: var(--attendmaybe-button-text);
|
content: var(--attendmaybe-button-text);
|
||||||
}
|
}
|
||||||
/* prevent "Like Like" and "Dislike Dislike" on photos */
|
/* prevent "Like Like" and "Dislike Dislike" on photos */
|
||||||
|
@ -1130,6 +1130,88 @@ ul.nav-tabs {
|
||||||
.wall-item-actions .checkbox {
|
.wall-item-actions .checkbox {
|
||||||
padding-top: 6px !important;
|
padding-top: 6px !important;
|
||||||
}
|
}
|
||||||
|
/* WALL ITEM RESPONSES */
|
||||||
|
.wall-item-responses > div {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.wall-item-responses > div > p:first-of-type::before,
|
||||||
|
.hide-comments::before, .hide-comments-total::before {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 3px;
|
||||||
|
font-family: ForkAwesome;
|
||||||
|
font-weight: lighter;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
width: 20px;
|
||||||
|
height:20px;
|
||||||
|
padding: 2px;
|
||||||
|
line-height: 16px;
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-like > p:first-of-type::before {
|
||||||
|
content: '\f164';
|
||||||
|
background-color: #0066FF;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-dislike > p:first-of-type::before {
|
||||||
|
content: '\f165';
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-announce > p:first-of-type::before{
|
||||||
|
content: '\f079';
|
||||||
|
background-color: #00c100;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-attendyes > p:first-of-type::before{
|
||||||
|
content: '\f00c';
|
||||||
|
background-color: #00c100;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-attendno > p:first-of-type::before{
|
||||||
|
content: '\f00d';
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
.wall-item-responses .wall-item-attendmaybe > p:first-of-type::before{
|
||||||
|
content: '\f128';
|
||||||
|
background-color: orange;
|
||||||
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"] {
|
||||||
|
background-color: rgba(0,0,0,.8);
|
||||||
|
position: absolute;
|
||||||
|
bottom: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
margin-left: 23px;
|
||||||
|
border-radius: 8px;
|
||||||
|
width: 200px;
|
||||||
|
max-height: 415px;
|
||||||
|
font-size: 0px;
|
||||||
|
color: transparent;
|
||||||
|
overflow: hidden;
|
||||||
|
box-shadow: 0px 5px 5px rgba(0,0,0,.3);
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"]:hover,
|
||||||
|
.wall-item-responses div p[class*="-expanded"]:focus {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"] a {
|
||||||
|
color: white !important;
|
||||||
|
display: block;
|
||||||
|
max-width: 100%;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"] a:nth-of-type(74){
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"] a:nth-of-type(74)::after {
|
||||||
|
content: 'and others...';
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.hide-comments::before, .hide-comments-total::before {
|
||||||
|
content: '\f27a';
|
||||||
|
background-color: #0066FF;
|
||||||
|
}
|
||||||
.comment .media-body {
|
.comment .media-body {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: var(--comment-bg);
|
background-color: var(--comment-bg);
|
||||||
|
@ -2106,6 +2188,9 @@ body.mod-settings #delegation .contact-block-img {
|
||||||
display: block;
|
display: block;
|
||||||
background-color: var(--background-color);
|
background-color: var(--background-color);
|
||||||
}
|
}
|
||||||
|
.wall-item-responses div p[class*="-expanded"] {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* Most Phones in Portrait Orientation
|
/* Most Phones in Portrait Orientation
|
||||||
Large Screen Phones in Landscape Orientation
|
Large Screen Phones in Landscape Orientation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue