#107 allow moving of device OU when changing profile

This commit is contained in:
Gary Sharp
2024-01-12 12:53:50 +11:00
parent dcc4fcb984
commit 8afe4195a9
7 changed files with 447 additions and 299 deletions
+14 -9
View File
@@ -199,23 +199,28 @@
border-top: none;
background-color: #eee;
}
#Device_Show_Policies_Profile_Actions_Update_Dialog ul li,
#Device_Show_Policies_Batch_Actions_Update_Dialog ul li {
#Device_Show_Policies_Profile_Actions_Update_Dialog .profile-list,
#Device_Show_Policies_Batch_Actions_Update_Dialog .profile-list {
max-height: 300px;
overflow-y: auto;
}
#Device_Show_Policies_Profile_Actions_Update_Dialog .profile-list li,
#Device_Show_Policies_Batch_Actions_Update_Dialog .profile-list li {
background-color: #fff;
padding: 2px 0 2px 4px;
}
#Device_Show_Policies_Profile_Actions_Update_Dialog ul li:nth-child(odd),
#Device_Show_Policies_Batch_Actions_Update_Dialog ul li:nth-child(odd) {
#Device_Show_Policies_Profile_Actions_Update_Dialog .profile-list li:nth-child(odd),
#Device_Show_Policies_Batch_Actions_Update_Dialog .profile-list li:nth-child(odd) {
background-color: hsl(0, 0%, 98.5%);
}
#Device_Show_Policies_Profile_Actions_Update_Dialog ul li.selected,
#Device_Show_Policies_Batch_Actions_Update_Dialog ul li.selected {
#Device_Show_Policies_Profile_Actions_Update_Dialog .profile-list li.selected,
#Device_Show_Policies_Batch_Actions_Update_Dialog .profile-list li.selected {
background-color: #cddbec;
font-weight: 600;
}
#Device_Show_Policies_Profile_Actions_Update_Dialog label,
#Device_Show_Policies_Batch_Actions_Update_Dialog label {
display: block;
#Device_Show_Policies_Profile_Actions_Update_Dialog .enforce-ou,
#Device_Show_Policies_Batch_Actions_Update_Dialog .enforce-ou {
padding-top: 0.5em;
}
#DeviceDetailTab-JobsContainer div.jobTable {
margin: -1px;
+9 -6
View File
@@ -170,7 +170,10 @@
}
#Device_Show_Policies_Profile_Actions_Update_Dialog, #Device_Show_Policies_Batch_Actions_Update_Dialog {
ul {
.profile-list {
max-height: 300px;
overflow-y: auto;
li {
background-color: @white;
padding: 2px 0 2px 4px;
@@ -185,8 +188,8 @@
}
}
}
label {
display: block;
.enforce-ou {
padding-top: .5em;
}
}
@@ -619,9 +622,9 @@
background-color: @TableDataRowBackgroundColor;
}
td:nth-child(n+3) {
color: @SubtleBorderColour;
}
td:nth-child(n+3) {
color: @SubtleBorderColour;
}
}
tr.actionModified {
File diff suppressed because one or more lines are too long