mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-07 11:11:45 +02:00
acp header fix
This commit is contained in:
@@ -23,10 +23,6 @@
|
||||
flex-direction: row-reverse;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
> * {
|
||||
margin-right: 20px;
|
||||
}
|
||||
@@ -75,6 +71,7 @@
|
||||
padding: 10px 20px;
|
||||
width: 250px;
|
||||
height: 44px;
|
||||
background-color: rgba(0,0,0,.2);
|
||||
border-radius: 3px;
|
||||
box-shadow: none;
|
||||
transition: .4s ease background-color;
|
||||
@@ -96,14 +93,14 @@
|
||||
pointer-events: none;
|
||||
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
top: 13px;
|
||||
left: 1em;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: attr(data-text);
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
top: 13px;
|
||||
left: 3em;
|
||||
font-size: small;
|
||||
font-weight: 600;
|
||||
|
||||
@@ -43,7 +43,7 @@ define('admin/dashboard', [
|
||||
|
||||
isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
|
||||
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-bs-toggle="tooltip"]').tooltip();
|
||||
|
||||
setupRealtimeButton();
|
||||
setupGraphs(function () {
|
||||
|
||||
@@ -7,7 +7,7 @@ define('forum/post-queue', [
|
||||
const PostQueue = {};
|
||||
|
||||
PostQueue.init = function () {
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-bs-toggle="tooltip"]').tooltip();
|
||||
|
||||
categoryFilter.init($('[component="category/dropdown"]'), {
|
||||
privilege: 'moderate',
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
<!-- END -->
|
||||
</p>
|
||||
<p>
|
||||
<a href="{config.relative_path}/admin/settings/advanced" class="btn btn-info btn-block" data-placement="bottom" data-toggle="tooltip" title="[[admin/dashboard:maintenance-mode-title]]">[[admin/dashboard:maintenance-mode]]</a>
|
||||
<a href="{config.relative_path}/admin/settings/advanced" class="btn btn-info btn-block" data-bs-placement="bottom" data-bs-toggle="tooltip" title="[[admin/dashboard:maintenance-mode-title]]">[[admin/dashboard:maintenance-mode]]</a>
|
||||
</p>
|
||||
|
||||
<hr />
|
||||
@@ -142,7 +142,7 @@
|
||||
<!-- IF notices.done -->
|
||||
<i class="fa fa-fw fa-check text-success"></i> {notices.doneText}
|
||||
<!-- ELSE -->
|
||||
<!-- IF notices.link --><a href="{config.relative_path}{notices.link}" data-toggle="tooltip" title="{notices.tooltip}"><!-- ENDIF notices.link -->
|
||||
<!-- IF notices.link --><a href="{config.relative_path}{notices.link}" data-bs-toggle="tooltip" title="{notices.tooltip}"><!-- ENDIF notices.link -->
|
||||
<i class="fa fa-fw fa-times text-danger"></i> {notices.notDoneText}
|
||||
<!-- IF notices.link --></a><!-- ENDIF notices.link -->
|
||||
<!-- ENDIF notices.done -->
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
<main id="panel">
|
||||
<nav class="header" id="header">
|
||||
<div class="pull-left">
|
||||
<div class="float-start">
|
||||
<div id="mobile-menu">
|
||||
<div class="bar"></div>
|
||||
<div class="bar"></div>
|
||||
@@ -133,7 +133,7 @@
|
||||
<h1 id="main-page-title"></h1>
|
||||
</div>
|
||||
|
||||
<ul class="quick-actions hidden-xs hidden-sm">
|
||||
<ul class="quick-actions hidden-xs hidden-sm hidden-md align-items-center">
|
||||
<!-- IMPORT admin/partials/quick_actions/buttons.tpl -->
|
||||
|
||||
{{{ if user.privileges.admin:settings }}}
|
||||
|
||||
Reference in New Issue
Block a user