Small changes.
Removed the main back button (use the logo as alternative), removed the section that caused duplicated my feeds
This commit is contained in:
parent
79607e3c8d
commit
17a25d45bd
|
|
@ -320,45 +320,10 @@ display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
}
|
}
|
||||||
.NewPanel .HomeBtn {
|
|
||||||
top: 10px;
|
|
||||||
left: 10px;
|
|
||||||
background: none;
|
|
||||||
border: 0;
|
|
||||||
padding: 0;
|
|
||||||
height: auto;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 100;
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
.NewPanel .BackArrow {
|
|
||||||
cursor: default;
|
|
||||||
transition: .25s all ease-in-out;
|
|
||||||
-webkit-touch-callout: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-khtml-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
line-height: 1.1rem;
|
|
||||||
margin-right: 2px;
|
|
||||||
}
|
|
||||||
.NewPanel .Backbtn {
|
|
||||||
color: inherit;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: .25s all ease-in-out;
|
|
||||||
-webkit-touch-callout: text;
|
|
||||||
-webkit-user-select: text;
|
|
||||||
-khtml-user-select: text;
|
|
||||||
-moz-user-select: text;
|
|
||||||
-ms-user-select: text;
|
|
||||||
user-select: text;
|
|
||||||
}
|
|
||||||
.NewPanel .UserDetails .Row {
|
.NewPanel .UserDetails .Row {
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
}
|
}
|
||||||
.NewPanel .AuthenticatedUserName:hover, .NewPanel .Backbtn:hover, .NewPanel .Backbtn:hover + .BackArrow {
|
.NewPanel .AuthenticatedUserName:hover {
|
||||||
color: #7ddaff;
|
color: #7ddaff;
|
||||||
transition: .25s all ease-in-out;
|
transition: .25s all ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
@ -389,9 +354,6 @@ display: flex;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
margin: -8px;
|
margin: -8px;
|
||||||
}
|
}
|
||||||
.NewPanel.AdminPanel .flex {
|
|
||||||
display: table!important;
|
|
||||||
}
|
|
||||||
/*Heavily based off of the roblox developer tree list (because it looks cool)*/
|
/*Heavily based off of the roblox developer tree list (because it looks cool)*/
|
||||||
.NewPanel .SearchTree {
|
.NewPanel .SearchTree {
|
||||||
width: 260px;
|
width: 260px;
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,8 @@
|
||||||
@extends('layouts.admin')
|
@extends('layouts.admin')
|
||||||
@section('title')
|
@section('title')
|
||||||
<title>
|
<title>
|
||||||
Admin | User List - {{ env('APP_NAME') }}</title>
|
Admin | User List - {{ env('APP_NAME') }}
|
||||||
<style>
|
</title>
|
||||||
.flex {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('Body')
|
@section('Body')
|
||||||
|
|
@ -105,17 +101,10 @@
|
||||||
Feed Status :
|
Feed Status :
|
||||||
</div>
|
</div>
|
||||||
<a class="text-secondary">
|
<a class="text-secondary">
|
||||||
@if (!request()->has('q'))
|
@if (!empty($user->feedposts->last()->status))
|
||||||
@if (!empty($user->feedposts->last()->status))
|
"{{ $user->feedposts->last()->status }}"
|
||||||
"{{ $user->feedposts->last()->status }}"
|
@else
|
||||||
@else
|
"I'm new to ARCHBLOX!"
|
||||||
"I'm new to ARCHBLOX!"
|
|
||||||
@endif
|
|
||||||
@if (!empty(App\Models\FeedPost::where('user_id', $user->id)->first()->status))
|
|
||||||
"{{ App\Models\FeedPost::where('user_id', $user->id)->orderBy('id', 'desc')->first()->status }}"
|
|
||||||
@else
|
|
||||||
"I'm new to ARCHBLOX!"
|
|
||||||
@endif
|
|
||||||
@endif
|
@endif
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -26,18 +26,13 @@
|
||||||
<div id="MasterContainer" class="NewPanel AdminPanel" style="width: 100%;">
|
<div id="MasterContainer" class="NewPanel AdminPanel" style="width: 100%;">
|
||||||
<div id="AdminWrapper" class="Navigation">
|
<div id="AdminWrapper" class="Navigation">
|
||||||
<div class="AdminHeader">
|
<div class="AdminHeader">
|
||||||
<span class="SiteBrand" href="{{ route('home') }}">
|
<span><a href="{{ route('home') }}" title="Main Site" class="SiteBrand"></a></span>
|
||||||
</span>
|
|
||||||
<a class="Slogan">
|
<a class="Slogan">
|
||||||
Admin Panel
|
Admin Panel
|
||||||
</a>
|
</a>
|
||||||
<div class="AuthenticatedUserNameWrapper">
|
<div class="AuthenticatedUserNameWrapper">
|
||||||
Logged in as <a class="AuthenticatedUserName" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
|
Logged in as <a class="AuthenticatedUserName" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="HomeBtn">
|
|
||||||
<a href="{{ route('home') }}" class="Backbtn">Main Site</a>
|
|
||||||
<span class="BackArrow">←</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="AdminSubHeader">
|
<div class="AdminSubHeader">
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue