import v1.0.0-RC4 | 2009-05-20
This commit is contained in:
21
webdir/javascript/yui/colorpicker/README
Normal file
21
webdir/javascript/yui/colorpicker/README
Normal file
@ -0,0 +1,21 @@
|
||||
ColorPicker - Release Notes
|
||||
|
||||
2.6.0
|
||||
* Added colorpicker-core.css (empty) for completeness
|
||||
|
||||
2.5.1
|
||||
* No change
|
||||
|
||||
2.5.0
|
||||
* No change
|
||||
|
||||
2.4.0
|
||||
* Initialization values assigned to showcontrols, showrgbcontrols,
|
||||
showwebsafe, showhexsummary, animate, red, green, and blue in the
|
||||
constructor configuration are now honored.
|
||||
|
||||
2.3.1
|
||||
* No change (bug fixes were inherited from slider)
|
||||
|
||||
2.3.0
|
||||
* Initial release
|
@ -0,0 +1,6 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
BIN
webdir/javascript/yui/colorpicker/assets/hue_thumb.png
Normal file
BIN
webdir/javascript/yui/colorpicker/assets/hue_thumb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 195 B |
BIN
webdir/javascript/yui/colorpicker/assets/picker_mask.png
Normal file
BIN
webdir/javascript/yui/colorpicker/assets/picker_mask.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
webdir/javascript/yui/colorpicker/assets/picker_thumb.png
Normal file
BIN
webdir/javascript/yui/colorpicker/assets/picker_thumb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 192 B |
@ -0,0 +1,105 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
||||
|
||||
.yui-picker-panel {
|
||||
background: #e3e3e3;
|
||||
border-color: #888;
|
||||
}
|
||||
|
||||
.yui-picker-panel .hd {
|
||||
background-color:#ccc;
|
||||
font-size:100%;
|
||||
line-height:100%;
|
||||
border:1px solid #e3e3e3;
|
||||
font-weight:bold;
|
||||
overflow:hidden;
|
||||
padding: 6px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.yui-picker-panel .bd {
|
||||
background: #e8e8e8;
|
||||
margin: 1px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.yui-picker-panel .ft {
|
||||
background: #e8e8e8;
|
||||
margin: 1px;
|
||||
padding: 1px;
|
||||
/*
|
||||
text-align: center;
|
||||
*/
|
||||
}
|
||||
|
||||
.yui-picker {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.yui-picker-hue-thumb { cursor:default; width:18px; height:18px;
|
||||
top: -8px;
|
||||
left: -2px;
|
||||
z-index: 9; position:absolute; }
|
||||
.yui-picker-hue-bg {-moz-outline: none; outline:0px none;
|
||||
position:absolute; left:200px; height:183px; width:14px;
|
||||
background:url(hue_bg.png) no-repeat;
|
||||
top:4px;
|
||||
}
|
||||
|
||||
.yui-picker-bg {
|
||||
-moz-outline: none;
|
||||
outline:0px none;
|
||||
position:absolute;
|
||||
top:4px;
|
||||
left:4px;
|
||||
height:182px;
|
||||
width:182px;
|
||||
background-color:#F00;
|
||||
background-image: url(picker_mask.png);
|
||||
}
|
||||
|
||||
*html .yui-picker-bg {
|
||||
background-image: none;
|
||||
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png', sizingMethod='scale');
|
||||
}
|
||||
|
||||
|
||||
.yui-picker-mask { position:absolute; z-index: 1; top:0px; left:0px; }
|
||||
|
||||
.yui-picker-thumb { cursor:default; width:11px; height:11px; z-index: 9; position:absolute;
|
||||
top:-4px; left:-4px; }
|
||||
|
||||
.yui-picker-swatch { position:absolute; left:240px; top:4px; height:60px;
|
||||
width:55px; border:1px solid #888; }
|
||||
.yui-picker-websafe-swatch { position:absolute; left:304px; top:4px;
|
||||
height:24px; width:24px; border:1px solid #888; }
|
||||
|
||||
.yui-picker-controls { position:absolute; top: 72px; left:226px; font:1em monospace;}
|
||||
.yui-picker-controls .hd { background: transparent; border-width: 0px !important;}
|
||||
.yui-picker-controls .bd { height: 100px; border-width: 0px !important;}
|
||||
.yui-picker-controls ul {float:left;padding:0 2px 0 0;margin:0}
|
||||
.yui-picker-controls li {padding:2px;list-style:none;margin:0}
|
||||
.yui-picker-controls input {
|
||||
font-size: 0.85em;
|
||||
width: 2.4em;
|
||||
}
|
||||
.yui-picker-hex-controls {
|
||||
clear: both;
|
||||
padding: 2px;
|
||||
}
|
||||
.yui-picker-hex-controls input {
|
||||
width: 4.6em;
|
||||
}
|
||||
|
||||
.yui-picker-controls a {
|
||||
font: 1em arial,helvetica,clean,sans-serif;
|
||||
display:block;
|
||||
*display:inline-block; /* IE */
|
||||
padding: 0;
|
||||
color: #000;
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
/*
|
||||
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||
Code licensed under the BSD License:
|
||||
http://developer.yahoo.net/yui/license.txt
|
||||
version: 2.6.0
|
||||
*/
|
||||
.yui-picker-panel{background:#e3e3e3;border-color:#888;}.yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.yui-picker{position:relative;}.yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.yui-picker-hue-bg{-moz-outline:none;outline:0px none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.yui-picker-bg{-moz-outline:none;outline:0px none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../build/colorpicker/assets/picker_mask.png',sizingMethod='scale');}.yui-picker-mask{position:absolute;z-index:1;top:0px;left:0px;}.yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.yui-picker-controls .hd{background:transparent;border-width:0px !important;}.yui-picker-controls .bd{height:100px;border-width:0px !important;}.yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0}.yui-picker-controls li{padding:2px;list-style:none;margin:0}.yui-picker-controls input{font-size:0.85em;width:2.4em;}.yui-picker-hex-controls{clear:both;padding:2px;}.yui-picker-hex-controls input{width:4.6em;}.yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
|
BIN
webdir/javascript/yui/colorpicker/assets/skins/sam/hue_bg.png
Normal file
BIN
webdir/javascript/yui/colorpicker/assets/skins/sam/hue_bg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
1755
webdir/javascript/yui/colorpicker/colorpicker-debug.js
vendored
Normal file
1755
webdir/javascript/yui/colorpicker/colorpicker-debug.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
9
webdir/javascript/yui/colorpicker/colorpicker-min.js
vendored
Normal file
9
webdir/javascript/yui/colorpicker/colorpicker-min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1735
webdir/javascript/yui/colorpicker/colorpicker.js
vendored
Normal file
1735
webdir/javascript/yui/colorpicker/colorpicker.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user