This commit is contained in:
tersiswilvin 2022-12-29 09:22:01 -08:00
parent 42154ee495
commit b6586f2c28
4 changed files with 12 additions and 9 deletions

View File

@ -17,12 +17,6 @@ a, a:hover, a:focus, a:link, a:visited {
color: inherit;
font-weight: 300;
text-decoration: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1, h2, h3, h4, h5, h6 {
@ -249,6 +243,15 @@ body:not(.Y23R) .AdminContainer .SH-8B07, body.Y23R .AdminContainer .UH-vXb0 {
visibility: hidden !important;
}
.NewAdminPanel .noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*/=={ Status }==/*/
.AdminContainer .S-Ia06 {

View File

@ -71,7 +71,7 @@
<nav class="Admin-Navigation">
<div class="Header">
<a href="{{ route('home') }}" title="ARCHBLOX Home" class="PanelLogo"></a>
<span class="SubSlogan">Admin Panel</span>
<span class="SubSlogan noselect">Admin Panel</span>
<div class="usernamecontainer">
<a class="usernamelink" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
</div>

View File

@ -68,7 +68,7 @@
<nav class="Admin-Navigation">
<div class="Header">
<a href="{{ route('home') }}" title="ARCHBLOX Home" class="PanelLogo"></a>
<span class="SubSlogan">Admin Panel</span>
<span class="SubSlogan noselect">Admin Panel</span>
<div class="usernamecontainer">
<a class="usernamelink" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
</div>

View File

@ -274,7 +274,7 @@
<nav class="Admin-Navigation">
<div class="Header">
<a href="{{ route('home') }}" title="ARCHBLOX Home" class="PanelLogo"></a>
<span class="SubSlogan">Admin Panel</span>
<span class="SubSlogan noselect">Admin Panel</span>
<div class="usernamecontainer">
<a class="usernamelink" href="@guest {{ route('login') }} @else {{ route('profile', Auth::id()) }} @endguest">{{ Auth::user()->name }}</a>
</div>