Convert color schema, begin migrating old classes (finishes grey & red)
This commit is contained in:
parent
6c7a5d5bb9
commit
32b43cff9a
35 changed files with 186 additions and 166 deletions
|
@ -98,7 +98,7 @@
|
|||
<div class="row">
|
||||
@if($node->maintenance_mode)
|
||||
<div class="col-sm-12">
|
||||
<div class="info-box bg-orange">
|
||||
<div class="info-box bg-grey">
|
||||
<span class="info-box-icon"><i class="ion ion-wrench"></i></span>
|
||||
<div class="info-box-content" style="padding: 23px 10px 0;">
|
||||
<span class="info-box-text">This node is under</span>
|
||||
|
@ -169,4 +169,4 @@
|
|||
});
|
||||
})();
|
||||
</script>
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
@extends('templates/wrapper', [
|
||||
'css' => ['body' => 'bg-grey-darkest']
|
||||
'css' => ['body' => 'bg-neutral-900']
|
||||
])
|
||||
|
||||
@section('container')
|
||||
|
@ -8,7 +8,7 @@
|
|||
<img src="/assets/img/pterodactyl-flat.svg" class="max-w-xxs">
|
||||
</div>
|
||||
<router-view></router-view>
|
||||
<p class="text-center text-grey text-xs">
|
||||
<p class="text-center textneutral-500stext-xs">
|
||||
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
@section('below-container')
|
||||
<div class="flex-grow"></div>
|
||||
<div class="w-full m-auto mt-0 container">
|
||||
<p class="text-center sm:text-right text-grey-dark text-xs">
|
||||
<p class="text-center sm:text-right text-neutral-600 text-xs">
|
||||
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
@include('layouts.scripts')
|
||||
</head>
|
||||
<body class="{{ $css['body'] ?? 'bg-grey-lightest' }}">
|
||||
<body class="{{ $css['body'] ?? 'bg-neutral-50' }}">
|
||||
@section('content')
|
||||
@yield('above-container')
|
||||
<div id="pterodactyl" class="flex flex-col">
|
||||
|
|
Reference in a new issue