diff --git a/scripts/system/html/css/edit-style.css b/scripts/system/html/css/edit-style.css
index cb8dd7bcbc..7aa08b35cd 100644
--- a/scripts/system/html/css/edit-style.css
+++ b/scripts/system/html/css/edit-style.css
@@ -853,6 +853,9 @@ div.refresh input[type="button"] {
border-color: #afafaf;
}
+.colpick {
+ z-index: 3;
+}
.colpick[disabled="disabled"] {
display: none !important;
}
diff --git a/scripts/system/html/js/entityProperties.js b/scripts/system/html/js/entityProperties.js
index 204b97918e..c26d581ec3 100644
--- a/scripts/system/html/js/entityProperties.js
+++ b/scripts/system/html/js/entityProperties.js
@@ -1892,9 +1892,9 @@ function createColorProperty(property, elProperty) {
// The original color preview within the picker needs to be updated on show because
// prior to the picker being shown we don't have access to the selections' starting color.
colorPickers[colorPickerID].colpickSetColor({
- "r": elInputR.value,
- "g": elInputG.value,
- "b": elInputB.value
+ "r": elNumberR.elInput.value,
+ "g": elNumberG.elInput.value,
+ "b": elNumberB.elInput.value
});
},
onHide: function(colpick) {