Timeline bugfixes
This commit is contained in:
parent
5b558b6df6
commit
984549035d
@ -97,7 +97,7 @@ input[type="checkbox"]:checked+label {
|
||||
background-color: rgba(255, 255, 255, 0.25);
|
||||
}
|
||||
|
||||
.side_element a {
|
||||
.side_element a, .rt * {
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
|
@ -174,6 +174,10 @@ aside {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fw .topbutton {
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.topicon {
|
||||
text-decoration: none;
|
||||
display: inline;
|
||||
|
@ -85,6 +85,10 @@ textarea {
|
||||
position:fixed; top:0px; left:0px;
|
||||
}
|
||||
|
||||
.fw {
|
||||
float:right;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
|
@ -7,9 +7,10 @@ include "../include/init.php";
|
||||
include "../include/functions.php";
|
||||
|
||||
$message = "";
|
||||
$instance = (isset($setting['lockedto']) ? $setting['lockedto'] : (isset($_POST['user']) ? $_POST['user'] : null));
|
||||
if (!empty($instance)){
|
||||
|
||||
if (isset($_POST['user']) || isset($_GET['instance'])){
|
||||
$instance = strtolower((isset($_POST['user']) ? htmlentities($_POST['user']) : htmlentities($_GET['instance'])));
|
||||
$instance = strtolower($instance);
|
||||
$check = json_decode(file_get_contents("https://$instance/api/v1/instance"),true);
|
||||
|
||||
if(is_null($check['title'])){
|
||||
|
@ -261,6 +261,11 @@ input[type="submit"]:hover {
|
||||
border-right: 6px solid #edf3fe;
|
||||
box-shadow: 0 0 10px rgba(237,243,254,1) inset;
|
||||
}
|
||||
|
||||
.element_pad > .post {
|
||||
border-left:4px solid #ff6300;
|
||||
}
|
||||
|
||||
/*
|
||||
.postform,.searchmobile {
|
||||
background-color: #eeaa88;
|
||||
|
@ -295,7 +295,7 @@ button,.postform input[type="submit"],.reply input[type="submit"] {
|
||||
border-radius:0px !important;
|
||||
}
|
||||
|
||||
.notif *{
|
||||
.notif a, .notif span{
|
||||
color:white;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user