271121 Visibility Icon
This commit is contained in:
parent
b44e9d69ad
commit
8b2355c143
@ -286,7 +286,9 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #404040;
|
color: #404040;
|
||||||
|
@ -563,7 +563,7 @@ aside {
|
|||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.postAge,.public:after,.unlisted:after,.private:after,.direct:after {
|
.postAge,.public:after,.unlisted:after,.private:after,.direct:after,.sensitive:after {
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,6 @@ so grateful
|
|||||||
ini_set('display_errors', 1);
|
ini_set('display_errors', 1);
|
||||||
ini_set("log_errors", 1);
|
ini_set("log_errors", 1);
|
||||||
error_reporting(1);
|
error_reporting(1);
|
||||||
ini_set("error_log", "php-error.log");
|
|
||||||
|
|
||||||
include "settings.php"; # the general settings of the FE
|
include "settings.php"; # the general settings of the FE
|
||||||
include "include/init.php"; # initializes the page load with some variables and cookies
|
include "include/init.php"; # initializes the page load with some variables and cookies
|
||||||
|
@ -235,7 +235,7 @@ if ((!isset($thread[0]['id']) && !empty($thread)) || !is_array($thread)) {
|
|||||||
foreach ($urls as $url) {
|
foreach ($urls as $url) {
|
||||||
parse_str(parse_url($url, PHP_URL_QUERY) , $my_array_of_vars);
|
parse_str(parse_url($url, PHP_URL_QUERY) , $my_array_of_vars);
|
||||||
if (isset($my_array_of_vars['v'])) {
|
if (isset($my_array_of_vars['v'])) {
|
||||||
$post['media'] = "<embed class='desktop' width='620' height='415' src='https://invidiou.site/embed/" . $my_array_of_vars['v'] . "'>";
|
$post['media'] = "<embed class='desktop' width='620' height='415' src='https://youtube.com/embed/" . $my_array_of_vars['v'] . "'>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -304,7 +304,7 @@ if ((!isset($thread[0]['id']) && !empty($thread)) || !is_array($thread)) {
|
|||||||
|
|
||||||
/* the code of the post footer (date, visibility and like/reblog buttons */
|
/* the code of the post footer (date, visibility and like/reblog buttons */
|
||||||
$post['footer'] = "<div style='float:left;'>
|
$post['footer'] = "<div style='float:left;'>
|
||||||
<a style='text-decoration:none;' class='ldr postAge' id='".strtotime($elem['created_at'])."' target='_blank' href='?thread=" . $elem['id'] . "' title='".gmdate("d/m/y H:i", strtotime($elem['created_at']))."'>" .time_elapsed_string($elem['created_at']) . "</a> - <span class='fontello ".$elem['visibility']."'> </span>
|
<a style='text-decoration:none;' class='ldr postAge' id='".strtotime($elem['created_at'])."' target='_blank' href='?thread=" . $elem['id'] . "' title='".gmdate("d/m/y H:i", strtotime($elem['created_at']))."'>" .time_elapsed_string($elem['created_at']) . "</a> - <span class='fontello ".$elem['visibility']."'></span> <span class='fontello ". ($elem['sensitive'] == true ? "sensitive" : "")."'> </span>
|
||||||
</div>
|
</div>
|
||||||
<div class='post_buttons' id='" . $elem['id'] . "'>
|
<div class='post_buttons' id='" . $elem['id'] . "'>
|
||||||
" . ($logedin ? "<div class='felem'><a onClick='return false' class='replyform' href='?thread=" . $elem['id'] . "' style='font-family:fontello; vertical-align:middle;' alt='reply'></a></div>" : "") . "
|
" . ($logedin ? "<div class='felem'><a onClick='return false' class='replyform' href='?thread=" . $elem['id'] . "' style='font-family:fontello; vertical-align:middle;' alt='reply'></a></div>" : "") . "
|
||||||
|
@ -363,6 +363,10 @@ input[type="checkbox"]:checked+label {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.notif .post_buttons {
|
.notif .post_buttons {
|
||||||
color: black;
|
color: black;
|
||||||
background-color:#efd7f3;
|
background-color:#efd7f3;
|
||||||
|
@ -301,6 +301,10 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #0b82d2;
|
color: #0b82d2;
|
||||||
}
|
}
|
||||||
|
@ -285,6 +285,10 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #425f99;
|
color: #425f99;
|
||||||
}
|
}
|
||||||
|
@ -390,6 +390,10 @@ input[type="submit"] {
|
|||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.notif .post_buttons {
|
.notif .post_buttons {
|
||||||
color: black;
|
color: black;
|
||||||
background-color:#b8b8b8;
|
background-color:#b8b8b8;
|
||||||
|
@ -275,6 +275,10 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #425f99;
|
color: #425f99;
|
||||||
}
|
}
|
||||||
|
@ -323,6 +323,10 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #404040;
|
color: #404040;
|
||||||
}
|
}
|
||||||
|
@ -339,6 +339,10 @@ input[type="submit"]:hover {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_buttons {
|
.post_buttons {
|
||||||
color: #425f99;
|
color: #425f99;
|
||||||
}
|
}
|
||||||
|
@ -392,6 +392,10 @@ button,.postform input[type="submit"],.reply input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post .post_buttons a{
|
.post .post_buttons a{
|
||||||
color:white;
|
color:white;
|
||||||
}
|
}
|
||||||
|
@ -106,6 +106,10 @@ input[type="text"]{
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.unlisted::after {
|
.unlisted::after {
|
||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
@ -119,6 +119,10 @@ input[type="checkbox"]:checked+label {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.side_element li:hover {
|
.side_element li:hover {
|
||||||
background-color: rgba(255, 255, 255, 0.25);
|
background-color: rgba(255, 255, 255, 0.25);
|
||||||
}
|
}
|
||||||
|
@ -247,6 +247,10 @@ textarea,input[type="text"]{
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.polloption{
|
.polloption{
|
||||||
display:block;
|
display:block;
|
||||||
margin:5px;
|
margin:5px;
|
||||||
|
@ -406,6 +406,10 @@ button,.postform input[type="submit"],.reply input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.notif .post_buttons {
|
.notif .post_buttons {
|
||||||
background-color:white;
|
background-color:white;
|
||||||
border: 1px solid #999999 !important;
|
border: 1px solid #999999 !important;
|
||||||
|
@ -399,6 +399,10 @@ input[type="submit"] {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sensitive::after {
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
.post_footer .post_buttons a, .post_footer span{
|
.post_footer .post_buttons a, .post_footer span{
|
||||||
color: #042eb8;
|
color: #042eb8;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user