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;
|
||||
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 {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
.NewPanel .AuthenticatedUserName:hover, .NewPanel .Backbtn:hover, .NewPanel .Backbtn:hover + .BackArrow {
|
||||
.NewPanel .AuthenticatedUserName:hover {
|
||||
color: #7ddaff;
|
||||
transition: .25s all ease-in-out;
|
||||
}
|
||||
|
|
@ -389,9 +354,6 @@ display: flex;
|
|||
border-radius: 50%;
|
||||
margin: -8px;
|
||||
}
|
||||
.NewPanel.AdminPanel .flex {
|
||||
display: table!important;
|
||||
}
|
||||
/*Heavily based off of the roblox developer tree list (because it looks cool)*/
|
||||
.NewPanel .SearchTree {
|
||||
width: 260px;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,8 @@
|
|||
@extends('layouts.admin')
|
||||
@section('title')
|
||||
<title>
|
||||
Admin | User List - {{ env('APP_NAME') }}</title>
|
||||
<style>
|
||||
.flex {
|
||||
display: block !important;
|
||||
}
|
||||
</style>
|
||||
Admin | User List - {{ env('APP_NAME') }}
|
||||
</title>
|
||||
@endsection
|
||||
|
||||
@section('Body')
|
||||
|
|
@ -105,18 +101,11 @@
|
|||
Feed Status :
|
||||
</div>
|
||||
<a class="text-secondary">
|
||||
@if (!request()->has('q'))
|
||||
@if (!empty($user->feedposts->last()->status))
|
||||
"{{ $user->feedposts->last()->status }}"
|
||||
@else
|
||||
"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
|
||||
</a>
|
||||
</div>
|
||||
<div class="Row">
|
||||
|
|
|
|||
|
|
@ -26,18 +26,13 @@
|
|||
<div id="MasterContainer" class="NewPanel AdminPanel" style="width: 100%;">
|
||||
<div id="AdminWrapper" class="Navigation">
|
||||
<div class="AdminHeader">
|
||||
<span class="SiteBrand" href="{{ route('home') }}">
|
||||
</span>
|
||||
<span><a href="{{ route('home') }}" title="Main Site" class="SiteBrand"></a></span>
|
||||
<a class="Slogan">
|
||||
Admin Panel
|
||||
</a>
|
||||
<div class="AuthenticatedUserNameWrapper">
|
||||
Logged in as <a class="AuthenticatedUserName" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
|
||||
</div>
|
||||
<div class="HomeBtn">
|
||||
<a href="{{ route('home') }}" class="Backbtn">Main Site</a>
|
||||
<span class="BackArrow">←</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="AdminSubHeader">
|
||||
<ul>
|
||||
|
|
|
|||
Loading…
Reference in New Issue