How To Make Iris Color Picker Showed Up Over Form and Text?

I found the answer.

SO, there is no need to use wordpress api to make the color picker box showed up over another elemnn/s when the ‘Select color’ button is clicked.

Just add this css code to your plugin/ theme administration css file:

.wp-picker-clear,
div.wp-picker-holder {
z-index: 999 !important;
position: absolute !important;
}