We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Lauren,
I love what you have done.
In an odd set of coincidences, there was a CSS conflict with the "color-box" when using the SmartAdmin template with the Jarvis Color Picker.
So, I recoded my local copy of Pick-A-Color to use "pick-a-color-box".
The steps are below. Let me know if you would like my updated source (based on version 1.2.3).
Kind regards,
Ron
The updates are as follows:
CSS File:
Renamed FROM:
.color-
TO:
.pick-a-color-
FROM:
.pick-a-color-markup .advanced-content .pick-a-color-preview .pick-a-color-select.btn.advanced{margin-top:15px;display:none}
.pick-a-color-markup .advanced-content .pick-a-color-preview .pick-a-color-select.btn.advanced{margin-top:15px;}
JS File Due to class conflict with SmartAdmin Jarvis color-box:
CHANGED FROM (By adding two "-" in the name, needed to increase the split array position from 2 to 4):
var p=k.attr("class").split("-")[2]
var p=k.attr("class").split("-")[4]
Renamed FROM (note the leading space):
color-
pick-a-color-
FROM
"color-
TO
"pick-a-color-
'pick-a-color-
'color-
color-preview
pick-a-color-preview
THEN UNDO FROM:
pick-a-color-stop
TO color-stop
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Lauren,
I love what you have done.
In an odd set of coincidences, there was a CSS conflict with the "color-box" when using the SmartAdmin template with the Jarvis Color Picker.
So, I recoded my local copy of Pick-A-Color to use "pick-a-color-box".
The steps are below. Let me know if you would like my updated source (based on version 1.2.3).
Kind regards,
Ron
The updates are as follows:
CSS File:
Renamed FROM:
.color-
TO:
.pick-a-color-
FROM:
.pick-a-color-markup .advanced-content .pick-a-color-preview .pick-a-color-select.btn.advanced{margin-top:15px;display:none}
TO:
.pick-a-color-markup .advanced-content .pick-a-color-preview .pick-a-color-select.btn.advanced{margin-top:15px;}
JS File Due to class conflict with SmartAdmin Jarvis color-box:
CHANGED FROM (By adding two "-" in the name, needed to increase the split array position from 2 to 4):
var p=k.attr("class").split("-")[2]
TO:
var p=k.attr("class").split("-")[4]
Renamed FROM:
.color-
TO:
.pick-a-color-
Renamed FROM (note the leading space):
color-
TO:
pick-a-color-
FROM
"color-
TO
"pick-a-color-
FROM
'pick-a-color-
TO
'color-
FROM
color-preview
TO
pick-a-color-preview
THEN UNDO FROM:
pick-a-color-stop
TO
color-stop
The text was updated successfully, but these errors were encountered: