OID update, fix sidebar icon rendering
This commit is contained in:
parent
902330e734
commit
b043e3bc93
@ -50,6 +50,7 @@
|
|||||||
1.3.6.1.1.13.1:Pre-Read Controls::The Pre-Read request control, indicates that a copy of the entry before application of update is to be returned.
|
1.3.6.1.1.13.1:Pre-Read Controls::The Pre-Read request control, indicates that a copy of the entry before application of update is to be returned.
|
||||||
1.3.6.1.1.13.2:Post-Read Controls::The Pre-Read request control, indicates that a copy of the entry before application of update is to be returned.
|
1.3.6.1.1.13.2:Post-Read Controls::The Pre-Read request control, indicates that a copy of the entry before application of update is to be returned.
|
||||||
1.3.6.1.1.14:Modify-Increment Extension:RFC 4525:An extension to the Lightweight Directory Access Protocol (LDAP) Modify operation to support an increment capability.
|
1.3.6.1.1.14:Modify-Increment Extension:RFC 4525:An extension to the Lightweight Directory Access Protocol (LDAP) Modify operation to support an increment capability.
|
||||||
|
1.3.6.1.1.22:Dont Use Copy Control:RFC 6171:When the control is attached to an LDAP request, the requested operation MUST NOT be performed on copied information. That is, the requested operation MUST be performed on original information.
|
||||||
1.3.6.1.4.1.42.2.27.8.5.1:passwordPolicyRequest
|
1.3.6.1.4.1.42.2.27.8.5.1:passwordPolicyRequest
|
||||||
1.3.6.1.4.1.42.2.27.9.5.2:GetEffectiveRights control::May be used to determine what operations a given user may perform on a specified entry.
|
1.3.6.1.4.1.42.2.27.9.5.2:GetEffectiveRights control::May be used to determine what operations a given user may perform on a specified entry.
|
||||||
1.3.6.1.4.1.1466.101.119.1:Dynamic Directory Services Refresh Request:RFC 2589
|
1.3.6.1.4.1.1466.101.119.1:Dynamic Directory Services Refresh Request:RFC 2589
|
||||||
|
9
public/css/fixes.css
vendored
9
public/css/fixes.css
vendored
@ -80,10 +80,17 @@ ul.fancytree-container {
|
|||||||
.app-sidebar #treeicon, .closed-sidebar:hover .app-sidebar:hover #treeicon, .sidebar-mobile-open #treeicon {
|
.app-sidebar #treeicon, .closed-sidebar:hover .app-sidebar:hover #treeicon, .sidebar-mobile-open #treeicon {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.closed-sidebar .app-sidebar #treeicon {
|
.closed-sidebar .app-sidebar #treeicon :not(.sidebar-mobile-open) {
|
||||||
display: initial;
|
display: initial;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
/** Server icons **/
|
||||||
|
.closed-sidebar .server-icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.closed-sidebar .app-sidebar:hover .server-icon, .sidebar-mobile-open .server-icon {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
/** Fix position of tree expander and checkbox */
|
/** Fix position of tree expander and checkbox */
|
||||||
span.fancytree-checkbox, span.fancytree-custom-icon, span.fancytree-expander, span.fancytree-icon {
|
span.fancytree-checkbox, span.fancytree-custom-icon, span.fancytree-expander, span.fancytree-icon {
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
|
@ -34,8 +34,11 @@
|
|||||||
<ul class="vertical-nav-menu">
|
<ul class="vertical-nav-menu">
|
||||||
<li class="app-sidebar__heading">{{ $server ?? 'Server Name' }}</li>
|
<li class="app-sidebar__heading">{{ $server ?? 'Server Name' }}</li>
|
||||||
<li>
|
<li>
|
||||||
<div class="font-icon-wrapper float-left mr-1">
|
<div class="font-icon-wrapper float-left mr-1 server-icon">
|
||||||
<a class="p-0 m-0 server-icon" href="{{ url('info') }}" style="display: contents;"><i class="fas fa-fw fa-info pr-1 pl-1"></i></a>
|
<a class="p-0 m-0" href="{{ url('info') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-info pr-1 pl-1"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="font-icon-wrapper float-left ml-1 mr-1 server-icon">
|
||||||
|
<a class="p-0 m-0" href="{{ url('schema') }}" onclick="return false;" style="display: contents;"><i class="fas fa-fw fa-fingerprint pr-1 pl-1"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
</li>
|
</li>
|
||||||
@ -55,7 +58,7 @@
|
|||||||
var content;
|
var content;
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: $(this).attr('href'),
|
url: $(this).children('a:first-child').attr('href'),
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
dataType: 'html',
|
dataType: 'html',
|
||||||
statusCode: {
|
statusCode: {
|
||||||
@ -77,7 +80,6 @@
|
|||||||
|
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
console.log($(this).attr('href'));
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user