mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Merge pull request #157 from juliandescottes/feature-colorpicker-hexa
Feature colorpicker hexa
This commit is contained in:
commit
f2aceedefd
@ -7,7 +7,7 @@
|
||||
border-radius: 4px;
|
||||
background-color: #2B2B2B;
|
||||
border: solid 4px #888;
|
||||
padding: 5px;
|
||||
padding: 5px 5px 0 5px;
|
||||
}
|
||||
|
||||
.sp-container[data-y-position=bottom] {
|
||||
@ -70,6 +70,12 @@
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
.sp-picker-container {
|
||||
padding: 5px;
|
||||
padding-bottom: 300px;
|
||||
margin-bottom: -295px;
|
||||
}
|
||||
|
||||
.sp-slider {
|
||||
height: 5px;
|
||||
left: -2px;
|
||||
@ -96,3 +102,16 @@
|
||||
border-color: gold;
|
||||
box-shadow: 0 0 0px 1px gold;
|
||||
}
|
||||
|
||||
.sp-input {
|
||||
border: 1px solid #666;
|
||||
margin: 0;
|
||||
background: #111;
|
||||
border-radius: 2px;
|
||||
color: #D3D3D3;
|
||||
font-family: Courier!important;
|
||||
}
|
||||
|
||||
.sp-input.sp-validation-error {
|
||||
background: #330000;
|
||||
}
|
@ -18,6 +18,9 @@ var Constants = {
|
||||
DEFAULT_PEN_COLOR : '#000000',
|
||||
TRANSPARENT_COLOR : 'rgba(0, 0, 0, 0)',
|
||||
|
||||
// Used for Spectrum input
|
||||
PREFERRED_COLOR_FORMAT : 'rgb',
|
||||
|
||||
/*
|
||||
* Fake semi-transparent color used to highlight transparent
|
||||
* strokes and rectangles:
|
||||
|
@ -22,6 +22,7 @@
|
||||
var spectrumCfg = {
|
||||
showPalette: true,
|
||||
showButtons: false,
|
||||
showInput: true,
|
||||
palette: [
|
||||
['rgba(0,0,0,0)']
|
||||
],
|
||||
|
@ -670,7 +670,7 @@
|
||||
|
||||
// Update the text entry input as it changes happen
|
||||
if (opts.showInput) {
|
||||
textInput.val(realColor.toString(format));
|
||||
textInput.val(realColor.toString(Constants.PREFERRED_COLOR_FORMAT || format));
|
||||
}
|
||||
|
||||
if (opts.showPalette) {
|
||||
|
Loading…
Reference in New Issue
Block a user