Updated New Panel CSS

Fixes the stacking issue in user list, fixed button images not showing up.
This commit is contained in:
tersiswilvin 2022-08-18 07:51:32 -07:00
parent 97c0ad1906
commit 6a890e663f
3 changed files with 15 additions and 5 deletions

View File

@ -112,7 +112,7 @@ h6 {
width: 200px;
height: 40px;
padding: 5px;
background-image: url(../img/MORBLOXlogo.png);
background-image: url(/img/MORBLOXlogo.png);
background-repeat: no-repeat;
background-size: contain;
background-position: 0;
@ -151,7 +151,6 @@ h6 {
color: #bbb;
display: inline-block;
text-align: left;
padding-right: 3px;;
}
.NewPanel.AdminPanel .Stats-Wrapper {
text-align: center;
@ -217,11 +216,11 @@ h6 {
margin: auto;
}
.NewPanel.AdminPanel .SearchContainer {
width: 25%;
width: 235px;
height: auto;
background-color: #555;
border-radius: 5px;
margin-top: 37px;
margin: 62px 25px 0 0;
display: flex;
align-items: center;
align-content: center;
@ -235,6 +234,14 @@ h6 {
border: 5px solid #111;
border-radius: 100%;
}
.NewPanel .SearchBoard {
width: 100%;
height: 100%;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
}
.NewPanel .SearchContainer .UserThumbnail {
background-image: url(/img/defaultrender.png);
background-size: contain;
@ -267,6 +274,7 @@ h6 {
.NewPanel .AuthenticatedUserName {
color: #009dff;
transition: .25s all ease-in-out;
display: inline-block;
}
.NewPanel .AdminHeader .HomeBtn {
color: #009dff;

View File

@ -532,7 +532,7 @@ html {
}
.loggedout {
background: url('../img/animated.png');
background: url('/img/animated.png');
background-color: rgb(49, 107, 223);
background-position: center bottom;
background-repeat: repeat-x;

View File

@ -26,6 +26,7 @@
@endif
<button class="btn-neutral btn-small" name="searchBy" value="name">Search by Username</button><button class="btn-neutral btn-small" name="searchBy" value="id">Search by ID</button></div>
</form>
<div class="SearchBoard">
@foreach ($users as $user)
<div class="SearchContainer">
<div class="Thumbnail">
@ -141,6 +142,7 @@
@endif
</div>
</div>
</div>
{{ $users->appends($_GET)->links() }}
@endsection
@section('content')