rbac updated
This commit is contained in:
@@ -82,7 +82,7 @@
|
||||
|
||||
<!-- Taskbar -->
|
||||
<div id="taskbar">
|
||||
<button id="start-btn">☰</button>
|
||||
<button class="" id="start-btn">☰</button>
|
||||
<div id="taskbar-windows"></div>
|
||||
<button style="margin-right:0;" class="monolyth notify-button pulse">
|
||||
<img class="icon" src="/images/notifybubble.png">
|
||||
@@ -96,7 +96,7 @@
|
||||
<script src="javascript/contextMenu.js"></script>
|
||||
<script src="javascript/tableFilter.js"></script>
|
||||
<script src="javascript/requiredFields.js"></script>
|
||||
<script src="javascript/loadOnce.js"></script>
|
||||
<script src="javascript/uiEvents.js"></script>
|
||||
<script src="javascript/JSON.js"></script>
|
||||
<script src="javascript/os.js"></script>
|
||||
<script>
|
||||
|
||||
@@ -33,7 +33,22 @@ section {
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 8px;
|
||||
margin: 0 2px 2px 0;
|
||||
transition: background var(--times-transition-colors) ease, border-color var(--times-transition-colors) ease, color var(--times-transition-colors) ease;
|
||||
}
|
||||
|
||||
section:hover {
|
||||
background: var(--theme-accent-hover-backcolor);
|
||||
color: var(--theme-accent-hover-color);
|
||||
border-color:var(--theme-accent-hover-boder-color);
|
||||
}
|
||||
|
||||
section:active {
|
||||
background: var(--theme-accent-active-backcolor);
|
||||
color: var(--theme-accent-active-color);
|
||||
border-color:var(--theme-accent-active-boder-color);
|
||||
}
|
||||
|
||||
|
||||
section span {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
@@ -47,24 +62,22 @@ input {
|
||||
</head>
|
||||
<body>
|
||||
<!-- USERS -->
|
||||
<div class="container grid" style="grid-template-columns: calc(50% - 8px) calc(50% - 8px);height:100vh;">
|
||||
<div class="card">
|
||||
<div class="container static" style="height:100vh;max-width:100vw;flex-direction:row;flex-wrap:wrap">
|
||||
<div class="card" style="flex:1 1 auto;min-width:300px">
|
||||
Users <input id="newUserName" placeholder="sAMAccountName" /> <button class="bluebutton" onclick="createUser()">Create User</button>
|
||||
<div class="table-wrapper fit-table">
|
||||
<table id="rbacUsersTable">
|
||||
<table id="rbacUsersTable" style="height:100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-align:left"></th>
|
||||
<th class="text-align:left">ObjectGUID</th>
|
||||
<th class="text-align:left">sAMAccountName</th>
|
||||
<th class="text-align:center">Rollen</th>
|
||||
<th class="text-align:center">Gruppen</th>
|
||||
<th class="text-align:left">Name</th>
|
||||
<th class="text-align:left">Vorname</th>
|
||||
<th class="text-align:left">Mail</th>
|
||||
<th class="text-align:center">Aktiv</th>
|
||||
<th class="text-align:center">Online</th>
|
||||
<th class="text-align:center">Rollen</th>
|
||||
<th class="text-align:center">Gruppen</th>
|
||||
<th class="text-align:right">Herkunft</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -75,28 +88,26 @@ input {
|
||||
</div>
|
||||
|
||||
<!-- GROUPS -->
|
||||
<div class="card static" style="flex:1 0 100vw;">
|
||||
<div class="card" style="min-width:300px;flex:1 1 calc(300px)">
|
||||
<input id="newGroupName" placeholder="Gruppenname" /> <button class="bluebutton" onclick="createGroup()">Create Group</button>
|
||||
|
||||
<div id="rbacGroupContainer">
|
||||
<span>GRUPPEN WERDEN GELADEN . . .</span>
|
||||
</div>
|
||||
|
||||
<input id="newGroupName" placeholder="Group Name" />
|
||||
<button class="bluebutton" onclick="createGroup()">Create Group</button>
|
||||
</div>
|
||||
|
||||
<!-- ROLES -->
|
||||
<div class="card">
|
||||
<h3>Roles</h3>
|
||||
<div id="roleList"></div>
|
||||
|
||||
<div class="card" style="min-width:300px;flex:1 1 calc(300px)">
|
||||
<input id="newRoleName" placeholder="Role Name" />
|
||||
<button class="bluebutton" onclick="createRole()">Create Role</button>
|
||||
|
||||
<div id="rbacGroupContainer">
|
||||
<span>ROLLEN WERDEN GELADEN . . .</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- PERMISSIONS -->
|
||||
<div class="card">
|
||||
<div class="card" style="min-width:300px;flex:1 1 auto">
|
||||
<h3>Permissions</h3>
|
||||
|
||||
<input id="permScope" placeholder="Scope" />
|
||||
|
||||
Reference in New Issue
Block a user