regression fix: ajax icons not appearing
This commit is contained in:
@@ -5887,7 +5887,7 @@ div.columnHost .column50 {
|
|||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none;
|
||||||
}
|
}
|
||||||
.success {
|
.success {
|
||||||
color: #60A917;
|
color: #60A917;
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -312,7 +312,6 @@
|
|||||||
background: repeating-linear-gradient(45deg, #f4f4f4, #f4f4f4 10px, #fff 10px, #fff 20px);
|
background: repeating-linear-gradient(45deg, #f4f4f4, #f4f4f4 10px, #fff 10px, #fff 20px);
|
||||||
}
|
}
|
||||||
#DeviceDetailTab-DetailsContainer .device_detail_mdm_hardware_data code {
|
#DeviceDetailTab-DetailsContainer .device_detail_mdm_hardware_data code {
|
||||||
display: block;
|
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
#deviceShowResources #AttachmentsContainer {
|
#deviceShowResources #AttachmentsContainer {
|
||||||
|
|||||||
@@ -284,7 +284,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.device_detail_mdm_hardware_data code {
|
.device_detail_mdm_hardware_data code {
|
||||||
display: block;
|
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -1455,7 +1455,7 @@ div.columnHost .column50 {
|
|||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none;
|
||||||
}
|
}
|
||||||
.success {
|
.success {
|
||||||
color: #60A917;
|
color: #60A917;
|
||||||
|
|||||||
@@ -1523,7 +1523,7 @@ div.columnHost {
|
|||||||
|
|
||||||
// Misc
|
// Misc
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.success {
|
.success {
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -391,7 +391,7 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
$container.find('button[data-action="show"]').on('click', function () {
|
$container.find('button[data-action="show"]').on('click', function () {
|
||||||
$container.find('code').removeClass('hidden');
|
$container.find('code').css('display', 'block').removeClass('hidden');
|
||||||
$(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1526,7 +1526,7 @@ WriteLiteral(@"</code>
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
$container.find('button[data-action=""show""]').on('click', function () {
|
$container.find('button[data-action=""show""]').on('click', function () {
|
||||||
$container.find('code').removeClass('hidden');
|
$container.find('code').css('display', 'block').removeClass('hidden');
|
||||||
$(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user