Index: misc/farbtastic/wheel.png =================================================================== RCS file: misc/farbtastic/wheel.png diff -N misc/farbtastic/wheel.png Binary files /tmp/cvs5mCwr6 and /dev/null differ Index: misc/farbtastic/marker.png =================================================================== RCS file: misc/farbtastic/marker.png diff -N misc/farbtastic/marker.png Binary files /tmp/cvs6h767X and /dev/null differ Index: misc/farbtastic/farbtastic.css =================================================================== RCS file: misc/farbtastic/farbtastic.css diff -N misc/farbtastic/farbtastic.css --- misc/farbtastic/farbtastic.css 13 Apr 2007 07:33:23 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,35 +0,0 @@ -/* $Id: farbtastic.css,v 1.3 2007/04/13 07:33:23 dries Exp $ */ - -.farbtastic { - position: relative; -} -.farbtastic * { - position: absolute; - cursor: crosshair; -} -.farbtastic, .farbtastic .wheel { - width: 195px; - height: 195px; -} -.farbtastic .color, .farbtastic .overlay { - top: 47px; - left: 47px; - width: 101px; - height: 101px; -} -.farbtastic .wheel { - background: url(wheel.png) no-repeat; - width: 195px; - height: 195px; -} -.farbtastic .overlay { - background: url(mask.png) no-repeat; -} -.farbtastic .marker { - width: 17px; - height: 17px; - margin: -8px 0 0 -8px; - overflow: hidden; - background: url(marker.png) no-repeat; -} - Index: misc/farbtastic/mask.png =================================================================== RCS file: misc/farbtastic/mask.png diff -N misc/farbtastic/mask.png Binary files /tmp/cvsdr3twH and /dev/null differ Index: misc/farbtastic/farbtastic.js =================================================================== RCS file: misc/farbtastic/farbtastic.js diff -N misc/farbtastic/farbtastic.js --- misc/farbtastic/farbtastic.js 12 Jun 2008 19:49:10 -0000 1.5 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,315 +0,0 @@ -// $Id: farbtastic.js,v 1.5 2008/06/12 19:49:10 dries Exp $ -// Farbtastic 1.2 - -jQuery.fn.farbtastic = function (callback) { - $.farbtastic(this, callback); - return this; -}; - -jQuery.farbtastic = function (container, callback) { - var container = $(container).get(0); - return container.farbtastic || (container.farbtastic = new jQuery._farbtastic(container, callback)); -}; - -jQuery._farbtastic = function (container, callback) { - // Store farbtastic object - var fb = this; - - // Insert markup - $(container).html('
'); - var e = $('.farbtastic', container); - fb.wheel = $('.wheel', container).get(0); - // Dimensions - fb.radius = 84; - fb.square = 100; - fb.width = 194; - - // Fix background PNGs in IE6 - if (navigator.appVersion.match(/MSIE [0-6]\./)) { - $('*', e).each(function () { - if (this.currentStyle.backgroundImage != 'none') { - var image = this.currentStyle.backgroundImage; - image = this.currentStyle.backgroundImage.substring(5, image.length - 2); - $(this).css({ - 'backgroundImage': 'none', - 'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='" + image + "')" - }); - } - }); - } - - /** - * Link to the given element(s) or callback. - */ - fb.linkTo = function (callback) { - // Unbind previous nodes - if (typeof fb.callback == 'object') { - $(fb.callback).unbind('keyup', fb.updateValue); - } - - // Reset color - fb.color = null; - - // Bind callback or elements - if (typeof callback == 'function') { - fb.callback = callback; - } - else if (typeof callback == 'object' || typeof callback == 'string') { - fb.callback = $(callback); - fb.callback.bind('keyup', fb.updateValue); - if (fb.callback.get(0).value) { - fb.setColor(fb.callback.get(0).value); - } - } - return this; - }; - fb.updateValue = function (event) { - if (this.value && this.value != fb.color) { - fb.setColor(this.value); - } - }; - - /** - * Change color with HTML syntax #123456 - */ - fb.setColor = function (color) { - var unpack = fb.unpack(color); - if (fb.color != color && unpack) { - fb.color = color; - fb.rgb = unpack; - fb.hsl = fb.RGBToHSL(fb.rgb); - fb.updateDisplay(); - } - return this; - }; - - /** - * Change color with HSL triplet [0..1, 0..1, 0..1] - */ - fb.setHSL = function (hsl) { - fb.hsl = hsl; - fb.rgb = fb.HSLToRGB(hsl); - fb.color = fb.pack(fb.rgb); - fb.updateDisplay(); - return this; - }; - - ///////////////////////////////////////////////////// - - /** - * Retrieve the coordinates of the given event relative to the center - * of the widget. - */ - fb.widgetCoords = function (event) { - var x, y; - var el = event.target || event.srcElement; - var reference = fb.wheel; - - // If the offset from the relative element is undefined calculate it. - if ( typeof event.offsetX == 'undefined' && typeof event.offsetY == 'undefined' ) { - var offset = $(event.target).offset(false); - event.offsetX = event.pageX - offset.left; - event.offsetY = event.pageY - offset.top; - } - - // Use offset coordinates and find common offsetParent - var pos = { x: event.offsetX, y: event.offsetY }; - - // Send the coordinates upwards through the offsetParent chain. - var e = el; - while (e) { - e.mouseX = pos.x; - e.mouseY = pos.y; - pos.x += e.offsetLeft; - pos.y += e.offsetTop; - e = e.offsetParent; - } - - // Look for the coordinates starting from the wheel widget. - var e = reference; - var offset = { x: 0, y: 0 }; - while (e) { - if (typeof e.mouseX != 'undefined') { - x = e.mouseX - offset.x; - y = e.mouseY - offset.y; - break; - } - offset.x += e.offsetLeft; - offset.y += e.offsetTop; - e = e.offsetParent; - } - - // Reset stored coordinates - e = el; - while (e) { - e.mouseX = undefined; - e.mouseY = undefined; - e = e.offsetParent; - } - - // Subtract distance to middle - return { x: x - fb.width / 2, y: y - fb.width / 2 }; - }; - - /** - * Mousedown handler - */ - fb.mousedown = function (event) { - // Capture mouse - if (!document.dragging) { - $(document).bind('mousemove', fb.mousemove).bind('mouseup', fb.mouseup); - document.dragging = true; - } - - // Check which area is being dragged - var pos = fb.widgetCoords(event); - fb.circleDrag = Math.max(Math.abs(pos.x), Math.abs(pos.y)) * 2 > fb.square; - - // Process - fb.mousemove(event); - return false; - }; - - /** - * Mousemove handler - */ - fb.mousemove = function (event) { - // Get coordinates relative to color picker center - var pos = fb.widgetCoords(event); - - // Set new HSL parameters - if (fb.circleDrag) { - var hue = Math.atan2(pos.x, -pos.y) / 6.28; - if (hue < 0) hue += 1; - fb.setHSL([hue, fb.hsl[1], fb.hsl[2]]); - } - else { - var sat = Math.max(0, Math.min(1, -(pos.x / fb.square) + .5)); - var lum = Math.max(0, Math.min(1, -(pos.y / fb.square) + .5)); - fb.setHSL([fb.hsl[0], sat, lum]); - } - return false; - }; - - /** - * Mouseup handler - */ - fb.mouseup = function () { - // Uncapture mouse - $(document).unbind('mousemove', fb.mousemove); - $(document).unbind('mouseup', fb.mouseup); - document.dragging = false; - }; - - /** - * Update the markers and styles - */ - fb.updateDisplay = function () { - // Markers - var angle = fb.hsl[0] * 6.28; - $('.h-marker', e).css({ - left: Math.round(Math.sin(angle) * fb.radius + fb.width / 2) + 'px', - top: Math.round(-Math.cos(angle) * fb.radius + fb.width / 2) + 'px' - }); - - $('.sl-marker', e).css({ - left: Math.round(fb.square * (.5 - fb.hsl[1]) + fb.width / 2) + 'px', - top: Math.round(fb.square * (.5 - fb.hsl[2]) + fb.width / 2) + 'px' - }); - - // Saturation/Luminance gradient - $('.color', e).css('backgroundColor', fb.pack(fb.HSLToRGB([fb.hsl[0], 1, 0.5]))); - - // Linked elements or callback - if (typeof fb.callback == 'object') { - // Set background/foreground color - $(fb.callback).css({ - backgroundColor: fb.color, - color: fb.hsl[2] > 0.5 ? '#000' : '#fff' - }); - - // Change linked value - $(fb.callback).each(function() { - if (this.value && this.value != fb.color) { - this.value = fb.color; - } - }); - } - else if (typeof fb.callback == 'function') { - fb.callback.call(fb, fb.color); - } - }; - - /* Various color utility functions */ - fb.pack = function (rgb) { - var r = Math.round(rgb[0] * 255); - var g = Math.round(rgb[1] * 255); - var b = Math.round(rgb[2] * 255); - return '#' + (r < 16 ? '0' : '') + r.toString(16) + - (g < 16 ? '0' : '') + g.toString(16) + - (b < 16 ? '0' : '') + b.toString(16); - }; - - fb.unpack = function (color) { - if (color.length == 7) { - return [parseInt('0x' + color.substring(1, 3)) / 255, - parseInt('0x' + color.substring(3, 5)) / 255, - parseInt('0x' + color.substring(5, 7)) / 255]; - } - else if (color.length == 4) { - return [parseInt('0x' + color.substring(1, 2)) / 15, - parseInt('0x' + color.substring(2, 3)) / 15, - parseInt('0x' + color.substring(3, 4)) / 15]; - } - }; - - fb.HSLToRGB = function (hsl) { - var m1, m2, r, g, b; - var h = hsl[0], s = hsl[1], l = hsl[2]; - m2 = (l <= 0.5) ? l * (s + 1) : l + s - l*s; - m1 = l * 2 - m2; - return [this.hueToRGB(m1, m2, h+0.33333), - this.hueToRGB(m1, m2, h), - this.hueToRGB(m1, m2, h-0.33333)]; - }; - - fb.hueToRGB = function (m1, m2, h) { - h = (h < 0) ? h + 1 : ((h > 1) ? h - 1 : h); - if (h * 6 < 1) return m1 + (m2 - m1) * h * 6; - if (h * 2 < 1) return m2; - if (h * 3 < 2) return m1 + (m2 - m1) * (0.66666 - h) * 6; - return m1; - }; - - fb.RGBToHSL = function (rgb) { - var min, max, delta, h, s, l; - var r = rgb[0], g = rgb[1], b = rgb[2]; - min = Math.min(r, Math.min(g, b)); - max = Math.max(r, Math.max(g, b)); - delta = max - min; - l = (min + max) / 2; - s = 0; - if (l > 0 && l < 1) { - s = delta / (l < 0.5 ? (2 * l) : (2 - 2 * l)); - } - h = 0; - if (delta > 0) { - if (max == r && max != g) h += (g - b) / delta; - if (max == g && max != b) h += (2 + (b - r) / delta); - if (max == b && max != r) h += (4 + (r - g) / delta); - h /= 6; - } - return [h, s, l]; - }; - - // Install mousedown handler (the others are set on the document on-demand) - $('*', e).mousedown(fb.mousedown); - - // Init color - fb.setColor('#000000'); - - // Set linked elements/callback - if (callback) { - fb.linkTo(callback); - } -}; \ No newline at end of file Index: modules/color/color.module =================================================================== RCS file: /cvs/drupal/drupal/modules/color/color.module,v retrieving revision 1.47 diff -u -r1.47 color.module --- modules/color/color.module 20 Sep 2008 20:22:24 -0000 1.47 +++ modules/color/color.module 29 Sep 2008 21:21:45 -0000 @@ -149,19 +149,19 @@ * Form callback. Returns the configuration form. */ function color_scheme_form(&$form_state, $theme) { - $base = drupal_get_path('module', 'color'); + //$base = drupal_get_path('module', 'color'); $info = color_get_info($theme); // Add Farbtastic color picker. - drupal_add_css('misc/farbtastic/farbtastic.css', 'module', 'all', FALSE); - drupal_add_js('misc/farbtastic/farbtastic.js'); + //drupal_add_css('misc/farbtastic/farbtastic.css', 'module', 'all', FALSE); + //drupal_add_js('misc/farbtastic/farbtastic.js'); // Add custom CSS and JS. - drupal_add_css($base . '/color.css', 'module', 'all', FALSE); - drupal_add_js($base . '/color.js'); - drupal_add_js(array('color' => array( + //drupal_add_css($base . '/color.css', 'module', 'all', FALSE); + //drupal_add_js($base . '/color.js'); + /*drupal_add_js(array('color' => array( 'reference' => color_get_palette($theme, TRUE) - )), 'setting'); + )), 'setting');*/ // See if we're using a predefined scheme. $current = implode(',', variable_get('color_' . $theme . '_palette', array())); @@ -210,7 +210,34 @@ $theme = $form['theme']['#value']; $info = $form['info']['#value']; $path = drupal_get_path('theme', $theme) . '/'; - drupal_add_css($path . $info['preview_css']); + drupal_add_js('misc/ui.core.js'); + drupal_add_js(drupal_get_path('module', 'color') . '/ui.colorpicker.js'); + /*drupal_add_js('$(document).ready(function(){ + $("#colorpicker").colorpicker({ + flat: true, + onChange: function (hsb, hex, rgb) { + $("#palette:selected").value("#" + hex); + }, + }); + $("#palette :text").focus(function() { + $("#colorpicker").ColorPickerSetColor(this.value.replace("#", "")); + }); + });', 'inline');*/ + drupal_add_js('$(document).ready(function(){ + $("#palette input").colorpicker({ + onSubmit: function(hsb, hex, rgb) { + $("#palette input:selected").val("#" + hex); + }, + onBeforeShow: function () { + $(this).ColorPickerSetColor(this.value.replace("#", "")); + } + }) + .bind("keyup", function(){ + $(this).ColorPickerSetColor(this.value.replace("#", "")); + }); + });', 'inline'); + drupal_add_css('misc/ui.all.css'); + //drupal_add_css($path . $info['preview_css']); $output = ''; $output .= '
'; @@ -222,6 +249,7 @@ $output .= drupal_render($form['palette'][$name]); } $output .= '
'; + //$output .= '
'; // Preview $output .= drupal_render($form); $output .= '

' . t('Preview') . '

'; Index: misc/images/colorpicker_hsb_s.png =================================================================== RCS file: misc/images/colorpicker_hsb_s.png diff -N misc/images/colorpicker_hsb_s.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_hsb_s.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,16 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VIDATx��AH�`�_jtU�m3��-��kWw� ���c ��٫ǂ(�(x�(6l@v�ւ�0��Z�iSj��j�v�h�&%�ܾ.��'�����'}���f�Z�08A�������҂�N� +���:�Z�q�#Q?! à�GGG�|S��귬���J�Kk���qhh�$�L&�L&��`�+>��g��yyIӴ^�hjjZ[[� +�օ��Ѩ��e��{&#f2�������`��rmmm��0�^��z���X�w��t +�����E����������Ǐ�x|}}�P(HÐ���Ñ����v�ϊ�X,,�� �P(�L&�f������t���BS__�N��6 BWwo$̮��x@Q�'�-,,x<���U��Dz�( ����7e�V*0��>��f4�߻�a���$_(����~#��1 �'��8%�J�677�LNf�Y��N���چa�+vA���p +S�\.��Օt I����F�1���$i6�� + + +HWӲ���q����vvv�J���,�qV�U�x*,[0 +.��eY �oJ�Χ��3�q�߽뷷���u�ZgF�m5i2YJg=M���1n1�w�Q�Y�t�kD@[D�I��קX a[� +!��F�1"�Z�D����j��k�%xٶmff��tvuu +{�����D�]�W��LEՈ@�� +(�j����A�����D��+��ᄁ.I�D@��#B��z�ݭɶ��˗������v��b[�ɮ���UJ:���/_�|��P/Pd��%YW'��rZ%��&�uu�Z��3�H~��$I�����{zz�1U�^T �J�j"P�볳�0===11� +"��l����?�`�>::*������(�����w�"�H �z�>�okk���Qq�qqq�?�� U�e���Ǜ\ZZ*^T5ֆ�����a�E��ۛ�ߗ�T�F�Պt5m6e����%���z�@Eo�*$��ZG^0J+�z���z���'���̏F��\�i�IEND�B`� Index: misc/images/colorpicker_hsb_b.png =================================================================== RCS file: misc/images/colorpicker_hsb_b.png diff -N misc/images/colorpicker_hsb_b.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_hsb_b.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,7 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VPIDATx��AKA���l�⚰�ƃQj֘�x1x�P ��݃�!�� H����)Ғ����/F�n��d�=�n7٘ +�Ig���0nf�����C�`0��<�V��r<����Q�>88�˲@aq��xhE�8�#q�UUq����5&�@ �H�G�x���=����f��������;��F�T*u{{����� �8==m�cVt+U&��$�av~j�}���a�Px�q}}}�`���������n��&U6�C�p�:;�Z�>r~~�\.{�����D"Q*��u�W&�d(t�ϣvhb�.0�0�(j�ƲlOO����i7�e�. +5�zS�d2��f=,�qa!�O�; ��*wq���ɺ����g�����QA�puU3 {���X(� �\\^Zg60kkk�J������p^�PE"[��S`l�DBQ���.�a���eY��|Lg��0�wF���R��w||����mڬS;��@ @"�c�N��q^�]UUZ���0��S�~S,r�~��L�:�)Ir�]F�}���K��0^����a➉F]#����<�����F��5�p��k\#�F`&��Z]P��F�X�)��]�������%�LI҇��RGG�G�I�h �L#P�Th5���V�L#�u�aJEEQ��,˱Xlvv�ާ�fmmm��E�0W}gg���777�0z���76����%����%��x���\#P}Z�=�X]]����*�� ���͇Dk6���`ii�"��T��� +O�5z=(MF���#�F���Ft�q�$������?-kگO���2h��IEND�B`� Index: misc/images/454545_7x7_arrow_down.gif =================================================================== RCS file: misc/images/454545_7x7_arrow_down.gif diff -N misc/images/454545_7x7_arrow_down.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_7x7_arrow_down.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a�DFD��!�, ���� K1�; Index: misc/images/222222_7x7_arrow_left.gif =================================================================== RCS file: misc/images/222222_7x7_arrow_left.gif diff -N misc/images/222222_7x7_arrow_left.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_7x7_arrow_left.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a�$"$��!�, �g�Ǎ��:S; Index: misc/images/e6e6e6_40x100_textures_02_glass_75.png =================================================================== RCS file: misc/images/e6e6e6_40x100_textures_02_glass_75.png diff -N misc/images/e6e6e6_40x100_textures_02_glass_75.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/e6e6e6_40x100_textures_02_glass_75.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +�PNG + + +IHDR(d�drz�IDATh��Ա +!E���N)����L[ +��V;�Z��b�t�?�U��@U�*P� +T�U��@U�*P� +T�U��@U�*P� +T����W�/8�8��U��@U����yw��uO7� +T�U��@U�*P� +T�U��@U�*P� +T?��?̘IEND�B`� Index: misc/images/454545_11x11_icon_arrows_leftright.gif =================================================================== RCS file: misc/images/454545_11x11_icon_arrows_leftright.gif diff -N misc/images/454545_11x11_icon_arrows_leftright.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_arrows_leftright.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �DFD��!�, �����IN�(���; Index: misc/images/222222_11x11_icon_resize_se.gif =================================================================== RCS file: misc/images/222222_11x11_icon_resize_se.gif diff -N misc/images/222222_11x11_icon_resize_se.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_resize_se.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �$"$��!�, ����{�tp��pҼ^�y�Q; Index: misc/images/888888_7x7_arrow_down.gif =================================================================== RCS file: misc/images/888888_7x7_arrow_down.gif diff -N misc/images/888888_7x7_arrow_down.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_7x7_arrow_down.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a������!�, ���� K1�; Index: misc/images/454545_11x11_icon_close.gif =================================================================== RCS file: misc/images/454545_11x11_icon_close.gif diff -N misc/images/454545_11x11_icon_close.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_close.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �DFD��!�, ���l�t�6��s�8��$; Index: misc/images/888888_7x7_arrow_left.gif =================================================================== RCS file: misc/images/888888_7x7_arrow_left.gif diff -N misc/images/888888_7x7_arrow_left.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_7x7_arrow_left.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a������!�, �g�Ǎ��:S; Index: misc/images/888888_11x11_icon_plus.gif =================================================================== RCS file: misc/images/888888_11x11_icon_plus.gif diff -N misc/images/888888_11x11_icon_plus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_plus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a ������!�, �� ����S��`�� ��5a�; Index: misc/images/222222_11x11_icon_doc.gif =================================================================== RCS file: misc/images/222222_11x11_icon_doc.gif diff -N misc/images/222222_11x11_icon_doc.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_doc.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �$"$��!�, �� ��ڂ�M�u�g}���v; Index: misc/images/colorpicker_overlay.png =================================================================== RCS file: misc/images/colorpicker_overlay.png diff -N misc/images/colorpicker_overlay.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_overlay.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,93 @@ +�PNG + + +IHDR��<q� pHYs  �� cHRMz-�����RqE�f9!�'�V'�IDATx��}ˎ�H��'���O�;��8�n��]ݕY���=�%����G�� �N:��(TU36w�/3��f�03���=����;����~�6w/�W=�x��1���/��Ǣ�� ?�����w��Z��ݽ��������ݿ}�����/���cf�k��yO�l@" �NԳz���1�������yvq���� ������羭��ێ���x<���������w���������O?�_��W��{�z|�I�ـ�s�^<��/\�o���N?�o23�������9?v<���o��v�׏}v�l;��k�|>��|���������n���n7�������������O?�d߾}�/��~h�ffm�ဵ�V���玁 +�=���*�}�\<�vm>��� �y�G�7�FrV@��t�����|Zm��ǣ=��~���v󏏏������[���_�?������~����x<ڗ��ʉ���'o +�l��r���D�֎�B�Y ������6xlj��[km�[k��[�=E�#R���s~шR;�|�P}�۞�g����n;�ׯ_�_�����/��/��ׯ_��|�X00)��&g!��'^I�M�a$ +�����FA�9���A�0��c��N�6����1����{��`rw{<X�|>}�v����f��}�����o�����_��ׯ��o�Y�} +���"m�"[��Ơ��;�������DT��.V�x$��.`"�4ԙ��l��0B���߾�6��{?" 5��~������G���h��}���������v���(RT��g"N�H��*�|� ���ZÓ�5Ë#z��GPf�r׊����xF,�Q�����v5@5�ۮ�������n����߿��~�}|| ��~���n��=�ffZcU�5�d+�-�눎�t�I�(�)@�1[!�����N�����`�u�k��&�d{;�aې�Lh�������]S���@��*�ҷo����Ƕ�,�P� O�ZHRs�e�8�82�ޏGQ��=ff�X�������5p�t�ð$]u��a :DKa誝�l���=�϶G�v��ۮ�NT��?>>��LJ=���x�9bM��,J������"ꋲ1�G�|y�sax$Е4h�)�@6n�T�^"1b#�� +����s�d� +-��@�j�Gd��}�Vv���~���� +St�}�}�����w{<G��h��Q��*TK"Oh�� 좗��v�����Ӷ�MFzP��5 sS�Ȁ� J.hn�7�Q��@C a&��WuP�n�nXv������n�f��qd�>�}g<�l+�rHApB��w���V�Ĝ(�� m��y�.p�����.2-�c�'��` +Z���(��jiD)ܶ!���ȵ�Qhi ����^U�'WЭ��鲢� hԗ DB^�u��X����N����9����L��F���yl{>��ލpD�� �t������G�~��}�am�A���ܽ��p�� +(-�x�K�4��2��2%�ڶ�"�iT��@�}���F�F�"�a�2����F&xh����Y�6"�0��n���4k�k� +�h�E� �EŔ�'2NU�'"�JG=+�2x��CJB����L�-��U�u� ��糹{�[_���w +��n����G�C[�v���㱡E1>c����P�'ODm���E82�h�(̃�E��Q�K�: E�38��r�o?aK�U�R贳w H��=w��n�gv��mGGO3�ӈU�`�Xf!о�������6p�L���U��m��9eyG$���&��N;���kX +���uw;�` +=����k��;,3�XQ �R��," cRQ!�)O��)@����3��1�&g�� 4�ɻ�lLOI���d۾�@��+w}�g�f�X{�r���v��|h*����_T�4L�ݡ����kG�[����? ���8#�Ho�5�_�w�O�1,n�s��9���)���1��x�H���]C +��9$�a3�#���[?x,V� ;+\|��)5������ђP�ɑOR+�L8JBC���1a\�1�t��uA�܈g�#� �ĻC̠����N����x���چ��#�6�8�[�Gd�8S�L_)�[=���>�@�IE}L�D/��dZ2H&��Eܣ��ln"5"-np��FζSZC��f.�:P���l��@��ڧ��аU`��]�\Y-P����b����XD�.�9�O�u������X7���5�6a1t0EdR� +�3{�c����b��lXƹD,��*-& ���� �y@���vn�����-����LX�썢ՠx鼣݀� +� g�86�=�O7�����w�����n%��в�D� +�g�5�0d%�T�RJD�"�;�Aq�j��Y��p����V��^���d��8*�Z�@�� Zu(� TH�x�6 R��ms�t#J�N��l7�"V5Z8���T$�腦(D�Fkc*�# +RacZܩ�-�pS�f�ᙍ����J:E�j�%�E49�L���Y!�'},�� p���@@�Jc��@��� ?�A7<*]��5�t48��cB����,U��-�`�3� pל3*�8��M��<�#09�H���]�����;e��Ơ��! +��wJ�}+�*����7�f�g y2�!r�#�D�πv��ٞ�RN��M4����|�� +߇Zꤹ�y�PP����9b���X�@��%�����E��d�KDc�8�dQ�А��ȧ�P�x����-� +w0cI��y�P�p�g�ǧȆ�rІ ��-3� +��E� 8��R$ps�E�VMQ��3-e��oA����T�h� +B�c �c��H�@���z<� +�B@�吕��i׋��o��� +K`"1 �W(ς�x<�@�KwL�J<�=��N�I���_����� @?&��Qc96� +�Bz6�Kl��jRk��ԗ�1b���L�c�h�zG�z�Ƶ�H ^��W��B�-����;:E/��^��ҡ�}2A��"'*<( +#����"��ʓ!z\W�Th� aE[*��Id5^@�m�Ǯ��Y�rǸ�X��� ���eC\�1Џ�h8���MQ!f������A6���e*3�ͳ� �����ߝ�_i� +LM�ɅQ{�ƭ�#�p�QYQ4��*�E��1�m:��6t���:�~Fd":D�w�n�v#��ìG�l{��G+�X�nSǁQLE=W�-�2@�l��A��z�R�m��h8�(��N��������/�n'Kt��4ee h鼾����at�EKJ�`���'�ECF�lZ��p�h�E��ٮ4V���%��'�+���,�� �!-����=�� ��/�28z +�I��]�j:լw*�<�Gh,~���KE��(ϕ�N�K1��C�O� +&Y��>�-8�']6>o\;��M�$�)�T���s�5�|P�Ǿ`-�FF��.��`�K1�q=�X���L �'����)Z��p�M�1�l#��:��ha����V`%�� r���1���-�R!;�{A��y�Hg@o��Z +^ +D��~,SV�� +�n8�)D&����h����q��mI�-1�^�͠�"W�K�0�\��)]ҟRB?���*� X�m�P&Ӗ�F����G�A���(=-��qS7O�R�<3k�Fs +G�_&��}hI��*5Mt0��2�h!w%��~���}hU ���'��2��5v�wW�a�)��w�I7:��z܏�XР�¨}f�Ӛ�C�W�;j��/Sӟ�x�F>��FEh���D�TD��ͭ2�)rC F,#? +��Fm����c��X���[�)�J��ªa�lR +��|Iwx,�G݂�>K(2+�\��w��DGe�Epй�텓�ԇ�9fw�q���o @<���+[��&�S�y���o.V�Jg �Ղ�:���3��v"a4�4D ��ĥ�"�=� t����++�?���:i����嗒Ɗ"�,�]�h#�.��q�R�V�z�Df�4��ų��~g ��_JC��͖�(��o��ċ�?0�rU�%�U�b!�q�fU�˥�=˨QD3~=r�MѢz��e[�B����s�$a`��g����85�m^\��[� +��6n���'&��K�����eQ ����B��ډ��r׉�N�-�a�qQ +��(²H��DԊ� +�LP�e����6�z�g�l!3T�~�@g�!�L�p%��mKT&xq� 8����؆��.Zv����B��+N�w��wvij�?��")�t2Xt�(Mh0��i �k��*�D�L��pו����J��~� קcPM����p1J�|��ײ¤�8�F��d��ɢ�該E��b���)�b@�8Lw��$̐9�O2�솓>"Q��{�Uo6A�NEg��O9�X��΢Rd+ g=����dLŇ�2 |,�271����u��XLbf�)+B�#�mF��O�����t|��]|��� �;􈱏��;���R;�J7j���>�����yf��� ��B����QD ��<�#�`�7A��,��>�g�b�r�۳Yb(�!+OŻ�J (egFwB�](�#�j+N"]4�>�=a?�@��㠮�n����� oՋ%���D�|Js�ֆ��Zk��0J��ڦ��<�͕�l ��|��b�5�w�%�{d �;���Dֈ�} �hE�N�nJ7�~��"(W+�^�U�D�V��ɱ�br�b_T��h��rDwJ�� ���&��_I�����@fsԼ5��_��x�m�fS-�yc*Ã�+'�����NL�\-c4�b+�ڠ>7�Ґ�,�MQ!��,��NY������x<� �-�XK!\p6�5g�(@N��(Z�:8w���-���1Ȯpe0�/w�����uМQ��tZ��0�~n�Uc2Fkf�F=@�k�E5���0sY�OL�p�$� *ۦPd-���Dq*�=V��Ș�2�S�%{��=��� ���~��f�(���ΞP��D{E̳w������M�jL�8E���qvJ�Ǚ��ԹɈ�~�_e+�ь4�%�TC�l{EO������6�{u0?�0Bی�5 +�bE?��Զ2�V�V +՜'�;�XɶhMv �Hc��~ +��5�&�B����&:�`�{�P�G*�#^�^�j?�(1�7E�*�E���x�>��%�̢�d��ĊW�)�Q~`�8�� ��Ep�_)+�� %���(�3xO�В��j^�"Z���-��҉�� q��v>�2R�T��4���|�-�0!u�+T�@���%�Qa����xʒ����Me��p��-0_�M��-1 �YOD��e��F��7��]�8�-�iw��l�2��6��H'ꑖ,Y�u�j�3�wU�F�_L����&��:;~��M�w�M�(�]-�X�UO�ǐ��%`������j!�i��B*���ꕩ�dC�Ya��_"��y���?�I�Y�BV�ylaVX�l�w)+� �#V� ;8�(ȟ�Wk�'����&��+Y����`F��3"�hFlϫM&̎!��g�&@���fT�sX+ �3�K�N��|Mh���7 �hq��x��uE��O�z�� Ц&a&� +��r0��#T� +�͟i)5���k����N� +�����M���^^�2=�֢�MO2Ė v1�T�a�zE�O(�o�b�`�tX+�s�TdkB�7�X�b!D�'h��k��fٜ�[�U��lE�&f�dV�� ���EQw�O�ξ)-4Z4Ϗ�Zq�i�ZxT�vI�y�>40>�ܧ����"U�"�I�i+�D'>����z[�6'��W:(�4�DHh�e�h�HmM��1ۘ"eO���7a��I�Z�X��zۣ��6Y�-j9��X�(�K,�i�tqP����7��2U�fžu���R��Aj)�\� +���U��W�ļ�6�e�� BJ�4)V��6�t2� b*z�^t�΂�wJ����A�=���v�e-�Wg�>OfXK��NT�9a�� =�>�4+)LPZ��/YetQr�h益^ ��w�����WT�� X3A��f�(�6�d�9k:Z=&Zbe�ЫcbI��SY��R�$d�*��y��ѨS�����EM��}Z��eǝ�d��z�Pq��H_5���j�H�! g����#Q*{�YD��Ƿ�Mo(`��{/�y���@�:�.�ɨ�d1�J�t�}�qߡN���,-�� 71W� ����O��<�곓I!a�gn�?'��ﭘi�p|ȶ�C�,�6��&�k��U�JѬ|/53(� +-��G��٬���$_�^�.Sn{E�MZ�\]P�B�G�Z��J2��V�eBPg�d (�+�Q����ی����D�Db�ה�?��!-��e SQ���7ZcE��Bs�55Hg'M% 0�����-GQ�)}eĪ�@�2[i;��!�@��'� �VDP9he*�k�V(YdjI�Xp n�d�/�����+m�\$�y��-"��@EdR��g]�}� +S�8�Gݤ.����W��:Ӌae�m�?�� +�eV�ߣD�4�XIʀ������0/����PFyr��х����/�_h��Syy����tX�ӂw�پ!eV��Jɕ���J�E'T.���k*��2�7j�.��(����E�@���g|"+��a� +g6�D?��W�6Ŭ-�@፞"A��%��0ZK��W�dt2D'"��.�l`��� �+��l-�J��o�W,��+�lE�M�HQ��U5��'�� +�t�^� +{�̬e+� 2Z 4���_�&F���4��^����+HdG��^���&\w|�6�;�u=�5����=�J����z�������E��`�̙��>�F�r���"�l +���#��DGU谪�T.�%��ʺ]�M�h��,J{�0KQM}{!�:�ƒ�W�_��PHeL��p�M�Q���U�Z:�8g�|a��-���)3�+���Ӷf��V�����[���.�,���MZTA�T�-/�dbo�j݄�q��aAy2c ��M R�D�l2EҤ���i�}f���)jܣ�������1��+~^�K�,�t)�R`�8���~<�����)5.�E�9�����x +=�Y����P��b|��W(�{Р�N'+b��m��auֱP�_�W{`�)� �W5��F�Y��$�_)���=3oy��||�9�t2���"`XD��Kg�T#Ҥ�d�$[a2oa���@�zQD4i3 �U���e�3���6�dz�eBޮ� +*!H��}�e1�1��|�L��" -(�_�u���dK��%�/Pn����8�-Qq��T8I�/Ae����"M�&�&�/�G�3�:V� �O����#u 2�(ri*L��Y�����}��ϙb+`+g��M����-� 2�X���ݐ +�Qk&�+Wz��+ؽxRձ�z��������XV�*�|a�Px�Sa�E�Y��3Z�P� ������g� � +�K_�%F�hW�|J�����#�}e@��� +�_�����f����xi��u�&+��uC�V�OG)8�J�����8���U�M��>�= 0��fc ��<��,�i`³�f����T�ZxU�\8QK't!�J�D�H\���.+)����l@�\5"�b�dWځ^��޸H8����Qh!BթpS��V"Bpu�/��V(��}�` ������2$��c*\LC3:{gP�NiJ��/�@�]t�Z�@����T z���\��5=��R��{��!�|��Iy%b�V��=�գ��)��;Sd9�´��Up-���g +�*�^y>�g_�/]�o�]K��X�K�McU��QW��{f��"�(L�|���lN�hsq˶7:�X�.x��� +��k�w�f�M2�}h��lQ�칭R�*(�z�'w�0K�<�2�b���U>Wz���PUw�������MѤ��*W[�*MN���W�X*������ը��S�J�:-n�Ԧ��T}M|�W�Sy +��%j�M���Dp���t|*₶������\��h��, �T8��)�@+��/_4+�\��b7�i�Z8��'=;q�;�����YuP ��juLVAN�^5���]�? ��U9a�h�)�x����˱ +�`�L-j��X�O�*�y�V.·�j�+�ݱ�������+��� � +@�yO ,��֬�o�XFh{�x�� +��+'�j���W�ȗ��j����һ�l�9~�V������7��gH���ᕈ�IѰ,Z����WZ��r�@���>���Łm+��d|>=��@z�sg�j_� +�W�+I[���W�1��l3?�}���������HW��K���������~>��_�o�x=)��{zIEND�B`� Index: misc/images/colorpicker_rgb_r.png =================================================================== RCS file: misc/images/colorpicker_rgb_r.png diff -N misc/images/colorpicker_rgb_r.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_rgb_r.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,9 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx��AKA���ec�kX!����K ���"�* �A��Y�t���, +/UR�Q4mL�b���lt����˺�&A�t��1�a� +�g�������6� +�fǑ6�-��N��� �d2�����&�J'I�#Q���PI���SD�].WUUO��6j����)�.B4��߯��'�$a4��x677������s�\ p:����s����g' /��x��������h���*�0��ժ8�-��U? ��b=^�zv�Ţ~���q8f�������ekk��y b�jSTu�l2���lW׃X�Џ����+�������d��v��De��X�-L�ʙ����������?��\�c��J�ow��:��^�\?ON>ml���:�β>(�dr�q�L�g7��FS�-#���p6�};4���)�4`�KOOx�^���绽�ՌbY6��4-RZ[[EQL��mmm�EQH��zUj�(���BӑJ�h��X,r���(�V��X,��V5& ��W(P�h�U���;s�$��U�t,��F��q�Q���Ϟ�3��_d2d;�|�� '���oc�W��? +�H L��lo#��AD"��*���h��O5B����M�A�����EQy�onn�c�?P%���%��5�ӤNEQ��i2�>I�D�?$����2bZmȬ�v;�D���30P�!�K�2M|�@M��$�(�T~�Դ�x����/�T��� =��� h�L���c;;�C!����}u���`0�`P#_" �?�������$קU��/(�b}bbB߈/P�������1��T(�%06&�\YYQ�&IR���(���(-X�k���_" U{�Ǘ�tsĐ�t�JG0�~�Ɛ^������� +�9A�3��r���IEND�B`� Index: misc/images/888888_11x11_icon_close.gif =================================================================== RCS file: misc/images/888888_11x11_icon_close.gif diff -N misc/images/888888_11x11_icon_close.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_close.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a ������!�, ���l�t�6��s�8��$; Index: misc/images/custom_rgb_g.png =================================================================== RCS file: misc/images/custom_rgb_g.png diff -N misc/images/custom_rgb_g.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_rgb_g.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,5 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx��]HSa��ǜ������u�(�D�$�7A7vXY�iid Yx!�i���eA�R�t � !I������#77�;];7�B;�x^����y����y�����6��`��!'}n^C���v����� �z��l�o��c����:�Q ƣ��J?8�?0�� ��x$?�o�1pP���}�h�C��ӧNܟ���݇�N1\Kg���Hv�N����iڋ�]� �ʎiu��& n��!�h�L��j�T:�jWJ<dg� ~�dg��|ئY\ZҪ���X��f���92|gsCMHP I�L׫�$��(�����8vv�u�O�b"ef�uxt��f�/;W�L��ʖ�<�~�SkGt� F�U6�rt��b�[��%�J�L�r�D�Iq��E2�ט�O�P�=xb_Y���"f�5�[�A1a�K_5������N�;�������DQq�Bi���~|�KLKN�^��R0��#S��u�_�O�[}�tQ��R��Z^ޝ���T���ն����z���!�_���&����7 �OC���?M��f�����t�c#5��8���cs���~U��RT�� �̜9�a�`bfN�'+9�}C@K�����ҕ +�@^N&G��{�" ���{"�����@" ��I�{�$���lC"& �R͠x��͡�yJz�^�~�&�Ё\�'P��a�p,�I�P%��Ղ��u��P%�3V[u���q^����@Meѕ��� 8��v�����VW2N^��Mk��:��"Jyh����40�,[��)�����-O]a�A�5�>�׷���q��F��^'4�w���%��#���K'���#��D��Α�D`b��fWݛ�fGU:�yZu��D"�=����)�TIEND�B`� Index: misc/images/888888_11x11_icon_minus.gif =================================================================== RCS file: misc/images/888888_11x11_icon_minus.gif diff -N misc/images/888888_11x11_icon_minus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_minus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a ������!�, ���� +��tRٲަ; Index: misc/images/custom_submit.png =================================================================== RCS file: misc/images/custom_submit.png diff -N misc/images/custom_submit.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_submit.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,11 @@ +�PNG + + +IHDR,�7ߧ pHYs  �� cHRMz-�����RqE�f9!�'�VkIDATx���o�dƟׯ�ĉ���F�-EaK����A�KӺ��l7\�� +��2�&6:iRA��-�JW5ݔ�~�i;�'�.�.Hk�G�ͱ���9���D�XҰ�}^�X�:B�=[�g�X�ea�0 󟷈�'fgfH��� �v��"�IEND�B`� Index: misc/images/colorpicker_background.png =================================================================== RCS file: misc/images/colorpicker_background.png diff -N misc/images/colorpicker_background.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_background.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,22 @@ +�PNG + + +IHDRd�8��tEXtSoftwareAdobe ImageReadyq�e< IDATx���Ok[W��seŭ��u�!� �w���ݵPJ��B)���Yf�U�E)�f�ݏ(�B�"�"�IIđ���3wB�I��>�>D�㼾�qr%_7��"�i���ˍ�v�z)� O�z׷���=op +r � ��q�bN�ꇸ��-w��1��xe���]^�8�q7���z/�=s؈�q}קq�S�S�S��[�O7o��p?loo��ݿ�����,�OA�m�;�n� +�?>45� +��� ��1�wZA�Mu���s��nW�6(56�� +���A�A�Pw�vvv���A�:��=��h4 +��l�c_�0��e��� ���p����Q�kf.��\^9�b�&�s+�c��p�_�~������N]5ʿ��Ư}��巟��u����/�P��}x�֓w�<�o��W�n���yӄ?����繑�53� +^������ƞ��IF�;��|<8O��%�.7,2�o�AAF��R� 2� up�A�J�AAA��~��11F��! 2� ��r�f� �vȂ� � � Ù� #�P�t +9��.�!� e�AAA��� #�P�t +y+��c#D���� #� � ���d갓yZύA�2z�� C� C +N��qu3�d���#� � ��2d�0 ޅ� C��'�q�:�ۇ��������6�����9w�k4���,�I�vsYm.v�\z� �!�f�0}�em���z�wCF�� +SAF�A�A��e"�2�!]Cn2�_!� eLAAAAF��� � � � C� �� � ��1"�P&�9/�5�� C=AAAF�A�A� +9�A�a� C!O�b�3��EF������ U� 2� u� 2� � � -;F� C�F� Cz>Ʊ1"�PG��ƈ C�t +9�g8 2� ��� Cz�� � � CK���s��#D���Y�d�@_�d�CAAF��>�E����}�4� ��A�:�AAA���̳zn�2��d��d�=�;�;�� C![d�0d�0 �� C5;dAF��AF��A����A� +LA�:LAAA��t +��8~a�2��! 2� �2� v� ��23��!� C&>ƶ1"�P�Y�d( ]C�ya.� �k�2��!� +�2� v� ��B�sn�1BJ��1���#�2�� .X � � � �2T�/�2�a�d�C�d�2F��A�:�kȹ?��{cD�!_/�z222�W_�d�C���s{�#D���� #� � � �2�䭌㏍AAAF�AAA�R9礞!� � �� 2� ��A�:l=�+㕹�"#�P��AAA����2222� � � ?d7DF�A�A�A�d��D�d��,�&��"�P�T�dddd~!� � � �P2�/#� �&�� C�7��0�!� eLAAA��� #�p����C�� +ӣn�Z�˶����A�A~2���A�}xhzlD:�V5��\�v-|��;E>����{�G�Q8888�2l"��[���1�x^6�����i���99y6���phrT�ٳgᛯ�6��u�@�dA���~�������j6#5v>���>j=�|���w����mml����h=�(�a�F\\>�R\����r&�o'�<����t�ؿ��F�in�]�\�ql�g���fp�1^68���ĝ�~��%�W��^lJ +�㸾� +��� L��J��IEND�B`� Index: misc/ui.all.css =================================================================== RCS file: misc/ui.all.css diff -N misc/ui.all.css --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/ui.all.css 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,869 @@ +/* + * jQuery UI screen structure and presentation + * This CSS file was generated by ThemeRoller, a Filament Group Project for jQuery UI + * Author: Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com + * Visit themeroller.com +*/ + + + + +/*UI accordion*/ +.ui-accordion { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + border-bottom: 1px solid #d3d3d3; +} +.ui-accordion-group { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + border: 1px solid #d3d3d3; + border-bottom: none; +} +.ui-accordion-header { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + cursor: pointer; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; +} +.ui-accordion-header a { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + display: block; + font-size: 1.1em; + font-weight: normal; + text-decoration: none; + padding: .5em .5em .5em 1.7em; + color: #555555; + background: url(images/888888_7x7_arrow_right.gif) .5em 50% no-repeat; +} +.ui-accordion-header a:hover { + background: url(images/454545_7x7_arrow_right.gif) .5em 50% no-repeat; + color: #212121; +} +.ui-accordion-header:hover { + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + color: #212121; +} +.selected .ui-accordion-header, .selected .ui-accordion-header:hover { + background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x; +} +.selected .ui-accordion-header a, .selected .ui-accordion-header a:hover { + color: #222222; + background: url(images/222222_7x7_arrow_down.gif) .5em 50% no-repeat; +} +.ui-accordion-content { + padding: 1.5em 1.7em; + background: #ffffff; + color: #222222; + font-size: 1.1em; +} + + +/*slider*/ +.ui-slider { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + background: #ffffff; + border: 1px solid #d3d3d3; + height: .8em; + position: relative; +} +.ui-slider-handle { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + position: absolute; + z-index: 2; + top: -3px; + width: 1.2em; + height: 1.2em; + background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x; + border: 1px solid #dddddd; +} +.ui-slider-handle:hover { + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + border: 1px solid #999999; +} +.ui-slider-handle-active, .ui-slider-handle-active:hover { + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + border: 1px solid #dddddd; +} +.ui-slider-range { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + height: .8em; + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + position: absolute; + border: 1px solid #d3d3d3; + border-left: 0; + border-right: 0; + top: -1px; + z-index: 1; +} + + + + + + +/*dialog*/ +.ui-dialog { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + background: #ffffff; + color: #222222; + border: 4px solid #d3d3d3; + position: relative; +} +.ui-dialog-content { + border: 1px solid #d3d3d3; + background: #ffffff; + color: #222222; +} +.ui-resizable-handle { + position: absolute; + font-size: 0.1px; + z-index: 99999; +} +.ui-resizable .ui-resizable-handle { + display: block; +} +body .ui-resizable-disabled .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */ +body .ui-resizable-autohide .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */ +.ui-resizable-n { + cursor: n-resize; + height: 7px; + width: 100%; + top: -5px; + left: 0px; +} +.ui-resizable-s { + cursor: s-resize; + height: 7px; + width: 100%; + bottom: -5px; + left: 0px; +} +.ui-resizable-e { + cursor: e-resize; + width: 7px; + right: -5px; + top: 0px; + height: 100%; +} +.ui-resizable-w { + cursor: w-resize; + width: 7px; + left: -5px; + top: 0px; + height: 100%; +} +.ui-resizable-se { + cursor: se-resize; + width: 13px; + height: 13px; + right: 0px; + bottom: 0px; + background: url(images/222222_11x11_icon_resize_se.gif) no-repeat 0 0; +} +.ui-resizable-sw { + cursor: sw-resize; + width: 9px; + height: 9px; + left: 0px; + bottom: 0px; +} +.ui-resizable-nw { + cursor: nw-resize; + width: 9px; + height: 9px; + left: 0px; + top: 0px; +} +.ui-resizable-ne { + cursor: ne-resize; + width: 9px; + height: 9px; + right: 0px; + top: 0px; +} +.ui-dialog-titlebar { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + padding: .5em 1.5em .5em 1em; + color: #555555; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; + border-bottom: 1px solid #d3d3d3; + font-size: 1.1em; + font-weight: normal; + position: relative; +} +.ui-dialog-title { + +} +.ui-dialog-titlebar-close { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + background: url(images/888888_11x11_icon_close.gif) 0 0 no-repeat; + position: absolute; + right: 8px; + top: .7em; + width: 11px; + height: 11px; + z-index: 100; +} +.ui-dialog-titlebar-close-hover, .ui-dialog-titlebar-close:hover { + background: url(images/454545_11x11_icon_close.gif) 0 0 no-repeat; +} +.ui-dialog-titlebar-close:active { + background: url(images/222222_11x11_icon_close.gif) 0 0 no-repeat; +} +.ui-dialog-titlebar-close span { + display: none; +} +.ui-dialog-content { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + background: #ffffff; + color: #222222; + padding: 1.5em 1.7em; +} +.ui-dialog-buttonpane { + position: absolute; + bottom: 0; + width: 100%; + text-align: left; + border-top: 1px solid #d3d3d3; + background: ; +} +.ui-dialog-buttonpane button { + margin: .5em 0 .5em 8px; + color: #555555; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; + font-size: 1.1em; + border: 1px solid #d3d3d3; + cursor: pointer; + padding: .2em .6em .3em .6em; + line-height: 1.4em; +} +.ui-dialog-buttonpane button:hover { + color: #212121; + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + border: 1px solid #999999; +} +.ui-dialog-buttonpane button:active { + color: #222222; + background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x; + border: 1px solid #dddddd; +} +/* This file skins dialog */ +.ui-dialog.ui-draggable .ui-dialog-titlebar, +.ui-dialog.ui-draggable .ui-dialog-titlebar { + cursor: move; +} + + + + + + + +/*datepicker*/ +/* Main Style Sheet for jQuery UI date picker */ +.ui-datepicker-div, #ui-datepicker-div, .ui-datepicker-inline { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + background: #ffffff; + font-size: 1.1em; + border: 4px solid #d3d3d3; + width: 15.5em; + padding: 2.5em .5em .5em .5em; + position: relative; +} +#ui-datepicker-div, .ui-datepicker-div { + z-index: 9999; /*must have*/ + display: none; + background: #ffffff; +} +.ui-datepicker-inline { + float: left; + display: block; +} +.ui-datepicker-control { + display: none; +} +.ui-datepicker-current { + display: none; +} +.ui-datepicker-next, .ui-datepicker-prev { + position: absolute; + left: .5em; + top: .5em; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; +} +.ui-datepicker-next { + left: 14.6em; +} +.ui-datepicker-next:hover, .ui-datepicker-prev:hover { + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; +} +.ui-datepicker-next a, .ui-datepicker-prev a { + text-indent: -999999px; + width: 1.3em; + height: 1.4em; + display: block; + font-size: 1em; + background: url(images/888888_7x7_arrow_left.gif) 50% 50% no-repeat; + border: 1px solid #d3d3d3; + cursor: pointer; +} +.ui-datepicker-next a { + background: url(images/888888_7x7_arrow_right.gif) 50% 50% no-repeat; +} +.ui-datepicker-prev a:hover { + background: url(images/454545_7x7_arrow_left.gif) 50% 50% no-repeat; +} +.ui-datepicker-next a:hover { + background: url(images/454545_7x7_arrow_right.gif) 50% 50% no-repeat; +} +.ui-datepicker-prev a:active { + background: url(images/222222_7x7_arrow_left.gif) 50% 50% no-repeat; +} +.ui-datepicker-next a:active { + background: url(images/222222_7x7_arrow_right.gif) 50% 50% no-repeat; +} +.ui-datepicker-header select { + border: 1px solid #d3d3d3; + color: #555555; + background: #e6e6e6; + font-size: 1em; + line-height: 1.4em; + position: absolute; + top: .5em; + margin: 0 !important; + +} +.ui-datepicker-header select.ui-datepicker-new-month { +width: 7em; +left: 2.2em; +} +.ui-datepicker-header select.ui-datepicker-new-year { +width: 5em; +left: 9.4em; +} +table.ui-datepicker { + width: 15.5em; + text-align: right; +} +table.ui-datepicker td a { + padding: .1em .3em .1em 0; + display: block; + color: #555555; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; + cursor: pointer; + border: 1px solid #ffffff; +} +table.ui-datepicker td a:hover { + border: 1px solid #999999; + color: #212121; + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; +} +table.ui-datepicker td a:active { + border: 1px solid #dddddd; + color: #222222; + background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x; +} +table.ui-datepicker .ui-datepicker-title-row td { + padding: .3em 0; + text-align: center; + font-size: .9em; + color: #222222; + text-transform: uppercase; + /*border-bottom: 1px solid #d3d3d3;*/ +} + +table.ui-datepicker .ui-datepicker-title-row td a { + color: #222222; +} + + + + + + +/*colorpicker*/ +.ui-colorpicker { + width: 356px; + height: 176px; + overflow: hidden; + position: absolute; + background: url(images/colorpicker_background.png); + font-family: Arial, Helvetica, sans-serif; + display: none; +} +.ui-colorpicker-color { + width: 150px; + height: 150px; + left: 14px; + top: 13px; + position: absolute; + background: #f00; + overflow: hidden; + cursor: crosshair; +} +.ui-colorpicker-color div { + position: absolute; + top: 0; + left: 0; + width: 150px; + height: 150px; + background: url(images/colorpicker_overlay.png); +} +.ui-colorpicker-color div div { + position: absolute; + top: 0; + left: 0; + width: 11px; + height: 11px; + overflow: hidden; + background: url(images/colorpicker_select.gif); + margin: -5px 0 0 -5px; +} +.ui-colorpicker-hue { + position: absolute; + top: 13px; + left: 171px; + width: 35px; + height: 150px; + cursor: n-resize; +} +.ui-colorpicker-hue div { + position: absolute; + width: 35px; + height: 9px; + overflow: hidden; + background: url(images/colorpicker_indic.gif) left top; + margin: -4px 0 0 0; + left: 0px; +} +.ui-colorpicker-new-color { + position: absolute; + width: 60px; + height: 30px; + left: 213px; + top: 13px; + background: #f00; +} +.ui-colorpicker-current-color { + position: absolute; + width: 60px; + height: 30px; + left: 283px; + top: 13px; + background: #f00; +} +.colorpicker input { + background-color: transparent; + border: 1px solid transparent; + position: absolute; + font-size: 10px; + font-family: Arial, Helvetica, sans-serif; + color: #898989; + top: 4px; + right: 11px; + text-align: right; + margin: 0; + padding: 0; + height: 11px; +} +.ui-colorpicker-hex { + position: absolute; + width: 72px; + height: 22px; + background: url(images/colorpicker_hex.png) top; + left: 212px; + top: 142px; +} +.ui-colorpicker input { + height: 15px; +} +.ui-colorpicker-hex input { + margin-left: 18px; + right: 6px; + width: 47px; +} +.ui-colorpicker-field { + height: 22px; + width: 62px; + background-position: top; + position: absolute; +} +.ui-colorpicker-field label { + padding-left: 17px; + font-size: 10px; +} +.ui-colorpicker-field input { + width: 25px; +} +.ui-colorpicker-field span { + position: absolute; + width: 12px; + height: 22px; + overflow: hidden; + top: 0; + right: 0; + cursor: n-resize; +} +.ui-colorpicker-rgb-r { + background-image: url(images/colorpicker_rgb_r.png); + top: 52px; + left: 212px; +} +.ui-colorpicker-rgb-g { + background-image: url(images/colorpicker_rgb_g.png); + top: 82px; + left: 212px; +} +.ui-colorpicker-rgb-b { + background-image: url(images/colorpicker_rgb_b.png); + top: 112px; + left: 212px; +} +.ui-colorpicker-hsb-h { + background-image: url(images/colorpicker_hsb_h.png); + top: 52px; + left: 282px; +} +.ui-colorpicker-hsb-s { + background-image: url(images/colorpicker_hsb_s.png); + top: 82px; + left: 282px; +} +.ui-colorpicker-hsb-b { + background-image: url(images/colorpicker_hsb_b.png); + top: 112px; + left: 282px; +} +.ui-colorpicker-submit { + position: absolute; + left: 296px; + top: 144px; + overflow: hidden; +} +.ui-colorpicker-focus { + background-position: center; +} +.ui-colorpicker-hex.ui-colorpicker-focus { + background-position: bottom; +} +.ui-colorpicker-submit.ui-colorpicker-focus { + background-position: bottom; +} +.ui-colorpicker-slider { + background-position: bottom; +} + + +/*autocomplete*/ +.ui-autocomplete-results { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + font-size: 1.1em; + + border: 1px solid #d3d3d3; + background: #ffffff; + color: #222222; + + overflow: hidden; + z-index: 99999; +} + +.ui-autocomplete-results ul { + width: 100%; + list-style-position: outside; + list-style: none; + padding: 0; + margin: 0; +} + +.ui-autocomplete-results li { + margin: 0px; + padding: 2px 5px; + cursor: default; + display: block; + /* + if width will be 100% horizontal scrollbar will apear + when scroll mode will be used + */ + /*width: 100%;*/ + font: menu; + font-size: 12px; + /* + it is very important, if line-height not setted or setted + in relative units scroll will be broken in firefox + */ + line-height: 16px; + overflow: hidden; + + + border: 1px solid #d3d3d3; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; + font-weight: normal; + color: #555555 !important; + +} + +.ui-autocomplete-loading { + background: white url('indicator.gif') right center no-repeat; +} + +.ui-autocomplete-results li.ui-autocomplete-over { + border: 1px solid #999999; + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + font-weight: normal; + color: #212121 !important; +} + + + + + +/* ProgressBar */ + +.ui-progressbar { + width: 400px; height: 20px; + border: 1px #ccc solid; + background:#E0E8F3 url(images/bg.gif) repeat-x scroll 0%; + position:relative; +} + +.ui-progressbar-wrap { + position: relative; + height: auto; + width: auto; + line-height: 18px; + _line-height: 16px; +} + +.ui-progressbar-bar { + background:#9CBFEE url(images/progress-bg.gif) repeat-x scroll left center; + border-bottom:1px solid #7FA9E4; + border-right:1px solid #7FA9E4; + border-top:1px solid #D1E4FD; + position: absolute; +} + +.ui-progressbar-text { + color:#fff; + overflow: hidden; + white-space: nowrap; + font-size: 11px; + font-weight: bold; + padding-left: 5px; +} + +.ui-progressbar-text-back { + color:#000; + padding-top: 1px; + padding-bottom: 1px; + padding-right: 1px; +} + +.ui-progressbar-disabled { + opacity:.5; + filter:Alpha(Opacity=50); +} + + +/* custom */ +.ui-progressbar-text.right-align { + text-align: right; + padding: 0 5px 0 0; +} +.ui-progressbar-inner-custom { + background: url(images/custom-bar.gif) repeat-x scroll left center; + border-bottom:1px solid #EFEFEF; + border-right:0pt none; + border-top:1px solid #BEBEBE; + height:15px; +} +.bold { + color: red !important; +} +.ui-hidden { + left:-10000px; + position:absolute; + top:-10000px; + visibility:hidden; +} + + + +/* +Generic ThemeRoller Classes +>> Make your jQuery Components ThemeRoller-Compatible! +*/ + +/*component global class*/ +.ui-component { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; + font-family: Verdana, Arial, sans-serif; + font-size: 1.1em; +} +/*component content styles*/ +.ui-component-content { + border: 1px solid #d3d3d3; + background: #ffffff; + color: #222222; +} +.ui-component-content a { + color: #222222; + text-decoration: underline; +} +/*component states*/ +.ui-default-state { + border: 1px solid #d3d3d3; + background: #e6e6e6 url(images/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x; + font-weight: normal; + color: #555555 !important; +} +.ui-default-state a { + color: #555555; +} +.ui-default-state:hover, .ui-hover-state { + border: 1px solid #999999; + background: #dadada url(images/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x; + font-weight: normal; + color: #212121 !important; +} +.ui-hover-state a { + color: #212121; +} +.ui-default-state:active, .ui-active-state { + border: 1px solid #dddddd; + background: #ffffff url(images/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x; + font-weight: normal; + color: #222222 !important; + outline: none; +} +.ui-active-state a { + color: #222222; + outline: none; +} +/*icons*/ +.ui-arrow-right-default {background: url(images/888888_7x7_arrow_right.gif) no-repeat 50% 50%;} +.ui-arrow-right-default:hover, .ui-arrow-right-hover {background: url(images/454545_7x7_arrow_right.gif) no-repeat 50% 50%;} +.ui-arrow-right-default:active, .ui-arrow-right-active {background: url(images/222222_7x7_arrow_right.gif) no-repeat 50% 50%;} +.ui-arrow-left-default {background: url(images/888888_7x7_arrow_left.gif) no-repeat 50% 50%;} +.ui-arrow-left-default:hover, .ui-arrow-left-hover {background: url(images/454545_7x7_arrow_left.gif) no-repeat 50% 50%;} +.ui-arrow-left-default:active, .ui-arrow-left-active {background: url(images/222222_7x7_arrow_left.gif) no-repeat 50% 50%;} +.ui-arrow-down-default {background: url(images/888888_7x7_arrow_down.gif) no-repeat 50% 50%;} +.ui-arrow-down-default:hover, .ui-arrow-down-hover {background: url(images/454545_7x7_arrow_down.gif) no-repeat 50% 50%;} +.ui-arrow-down-default:active, .ui-arrow-down-active {background: url(images/222222_7x7_arrow_down.gif) no-repeat 50% 50%;} +.ui-arrow-up-default {background: url(images/888888_7x7_arrow_up.gif) no-repeat 50% 50%;} +.ui-arrow-up-default:hover, .ui-arrow-up-hover {background: url(images/454545_7x7_arrow_up.gif) no-repeat 50% 50%;} +.ui-arrow-up-default:active, .ui-arrow-up-active {background: url(images/222222_7x7_arrow_up.gif) no-repeat 50% 50%;} +.ui-close-default {background: url(images/888888_11x11_icon_close.gif) no-repeat 50% 50%;} +.ui-close-default:hover, .ui-close-hover {background: url(images/454545_11x11_icon_close.gif) no-repeat 50% 50%;} +.ui-close-default:active, .ui-close-active {background: url(images/222222_11x11_icon_close.gif) no-repeat 50% 50%;} +.ui-folder-closed-default {background: url(images/888888_11x11_icon_folder_closed.gif) no-repeat 50% 50%;} +.ui-folder-closed-default:hover, .ui-folder-closed-hover {background: url(images/454545_11x11_icon_folder_closed.gif) no-repeat 50% 50%;} +.ui-folder-closed-default:active, .ui-folder-closed-active {background: url(images/222222_11x11_icon_folder_closed.gif) no-repeat 50% 50%;} +.ui-folder-open-default {background: url(images/888888_11x11_icon_folder_open.gif) no-repeat 50% 50%;} +.ui-folder-open-default:hover, .ui-folder-open-hover {background: url(images/454545_11x11_icon_folder_open.gif) no-repeat 50% 50%;} +.ui-folder-open-default:active, .ui-folder-open-active {background: url(images/222222_11x11_icon_folder_open.gif) no-repeat 50% 50%;} +.ui-doc-default {background: url(images/888888_11x11_icon_doc.gif) no-repeat 50% 50%;} +.ui-doc-default:hover, .ui-doc-hover {background: url(images/454545_11x11_icon_doc.gif) no-repeat 50% 50%;} +.ui-doc-default:active, .ui-doc-active {background: url(images/222222_11x11_icon_doc.gif) no-repeat 50% 50%;} +.ui-arrows-leftright-default {background: url(images/888888_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;} +.ui-arrows-leftright-default:hover, .ui-arrows-leftright-hover {background: url(images/454545_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;} +.ui-arrows-leftright-default:active, .ui-arrows-leftright-active {background: url(images/222222_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;} +.ui-arrows-updown-default {background: url(images/888888_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;} +.ui-arrows-updown-default:hover, .ui-arrows-updown-hover {background: url(images/454545_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;} +.ui-arrows-updown-default:active, .ui-arrows-updown-active {background: url(images/222222_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;} +.ui-minus-default {background: url(images/888888_11x11_icon_minus.gif) no-repeat 50% 50%;} +.ui-minus-default:hover, .ui-minus-hover {background: url(images/454545_11x11_icon_minus.gif) no-repeat 50% 50%;} +.ui-minus-default:active, .ui-minus-active {background: url(images/222222_11x11_icon_minus.gif) no-repeat 50% 50%;} +.ui-plus-default {background: url(images/888888_11x11_icon_plus.gif) no-repeat 50% 50%;} +.ui-plus-default:hover, .ui-plus-hover {background: url(images/454545_11x11_icon_plus.gif) no-repeat 50% 50%;} +.ui-plus-default:active, .ui-plus-active {background: url(images/222222_11x11_icon_plus.gif) no-repeat 50% 50%;} +/*hidden elements*/ +.ui-hidden { + display: none;/* for accessible hiding: position: absolute; left: -99999999px*/; +} +.ui-accessible-hidden { + position: absolute; left: -99999999px; +} +/*reset styles*/ +.ui-reset { + /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; +} +/*clearfix class*/ +.ui-clearfix:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +.ui-clearfix {display: inline-block;} +/* Hides from IE-mac \*/ +* html .ui-clearfix {height: 1%;} +.ui-clearfix {display: block;} +/* End hide from IE-mac */ + +/* Note: for resizable styles, use the styles listed above in the dialog section */ + + + + +/* UI Spinner */ +.ui-spinner { + width: 15em; + display: block; + position: relative; + overflow: hidden; + border: 1px solid #999; + background: #FEFEFE url(./images/spinner-bg.gif) repeat-x left bottom; + padding: 0 5px; +} + +.ui-spinner-disabled { + background: #F4F4F4; + color: #CCC; +} + +.ui-spinner-box { + width: 90%; + height: 100%; + float: left; + font-size: 125%; + border: none; + background: none; + padding: 0; +} + +.ui-spinner-up, +.ui-spinner-down { + width: 10%; + height: 50%; + font-size: 0.5em; + padding: 0; + margin: 0; + z-index: 100; + text-align: center; + vertical-align: middle; + position: absolute; + right: 0; + cursor: default; + border: 1px solid #999; + border-right: none; + border-top: none; +} + +.ui-spinner-down { + bottom: 0; + border-bottom: 0; +} + +.ui-spinner-pressed { + background: #FEFEFE; +} + +.ui-spinner-list, +.ui-spinner-listitem { + margin: 0; + padding: 0; +} Index: misc/images/454545_11x11_icon_folder_open.gif =================================================================== RCS file: misc/images/454545_11x11_icon_folder_open.gif diff -N misc/images/454545_11x11_icon_folder_open.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_folder_open.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �DFD��!�, ��� +��3ұ��Ts�ebR; Index: misc/images/select.png =================================================================== RCS file: misc/images/select.png diff -N misc/images/select.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/select.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,9 @@ +�PNG + + +IHDR$$���gAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDATx���J�@�w7�zIR"��\� ^��35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(4(D){6 C=D.10.N;D.10.N=4(){D("*",2).S(2).1v("N");5 C.y(2,1J)};4 B(E){4 G(H){6 I=H.1R;5(I.1q!="Z"&&I.1P!="12")}6 F=G(E);(F&&D.11(D.25(E,"24"),4(){5(F=G(2))}));5 F}D.V(D.28[":"],{w:4(F,G,E){5 D.w(F,E[3])},2i:4(F,G,E){6 H=F.2p.2o();5(F.2n>=0&&(("a"==H&&F.2q)||(/2r|2u|2t|1H/.k(H)&&"12"!=F.1m&&!F.j))&&B(F))}});D.2s={2m:8,2l:20,2f:2e,2d:17,2c:2g,2h:2j,2v:35,2w:13,2J:27,2I:36,2H:2K,2L:37,2O:2N,2M:2G,2F:2b,2z:2y,2x:2A,2B:2E,2D:34,2C:33,2P:26,1V:39,1W:16,1Y:32,2a:9,29:38};4 A(H,I,J,G){4 F(L){6 K=D[H][I][L]||[];5(o K=="p"?K.Y(/,?\\s+/):K)}6 E=F("21");7(G.U==1&&o G[0]=="p"){E=E.22(F("1I"))}5(D.23(J,E)!=-1)}D.u=4(F,E){6 G=F.Y(".")[0];F=F.Y(".")[1];D.10[F]=4(K){6 I=(o K=="p"),J=1U.r.1Z.1t(1J,1);7(I&&K.1Q(0,1)=="1S"){5 2}7(I&&A(G,F,K,J)){6 H=D.w(2[0],F);5(H?H[K].y(H,J):1N)}5 2.11(4(){6 L=D.w(2,F);(!L&&!I&&D.w(2,F,1T D[G][F](2,K)));(L&&I&&D.1X(L[K])&&L[K].y(L,J))})};D[G][F]=4(J,I){6 H=2;2.h=F;2.X=D[G][F].2k||F;2.1z=G+"-"+F;2.f=D.V({},D.u.P,D[G][F].P,D.1G&&D.1G.R(J)[F],I);2.c=D(J).i("2X."+F,4(M,K,L){5 H.v(K,L)}).i("3C."+F,4(L,K){5 H.W(K)}).i("N",4(){5 H.1D()});2.1A()};D[G][F].r=D.V({},D.u.r,E);D[G][F].1I="1M"};D.u.r={1A:4(){},1D:4(){2.c.3D(2.h)},1M:4(G,H){6 F=G,E=2;7(o G=="p"){7(H===1N){5 2.W(G)}F={};F[G]=H}D.11(F,4(I,J){E.v(I,J)})},W:4(E){5 2.f[E]},v:4(E,F){2.f[E]=F;7(E=="j"){2.c[F?"1s":"3E"](2.1z+"-j")}},3F:4(){2.v("j",b)},3B:4(){2.v("j",l)},3A:4(F,H,G){6 E=(F==2.X?F:2.X+F);H=H||D.3H.3v({1m:E,T:2.c[0]});5 2.c.1v(E,[H,G],2.f[F])}};D.u.P={j:b};D.d={3x:{S:4(F,G,I){6 H=D.d[F].r;1p(6 E 3y I){H.z[E]=H.z[E]||[];H.z[E].2Q([G,I[E]])}},1t:4(E,G,F){6 I=E.z[G];7(!I){5}1p(6 H=0;H\').1s(E).e({3N:"3K",3M:"-1r",1w:"-1r",1q:"3I"}).3w("1h");D.d.m[E]=!!((!(/3t|30/).k(F.e("2Z"))||(/^[1-9]/).k(F.e("31"))||(/^[1-9]/).k(F.e("3a"))||!(/Z/).k(F.e("3c"))||!(/3b|2Y\\(0, 0, 0, 0\\)/).k(F.e("3u"))));2S{D("1h").R(0).2R(F.R(0))}2T(G){}5 D.d.m[E]},2U:4(E){5 D(E).n("t","1O").e("1j","Z").i("1i.d",4(){5 b})},2W:4(E){5 D(E).n("t","2V").e("1j","").x("1i.d")},3d:4(H,F){7(D(H).e("3e")=="12"){5 b}6 E=(F&&F=="1w")?"3o":"3n",G=b;7(H[E]>0){5 l}H[E]=1;G=(H[E]>0);H[E]=0;5 G}};D.d.1l={3p:4(){6 E=2;2.c.i("3q."+2.h,4(F){5 E.1K(F)});7(D.1d.15){2.1B=2.c.n("t");2.c.n("t","1O")}2.3s=b},3r:4(){2.c.x("."+2.h);(D.1d.15&&2.c.n("t",2.1B))},1K:4(G){(2.g&&2.q(G));2.Q=G;6 F=2,H=(G.3m==1),E=(o 2.f.1f=="p"?D(G.T).3l().S(G.T).3g(2.f.1f).U:b);7(!H||E||!2.1o(G)){5 l}2.O=!2.f.1c;7(!2.O){2.3f=3h(4(){F.O=l},2.f.1c)}7(2.19(G)&&2.1e(G)){2.g=(2.1g(G)!==b);7(!2.g){G.3i();5 l}}2.1a=4(I){5 F.1u(I)};2.1b=4(I){5 F.q(I)};D(1F).i("1E."+2.h,2.1a).i("1C."+2.h,2.1b);5 b},1u:4(E){7(D.1d.15&&!E.1H){5 2.q(E)}7(2.g){2.14(E);5 b}7(2.19(E)&&2.1e(E)){2.g=(2.1g(2.Q,E)!==b);(2.g?2.14(E):2.q(E))}5!2.g},q:4(E){D(1F).x("1E."+2.h,2.1a).x("1C."+2.h,2.1b);7(2.g){2.g=b;2.1x(E)}5 b},19:4(E){5(18.3k(18.1n(2.Q.1k-E.1k),18.1n(2.Q.1y-E.1y))>=2.f.1L)},1e:4(E){5 2.O},1g:4(E){},14:4(E){},1x:4(E){},1o:4(E){5 l}};D.d.1l.P={1f:3j,1L:1,1c:0}})(3z);',62,236,'||this||function|return|var|if||||false|element|ui|css|options|_mouseStarted|widgetName|bind|disabled|test|true|cssCache|attr|typeof|string|_mouseUp|prototype||unselectable|widget|_setData|data|unbind|apply|plugins||||||||||||||remove|mouseDelayMet|defaults|_mouseDownEvent|get|add|target|length|extend|_getData|widgetEventPrefix|split|none|fn|each|hidden||_mouseDrag|msie|||Math|_mouseDistanceMet|_mouseMoveDelegate|_mouseUpDelegate|delay|browser|_mouseDelayMet|cancel|_mouseStart|body|selectstart|MozUserSelect|pageX|mouse|type|abs|_mouseCapture|for|display|5000px|addClass|call|_mouseMove|triggerHandler|left|_mouseStop|pageY|widgetBaseClass|_init|_mouseUnselectable|mouseup|destroy|mousemove|document|metadata|button|getterSetter|arguments|_mouseDown|distance|option|undefined|on|visibility|substring|style|_|new|Array|RIGHT|SHIFT|isFunction|SPACE|slice||getter|concat|inArray|parentNode|dir|190||expr|UP|TAB|111|DELETE|CONTROL|188|COMMA|46|DOWN|tabbable|40|eventPrefix|CAPS_LOCK|BACKSPACE|tabIndex|toLowerCase|nodeName|href|input|keyCode|textarea|select|END|ENTER|NUMPAD_MULTIPLY|108|NUMPAD_ENTER|106|NUMPAD_SUBTRACT|PAGE_UP|PAGE_DOWN|109|NUMPAD_DIVIDE|110|INSERT|HOME|ESCAPE|45|LEFT|NUMPAD_DECIMAL|107|NUMPAD_ADD|PERIOD|push|removeChild|try|catch|disableSelection|off|enableSelection|setData|rgba|cursor|default|height|||||||||width|transparent|backgroundImage|hasScroll|overflow|_mouseDelayTimer|filter|setTimeout|preventDefault|null|max|parents|which|scrollTop|scrollLeft|_mouseInit|mousedown|_mouseDestroy|started|auto|backgroundColor|fix|appendTo|plugin|in|jQuery|_trigger|disable|getData|removeData|removeClass|enable|div|event|block|class|absolute|gen|top|position'.split('|'),0,{})) Index: misc/images/222222_11x11_icon_minus.gif =================================================================== RCS file: misc/images/222222_11x11_icon_minus.gif diff -N misc/images/222222_11x11_icon_minus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_minus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �$"$��!�, ���� +��tRٲަ; Index: misc/images/888888_11x11_icon_doc.gif =================================================================== RCS file: misc/images/888888_11x11_icon_doc.gif diff -N misc/images/888888_11x11_icon_doc.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_doc.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a ������!�, �� ��ڂ�M�u�g}���v; Index: misc/images/222222_11x11_icon_arrows_leftright.gif =================================================================== RCS file: misc/images/222222_11x11_icon_arrows_leftright.gif diff -N misc/images/222222_11x11_icon_arrows_leftright.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_arrows_leftright.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �$"$��!�, �����IN�(���; Index: misc/images/custom_rgb_r.png =================================================================== RCS file: misc/images/custom_rgb_r.png diff -N misc/images/custom_rgb_r.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_rgb_r.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,10 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx��]HA��vg�ӳ�#/1����X����臌f愹pQ���}�>O��D,�ן'(O�����O:=3�&wǬ}���R�R6� :�n �����t��_�|�>�r�N#��@<��qvW�@����~U�d� �c�Ϲ�͎z�R�6���B���y#��Ǒ1V�v�Y4�u,q��7�F�7\1l��F ����F�7��F�m�I#�Ve�F`� ��l��x�������~��� +��s��8D�1�X���j�Մq�:��c�����XG��8D��E�2y�R��QF"M����MmX�`47��jqZp�������4U���#@ЦiK����5puI�?w����}�������g��^:{�IEND�B`� Index: misc/images/222222_11x11_icon_folder_closed.gif =================================================================== RCS file: misc/images/222222_11x11_icon_folder_closed.gif diff -N misc/images/222222_11x11_icon_folder_closed.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_folder_closed.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �$"$��!�, ��� +�X����f��-�X; Index: misc/images/select2.png =================================================================== RCS file: misc/images/select2.png diff -N misc/images/select2.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/select2.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,11 @@ +�PNG + + +IHDR$$��� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx���J�@E�K�*Ԥ-���q�_�•��ʅ_Խ+���A �ibAM���`[�iZȅ�<�̙��Kr����-�h���;�@ "�q��Q�"`$"�c +E�`��(sM�p ��2�'0.�7��Z�Dk} �ͤ�(����$I��T������ֆ)�1p��x[�H���$��� +TsI��Vϭ�qp<�B�Z�?�_}b`��X�Q� +S T�@%P Tm;���\���c�@<<>��n�~��9@�*PκOf�� +4 ��C�W迌E}f�Ƙ��ʹRI�~��ݮ�*?�h�H$�]��f��4�.�(Wń +'��� +8ZS�p����6ˇN �c"��Na�<4* &�:��ֺ +�Dd�2ć�� ��<��/y�ķPdIEND�B`� Index: misc/images/454545_11x11_icon_plus.gif =================================================================== RCS file: misc/images/454545_11x11_icon_plus.gif diff -N misc/images/454545_11x11_icon_plus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_plus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �DFD��!�, �� ����S��`�� ��5a�; Index: misc/images/454545_7x7_arrow_up.gif =================================================================== RCS file: misc/images/454545_7x7_arrow_up.gif diff -N misc/images/454545_7x7_arrow_up.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_7x7_arrow_up.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a�DFD��!�, ���} +���; Index: misc/images/222222_7x7_arrow_right.gif =================================================================== RCS file: misc/images/222222_7x7_arrow_right.gif diff -N misc/images/222222_7x7_arrow_right.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_7x7_arrow_right.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a�$"$��!�, L`y���ؒKU; Index: misc/images/bg.gif =================================================================== RCS file: misc/images/bg.gif diff -N misc/images/bg.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/bg.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a N�������������������������������������������������������������������������������������������������������������������������������������������������!��, N�_8�C(\Ȱ�B#F\@�b�3jܘсǏ!�92�ɓ'%�\�r�˗/)Ȝ9��͛7-�ܹ�ϟ?1:4�ѣG5(]�t�ӧO9H�:��իW=hݺć�`��A�,YhӦvm[$ܶ5a��ݻ%N�ݻ7�߿U��w��ÇY(^�؅��#;��Br�ȐkF�y�πQ��K/޸rS�V�ڬ배���J��m����Fʛ�o��y +�I��q��Y�Dɜ$�@J�H#���K��p!���� O�|����XϞ���� �O�~�����ϟ@; Index: misc/images/ffffff_40x100_textures_02_glass_65.png =================================================================== RCS file: misc/images/ffffff_40x100_textures_02_glass_65.png diff -N misc/images/ffffff_40x100_textures_02_glass_65.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/ffffff_40x100_textures_02_glass_65.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,6 @@ +�PNG + + +IHDR(d�drz�IDATh��ڱ�0�׏�/Yrvp� v+������>���_�X �V+���J`%�X �V+���J`%�X �V+���J`%���Z_7<���`��� +�V���O�KR �V+���J`%�X �V+���J`%�X ���?1 +��E`IEND�B`� Index: misc/images/custom_indic.gif =================================================================== RCS file: misc/images/custom_indic.gif diff -N misc/images/custom_indic.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_indic.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a# ���Θ�����!�,# 'L��˝�q��h��\E�m�f�86!xN�S~� k�L�P�; Index: misc/images/888888_11x11_icon_folder_closed.gif =================================================================== RCS file: misc/images/888888_11x11_icon_folder_closed.gif diff -N misc/images/888888_11x11_icon_folder_closed.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_folder_closed.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a ������!�, ��� +�X����f��-�X; Index: misc/images/454545_11x11_icon_minus.gif =================================================================== RCS file: misc/images/454545_11x11_icon_minus.gif diff -N misc/images/454545_11x11_icon_minus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_minus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �DFD��!�, ���� +��tRٲަ; Index: misc/images/colorpicker_hsb_h.png =================================================================== RCS file: misc/images/colorpicker_hsb_h.png diff -N misc/images/colorpicker_hsb_h.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_hsb_h.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VzIDATx���J�@?iRmkQj���Fkm�"�S���' +.���Q�Ev��+���ŋ�x��Ma,^��F�&�������ΰ�e&���~�3�����h4 +���(|4���c=�������8V�y�Ù��EQH����!�T*�I�.t���E5n���]Q������‚-�4:�7��G���F���􄻓���`��hXsH�[�:??�v �QU�g���6�tMk��͇�H8l& �BD�M��$@�R�e���y�u�y���r�� �<� �a�a�f +s��L�,�vff��e +9�L�Ӫ��&��f� +�X�L���sppP�V�@�{{�a��$E�ܐ..p#;;�@�1����H$��a��Q�L2��+��V% w��= ��2T0�\����d2��:z�,���H$244����>;;k�Z###f�q������lT�x���8ν`dY! +�C777�X,6���077��tH<���x<���RӴ����ѩx_g]QV���X2�`�^瓉D�Ra}>��[F���7��?%�����)!��B�7������F�����F�j#�>����ZM|���V�@f�J�΄�Y붥S�펾X(0���}y�������S���j&W�0::J����?--�I�~rB��t���W��i��6�F��j�jB�C� pHYs  �� cHRMz-�����RqE�f9!�'�VPIDATx��]HA���3{���)h"��w�� A�C��D>�$���كP/%!D�`AB�D�C>B!� ��E��E���yz��nsm{{�]����gf�fo~ �ٙ�13_|��m�-��6�ڮ(/�=�}�$I@a`���B�{�؋m��㢘߿�<���ץ�T�M��T,�)=��< ~�������f�.�g)ItI�5��.-��4� ;qq�]=Fot�\�ǝ�d�X��'��2�6�]�'�t%k�����9դ���iL#`#�wd7It��F�4�0���4C�cT�ښ*��A#PYQ���i�f�����2�u~�e9���k´~౹t�q��Yh5���ք�p�V#����`���s㲺�J�[�"MQ�i*F@3F�UOFwW+tw�"U����[���D�{�S`8�6��{��i\#�Iׯ���݇��oY��x}K^ߒ�h�舎)��ߐU�l��tfK��_�U���o�Su�q��z$�x��1�P�0��77G���o�z�)F���<�k�_9��9�t����IEND�B`� Index: misc/images/custom_hsb_b.png =================================================================== RCS file: misc/images/custom_hsb_b.png diff -N misc/images/custom_hsb_b.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_hsb_b.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx��{HA��;wz�^(�,|���$>�E"I�W�A D��= (��RY�E�T���H +F�8-���{���폵m��no�Fw��cv�73ߛ����gO5��bw�C��R�,2�#�Q:dw��b�qH'���� +(�H���apHW��n)Mд�h��-ͪ�B�� +Y���Q:q�K4ܴ�l���)��n�� +��1QU8 +��$�ʷ�[u�|9;'���X�� `X�#[(c��Ԃ��̬����wm��1�� �*ܖ�=:mx�w�ÇJ3R��hz��(*����ia���V鼪\C���S����-���."�6����^UU��NL���0���S���7h^�u��L +�k#�Y����9����d��WHg}�LEy�!�v�_4�o�_���������5+�+�)�eʲ��K#�I�e����$� �cpJ_Μ�Y���L��O���5"��u9�#?�v���Y/�p�{�&q�TTV�%'.,,�,l���ӧm��2�P��t���H����F�ü�J��L�Y����c�_Ig�`�@��HAJ�S�*���􋯲����t���J�G��Ĕm�:����6���F&�ŠQ���������P��7���y���@�|LD��cw�Ȓ ��ۣ�Bw����v���Z�U*վ��5�.TU�o����CzpDw�O����@���@�����$����0��$���!" O� q1&˨� Pf�ٝ2%]�o[��D���#_"@�H�D�ñ�%j�F�D@� S*Ш���I�l���"I>�\<)�D$)k"?�r�\�P~��ce�0Wk�\�>Ε��~�"�,Ӛ��ޕ�%�aΝ>�n�{� "���; +���={�_)k"�����&a�|��z�-������[�|� +��(C"0d���c5��(R:A�ͺl���7���H���R��IEND�B`� Index: misc/images/222222_11x11_icon_plus.gif =================================================================== RCS file: misc/images/222222_11x11_icon_plus.gif diff -N misc/images/222222_11x11_icon_plus.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_plus.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �$"$��!�, �� ����S��`�� ��5a�; Index: misc/images/colorpicker_hex.png =================================================================== RCS file: misc/images/colorpicker_hex.png diff -N misc/images/colorpicker_hex.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_hex.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,7 @@ +�PNG + + +IHDRH,I�i\ pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx�옱k�@ƿ$f�bA�"�I'�F������T���P܊�\�b�p ׋R�@_�M�ޏ��}^�$Q���R"���~� ����� x� !nx�۩�� �v��C���L���ȍ���w�f��eL3k��W��V+�Xw�ɬM�:��E����t�Z� +Cj`� +[a��h2��<�sm��v̬M��]Z���-CZ�P�*�ss��/�I���w�cz��H� +�ݱK����e�6���t���LC���G1�2�0�r{��x<����O0��0����13�]Y�n�/���C�R5��#����X�� s� :Tϣ�K�\JED�TeV�R*�R�'�5��RQE�Rq�r{��s�a�1��1�`��|$���� 9�վ��VIEND�B`� Index: misc/images/colorpicker_rgb_b.png =================================================================== RCS file: misc/images/colorpicker_rgb_b.png diff -N misc/images/colorpicker_rgb_b.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_rgb_b.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,7 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VPIDATx��AKA���l�⚰�ƃQj֘�x1x�P ��݃�!�� H����)Ғ����/F�n��d�=�n7٘ +�Ig���0nf�����C�`0��<�V��r<����Q�>88�˲@aq��xhE�8�#q�UUq����5&�@ �H�G�x���=����f��������;��F�T*u{{����� �8==m�cVt+U&��$�av~j�}���a�Px�q}}}�`���������n��&U6�C�p�:;�Z�>r~~�\.{�����D"Q*��u�W&�d(t�ϣvhb�.0�0�(j�ƲlOO����i7�e�. +5�zS�d2��f=,�qa!�O�; ��*wq���ɺ����g�����QA�puU3 {���X(� �\\^Zg60kkk�J������p^�PE"[��S`l�DBQ���.�a���eY��|Lg��0�wF���R��w||����mڬS;��@ @"�c�N��q^�]UUZ���0��S�~S,r�~��L�:�)Ir�]F�}���K��0^����a➉F]#����<�����F��5�p��k\#�F`&��Z]P��F�X�)��]�������%�LI҇��RGG�G�I�h �L#P�Th5���V�L#�u�aJEEQ��,˱Xlvv�ާ�fmmm��E�0W}gg���777�0z���76����%����%��x���\#P}Z�=�X]]����*�� ���͇Dk6���`ii�"��T��� +O�5z=(MF���#�F���Ft�q�$������?-kگO���2h��IEND�B`� Index: misc/images/colorpicker_submit.png =================================================================== RCS file: misc/images/colorpicker_submit.png diff -N misc/images/colorpicker_submit.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_submit.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,8 @@ +�PNG + + +IHDR,�7ߧ pHYs  �� cHRMz-�����RqE�f9!�'�V^IDATx���o�Tǿ��:����du���ml���(HmⅇIH�3H �!�`��4V����*(�Sˠ��h�Ʊc;q����iH�*A��v��+���9��)�ˊ�`��}�)�R�VGF�E��8� �t\clh��t���èP����O��ܶY�o��w�G�fߝ�/)�,<��ō���.���XCj�f:�4^>z��w���D7�jW�M�T����j=n�I67�f����n-��D���:8b��p +�V7o�n|9����c��O��5���i�A��dB.BT�i&��A�lM�*{��\_-|��t�] l��\,7��� ��] L1��C��N$D B�i��*e6fC�W"�"�$I���a� m�D�ɺnd�3D·Tr<8� B�C� pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx���O�@�_��l�Q� +D�JP6цx"��ƻwc$�Dc�� +.�Q^��t���!\�Ґ�T�ȩ�*���-�P�;�4�Kd�����N��Sb``��i0[�@�4](L'������& �V�Y��$�w� �����%"�^��P՛���C#�kz}xxxdd�����L&spp�d�;Т�a��e�H$R*������ǧ���栖�͕L&��I�Ūe������������4M��������k�ө�y�p �����q�H$CC��x� ���0���q�x��u�˭��oo%IR�����h��'� .��f'B�������{�����*㛛�<�7��U~���׉�+������l�l������2d�Y��N��\y�J�C+�,�2DQ�y>[IRų�s��].ğ@_�P,ND���kvvv��8��E���p��d��h�a� i�),�>>>�ʲ�t:{{{m6[2�L�R�oPo�v��iZS�v��T����� �������@|7��`˲�$�8���U�J���9Y��m�_/��u�Jlm5�ru{<��~�ϓ�ϏD�t�G��0�T�D��#�q���''�t��B-"�"��Q��T�EZD�E�&�[����h4�'��i}IU"E}C]�D ci�N5 +���>��h������}^��jSv���ֆ) +?OLԙ���_"`�4�% +IǓ�J%���o5�& +UO"`�u|����h4*W�D@����lll�����Ȓ�\_����.���XI��� ��^%W��B~ +�XL!E5Iz������annN3�$�7"��J�x��!���0F��ҟ ��/x~���(�4K�,�IJ�IEND�B`� Index: modules/color/ui.colorpicker.js =================================================================== RCS file: modules/color/ui.colorpicker.js diff -N modules/color/ui.colorpicker.js --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ modules/color/ui.colorpicker.js 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,13 @@ +/* + * jQuery UI Color Picker 1.6rc2 + * + * Copyright (c) 2008 Stefan Petre, Paul Bakaus + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/ColorPicker + * + * Depends: + * ui.core.js + */ +eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(9(A){A.3d("c.a",{3e:9(){7.1W=2h;m D=7.V,B=7,C=\'<12 1e="1k" 1i="6" 1j="6" /><12 1e="1k" 1i="3" 1j="2" /><12 1e="1k" 1i="3" 1j="2" /><12 1e="1k" 1i="3" 1j="2" /><12 1e="1k" 1i="3" 1j="2" /><12 1e="1k" 1i="3" 1j="2" /><12 1e="1k" 1i="3" 1j="2" /><1T S="c-a-1t c-3f-37" 3l="1t" 1e="1T">3m\';j(2u D.e=="2z"){7.e=7.1N(D.e)}n{j(D.e.r!=T&&D.e.g!=T&&D.e.b!=T){7.e=7.1D(D.e)}n{j(D.e.h!=T&&D.e.s!=T&&D.e.b!=T){7.e=7.1L(D.e)}n{d 7}}}7.1S=7.e;7.p=A(C);j(D.1X){7.p.2n(7.1o).1Z()}n{7.p.2n(k.1g)}7.N=7.p.O("12").v("3k",9(E){d B.2p.z(B,E)}).v("27",9(E){d B.19.z(B,E)}).v("3j",9(E){d B.24.z(B,E)}).v("1a",9(E){d B.23.z(B,E)});7.p.O("R").v("1I",9(E){d B.21.z(B,E)});7.1V=7.p.O("i.c-a-e").v("1I",9(E){d B.2f.z(B,E)});7.28=7.1V.O("i i");7.1u=7.p.O("i.c-a-1u i");7.p.O("i.c-a-1u").v("1I",9(E){d B.2d.z(B,E)});7.2g=7.p.O("i.c-a-29-e");7.2a=7.p.O("i.c-a-2b-e");7.p.O(".c-a-1t").v("3h",9(E){d B.2j.z(B,E)}).v("3i",9(E){d B.2k.z(B,E)}).v("2w",9(E){d B.26.z(B,E)});7.1y(7.e);7.1v(7.e);7.1s(7.e);7.1E(7.e);7.1J(7.e);7.1K(7.e);7.1G(7.e);j(D.1X){7.p.1n({3n:"2X",2W:"2Y"})}n{A(7.1o).v(D.2v+".a",9(E){d B.20.z(B,E)})}},35:9(){7.p.2Z();7.1o.34("a").1b(".a")},1y:9(B){m C=7.1d(B);7.N.u(1).o(C.r).14().u(2).o(C.g).14().u(3).o(C.b).14()},1v:9(B){7.N.u(4).o(B.h).14().u(5).o(B.s).14().u(6).o(B.b).14()},1s:9(B){7.N.u(0).o(7.X(B)).14()},1J:9(B){7.1V.1n("1P","#"+7.X({h:B.h,s:L,b:L}));7.28.1n({1H:x(q*B.s/L,10),1l:x(q*(L-B.b)/L,10)})},1E:9(B){7.1u.1n("1l",x(q-q*B.h/1f,10))},1K:9(B){7.2a.1n("1P","#"+7.X(B))},1G:9(B){7.2g.1n("1P","#"+7.X(B))},2p:9(B){m C=B.33||B.36||-1;j((C>=7.1W&&C<=3g)||C==32){d M}},19:9(D,C){m B;C=C||D.18;j(C.17.1C.1p("-13")>0){7.e=B=7.1N(7.3x);7.1y(B.e);7.1v(B)}n{j(C.17.1C.1p("-P")>0){7.e=B=7.1L({h:x(7.N.u(4).o(),10),s:x(7.N.u(5).o(),10),b:x(7.N.u(6).o(),10)});7.1y(B);7.1s(B)}n{7.e=B=7.1D(7.2F({r:x(7.N.u(1).o(),10),g:x(7.N.u(2).o(),10),b:x(7.N.u(3).o(),10)}));7.1s(B);7.1v(B)}}7.1J(B);7.1E(B);7.1G(B);7.1A("27",D,{V:7.V,P:B,13:7.X(B),W:7.1d(B)})},24:9(C){m B=7.e;7.1y(B);7.1v(B);7.1s(B);7.1E(B);7.1J(B);7.1G(B);7.N.1O().1M("c-a-1a")},23:9(B){7.1W=B.18.17.1C.1p("-13")>0?3q:2h;7.N.1O().1M("c-a-1a");A(B.18.17).1Q("c-a-1a")},21:9(D){m C=A(D.18).1O().O("12").1a(),B=7;7.1c={2q:A(D.18).1O().1Q("c-a-2i"),J:D.18.17.1C.1p("-P-h")>0?1f:(D.18.17.1C.1p("-P")>0?L:Z),y:D.1z,Y:C,o:x(C.o(),10)};A(k).v("1x.U",9(E){d B.25.z(B,E)});A(k).v("1w.U",9(E){d B.22.z(B,E)});d M},22:9(B){7.1c.Y.o(f.J(0,f.K(7.1c.J,x(7.1c.o+B.1z-7.1c.y,10))));7.19.1r(7,[B,7.1c.Y.1q(0)]);d M},25:9(B){7.1c.2q.1M("c-a-2i").O("12").1a();7.19.1r(7,[B,7.1c.Y.1q(0)]);A(k).1b("1x.U");A(k).1b("1w.U");d M},2d:9(C){7.1Y={y:7.p.O("i.c-a-1u").1R().1l};7.19.1r(7,[C,7.N.u(4).o(x(1f*(q-f.J(0,f.K(q,(C.1z-7.1Y.y))))/q,10)).1q(0)]);m B=7;A(k).v("1x.U",9(D){d B.2e.z(B,D)});A(k).v("1w.U",9(D){d B.2l.z(B,D)});d M},2l:9(B){7.19.1r(7,[B,7.N.u(4).o(x(1f*(q-f.J(0,f.K(q,(B.1z-7.1Y.y))))/q,10)).1q(0)]);d M},2e:9(B){A(k).1b("1x.U");A(k).1b("1w.U");d M},2f:9(C){m B=7;7.1B={1F:7.p.O("i.c-a-e").1R()};7.19.1r(7,[C,7.N.u(6).o(x(L*(q-f.J(0,f.K(q,(C.1z-7.1B.1F.1l))))/q,10)).14().u(5).o(x(L*(f.J(0,f.K(q,(C.2o-7.1B.1F.1H))))/q,10)).1q(0)]);A(k).v("1x.U",9(D){d B.2m.z(B,D)});A(k).v("1w.U",9(D){d B.2c.z(B,D)});d M},2c:9(B){7.19.1r(7,[B,7.N.u(6).o(x(L*(q-f.J(0,f.K(q,(B.1z-7.1B.1F.1l))))/q,10)).14().u(5).o(x(L*(f.J(0,f.K(q,(B.2o-7.1B.1F.1H))))/q,10)).1q(0)]);d M},2m:9(B){A(k).1b("1x.U");A(k).1b("1w.U");d M},2j:9(B){7.p.O(".c-a-1t").1Q("c-a-1a")},2k:9(B){7.p.O(".c-a-1t").1M("c-a-1a")},26:9(C){m B=7.e;7.1S=B;7.1K(B);7.1A("1t",C,{V:7.V,P:B,13:7.X(B),W:7.1d(B)});d M},20:9(F){7.1A("3p",F,{V:7.V,P:7.e,13:7.X(7.e),W:7.1d(7.e)});m G=7.1o.1R();m E=7.2S();m D=G.1l+7.1o[0].2R;m C=G.1H;j(D+2Q>E.t+f.K(E.h,E.2H)){D-=7.1o[0].2R+2Q}j(C+2L>E.l+f.K(E.w,E.2G)){C-=2L}7.p.1n({1H:C+"2K",1l:D+"2K"});j(7.1A("1Z",F,{V:7.V,P:7.e,13:7.X(7.e),W:7.1d(7.e)})!=M){7.p.1Z()}m B=7;A(k).v("1I.a",9(H){d B.2r.z(B,H)});d M},2r:9(B){j(!7.2N(7.p[0],B.18,7.p[0])){j(7.1A("2O",B,{V:7.V,P:7.e,13:7.X(7.e),W:7.1d(7.e)})!=M){7.p.2O()}A(k).1b("1I.a")}},2N:9(D,C,B){j(D==C){d 2T}j(D.2P&&!A.3z.3y){d D.2P(C)}j(D.2U){d!!(D.2U(C)&16)}m E=C.17;3A(E&&E!=B){j(E==D){d 2T}E=E.17}d M},2S:9(){m E,C,B,F,D,G;j(k.1h){E=k.1h.2M;C=k.1h.2I;B=k.1h.2x;F=k.1h.2J}n{E=k.1g.2M;C=k.1g.2I;B=k.1g.2x;F=k.1g.2J}D=2t.3u||k.1h.2s||k.1g.2s||0;G=2t.3s||k.1h.2A||k.1g.2A||0;d{t:E,l:C,w:B,h:F,2G:D,2H:G}},1L:9(B){d{h:f.K(1f,f.J(0,B.h)),s:f.K(L,f.J(0,B.s)),b:f.K(L,f.J(0,B.b))}},2F:9(B){d{r:f.K(Z,f.J(0,B.r)),g:f.K(Z,f.J(0,B.g)),b:f.K(Z,f.J(0,B.b))}},2C:9(B){m B=x(((B.1p("#")>-1)?B.3r(1):B),16);d{r:B>>16,g:(B&3t)>>8,b:(B&Z)}},1N:9(B){d 7.1D(7.2C(B))},1D:9(C){m B={};B.b=f.J(f.J(C.r,C.g),C.b);B.s=(B.b<=0)?0:f.15(L*(B.b-f.K(f.K(C.r,C.g),C.b))/B.b);B.b=f.15((B.b/Z)*L);j((C.r==C.g)&&(C.g==C.b)){B.h=0}n{j(C.r>=C.g&&C.g>=C.b){B.h=11*(C.g-C.b)/(C.r-C.b)}n{j(C.g>=C.r&&C.r>=C.b){B.h=11+11*(C.g-C.r)/(C.g-C.b)}n{j(C.g>=C.b&&C.b>=C.r){B.h=2y+11*(C.b-C.r)/(C.g-C.r)}n{j(C.b>=C.g&&C.g>=C.r){B.h=2D+11*(C.b-C.g)/(C.b-C.r)}n{j(C.b>=C.r&&C.r>=C.g){B.h=2B+11*(C.r-C.g)/(C.b-C.g)}n{j(C.r>=C.b&&C.b>=C.g){B.h=2E+11*(C.r-C.b)/(C.r-C.g)}n{B.h=0}}}}}}}B.h=f.15(B.h);d B},1d:9(B){m D={};m H=f.15(B.h);m G=f.15(B.s*Z/L);m C=f.15(B.b*Z/L);j(G==0){D.r=D.g=D.b=C}n{m I=C;m F=(Z-G)*C/Z;m E=(I-F)*(H%11)/11;j(H==1f){H=0}j(H<11){D.r=I;D.b=F;D.g=F+E}n{j(H<2y){D.g=I;D.b=F;D.r=I-E}n{j(H<2D){D.g=I;D.r=F;D.b=F+E}n{j(H<2B){D.b=I;D.r=F;D.g=I-E}n{j(H<2E){D.b=I;D.g=F;D.r=F+E}n{j(H<1f){D.r=I;D.g=F;D.b=I-E}n{D.r=0;D.g=0;D.b=0}}}}}}}d{r:f.15(D.r),g:f.15(D.g),b:f.15(D.b)}},2V:9(B){m C=[B.r.1U(16),B.g.1U(16),B.b.1U(16)];A.3v(C,9(D,E){j(E.3o==1){C[D]="0"+E}});d C.30("")},X:9(B){d 7.2V(7.1d(B))},31:9(B){j(2u B=="2z"){B=7.1N(B)}n{j(B.r!=T&&B.g!=T&&B.b!=T){B=7.1D(B)}n{j(B.h!=T&&B.s!=T&&B.b!=T){B=7.1L(B)}n{d 7}}}7.e=B;7.1S=B;7.1y(B);7.1v(B);7.1s(B);7.1E(B);7.1J(B);7.1K(B);7.1G(B)}});A.3a(A.c.a,{39:{2v:"2w",e:"38",1X:M}})})(3w);',62,223,'|||||||this||function|colorpicker||ui|return|color|Math|||div|if|document||var|else|val|picker|150||||eq|bind||parseInt||call||||||||||max|min|100|false|fields|find|hsb|label|span|class|undefined|cpSlider|options|rgb|_HSBToHex|field|255||60|input|hex|end|round||parentNode|target|_change|focus|unbind|currentIncrement|_HSBToRGB|type|360|body|documentElement|maxlength|size|text|top|for|css|element|indexOf|get|apply|_fillHexFields|submit|hue|_fillHSBFields|mousemove|mouseup|_fillRGBFields|pageY|_trigger|currentSelector|className|_RGBToHSB|_setHue|pos|_setNewColor|left|mousedown|_setSelector|_setCurrentColor|_fixHSB|removeClass|_HexToHSB|parent|backgroundColor|addClass|offset|origColor|button|toString|selector|charMin|flat|currentHue|show|_show|_downIncrement|_moveIncrement|_focus|_blur|_upIncrement|_clickSubmit|change|selectorIndic|new|currentColor|current|_moveSelector|_downHue|_upHue|_downSelector|newColor|65|slider|_enterSubmit|_leaveSubmit|_moveHue|_upSelector|appendTo|pageX|_keyDown|el|_hide|clientWidth|self|typeof|eventName|click|scrollWidth|120|string|clientHeight|240|_HexToRGB|180|300|_fixRGB|iw|ih|scrollLeft|scrollHeight|px|356|scrollTop|_isChildOf|hide|contains|176|offsetHeight|_getScroll|true|compareDocumentPosition|_RGBToHex|display|relative|block|remove|join|setColor||charCode|removeData|destroy|keyCode|state|ff0000|defaults|extend|title|clearfix|widget|_init|default|90|mouseenter|mouseleave|blur|keydown|name|Done|position|length|beforeShow|70|substring|innerHeight|65280|innerWidth|each|jQuery|value|safari|browser|while'.split('|'),0,{})) Index: misc/images/888888_11x11_icon_arrows_updown.gif =================================================================== RCS file: misc/images/888888_11x11_icon_arrows_updown.gif diff -N misc/images/888888_11x11_icon_arrows_updown.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_arrows_updown.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a ������!�, ��� +k���Ȱ��; Index: misc/images/custom_background.png =================================================================== RCS file: misc/images/custom_background.png diff -N misc/images/custom_background.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_background.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,10 @@ +�PNG + + +IHDRd�8�� pHYs  �� cHRMz-�����RqE�f9!�'�VIDATx����ow����qv�v%J�kpH� 'ĉ#B�� + ��p�ąn��)�D�R � +�B�(T����&]{8t�����g6�}iyl볳/}5;����4��$W��O���i�'IUU����j��$�K�eN/�~�w��:,6�1�˱�hp����1&�e��&�dNK�8ɟ��.�<�V�4�I�[��?x���g�>52�%8sf��7_���˃$�]l��7����G�p~3�^�`jK����}��V��������|~(�K�� ���܂x}`4edA@� +4<��O����?����ڬs}w'�'�����a�����\����~�3s����,�,���$w�=���N㇏��7L��$9q�����/{�������$��~�����;�z�������3l�S��yU����T+��k�˞3sY�) (�t�I��[fx�!ȃ*�~�H�̊'i:�_!� �� �J�A�2��A�2��AAA���d�BA��Q�])�!� �AAA�c� #�P�Q�}�‘"�Џ� #� � ��R 2� e%Y���"�Џ� #Ȱ:A�#� �Ղ� CF�"�Џ� #�P�Z�d(�Q���a}$�2�cj}� � � C�D�d(�,�OA�"L_b��6��Lr���ܷ6ks9�\����0�䮏Ӻ��s��D���p.VȬ��K\!��n��k�s95Af����n��ƈ Cw��|�ddV�$>� A�"̒T�o�A�~LAAAAF��� � � � � #� � ��yA���\e�222�,�222+�.7�:2���Zr�a�;Pdz2�s2�d�0dZFF� Cj#@�� c#@�A�A��e�� CjAF�� cAF�A�A��e�n�l;2B�[! 2� �A+ddd�3J��a���:�{�1"���X�dX� � CF��"�ЏZ�d(�X�d(Ùy��z��2�db�� C��� Cfq�� Ŭ�A�LA��Y!o#� �� �ʘ�� +�/#� �M��2a*�222�̒T�o�A��VȂ� C&�� �22�̌A�rV� �P�� �`� � -�t{c�2B�[! 2� �2� V� ��\��� h`�2�a=�u�@�d��8NX � � � �2�d�02�06Zj#@�� ��'�0dZjAF�� �t�_ۑ"�Џ� #� � � �2���. �P@��AAF�A�[AA����堞!� � �� 2� �A�2�=M�:�3�(2� =�Z"#� � ��\�]�� � � � #� � ��yA�zC� +cD�A�d�V�/#� �M�3�d(�,I�a��d��T�dddd� � � � � �2fb2�a�no�UF� C?��� � � C�D�dx�����3}6�Zs�[�V���<(>�[�u�&�u��[���9��J>�h/o���^��s��x"(?��wwr�ރ���������Ή��η_K��|���)���,��?����Fn޸fr���07�{� ��D�  �� ����l0d�K�w0�p��$OZ�?.6\\lxk��7~�׿���f�4�K+�nmzR5Ms%ɍņ�$�N�8��,GI�L�$O��R%I�4?L�iF/�AUU>^����L^|� +��{[5M���J�sq�+�ei��%yTU����ʜ�MR��IEND�B`� Index: misc/images/454545_11x11_icon_folder_closed.gif =================================================================== RCS file: misc/images/454545_11x11_icon_folder_closed.gif diff -N misc/images/454545_11x11_icon_folder_closed.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_11x11_icon_folder_closed.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �DFD��!�, ��� +�X����f��-�X; Index: misc/images/222222_7x7_arrow_down.gif =================================================================== RCS file: misc/images/222222_7x7_arrow_down.gif diff -N misc/images/222222_7x7_arrow_down.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_7x7_arrow_down.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a�$"$��!�, ���� K1�; Index: misc/images/454545_7x7_arrow_right.gif =================================================================== RCS file: misc/images/454545_7x7_arrow_right.gif diff -N misc/images/454545_7x7_arrow_right.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/454545_7x7_arrow_right.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a�DFD��!�, L`y���ؒKU; Index: misc/images/222222_11x11_icon_folder_open.gif =================================================================== RCS file: misc/images/222222_11x11_icon_folder_open.gif diff -N misc/images/222222_11x11_icon_folder_open.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_folder_open.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �$"$��!�, ��� +��3ұ��Ts�ebR; Index: misc/images/spinner-bg.gif =================================================================== RCS file: misc/images/spinner-bg.gif diff -N misc/images/spinner-bg.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/spinner-bg.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a ����������������������������������������������������������������������!��, W �di�h��fྯ �3a�x>�E��Px(�H#b�d*�PhbJ�.�X,c��:�`pcL&C�h�c�fG�p�dN�O�x|e��S������!; Index: misc/images/dadada_40x100_textures_02_glass_75.png =================================================================== RCS file: misc/images/dadada_40x100_textures_02_glass_75.png diff -N misc/images/dadada_40x100_textures_02_glass_75.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/dadada_40x100_textures_02_glass_75.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +�PNG + + +IHDR(d�drz�IDATh��ӱ +�@ A���W�>�;�� +�`���[�}������k�5�` +�X��k�5�` +�X��k�5�` +�X�s�6<6��k�� +�������1` �6{�`�X��k�5�` +�X��k�5�`� +���.IEND�B`� Index: misc/images/222222_11x11_icon_arrows_updown.gif =================================================================== RCS file: misc/images/222222_11x11_icon_arrows_updown.gif diff -N misc/images/222222_11x11_icon_arrows_updown.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/222222_11x11_icon_arrows_updown.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a �$"$��!�, ��� +k���Ȱ��; Index: misc/images/colorpicker_indic.gif =================================================================== RCS file: misc/images/colorpicker_indic.gif diff -N misc/images/colorpicker_indic.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_indic.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a# �999[[[���!�,# 'L��˝�q��h��\E�m�f�86!xN�S~� k�L�P�; Index: misc/images/custom_rgb_b.png =================================================================== RCS file: misc/images/custom_rgb_b.png diff -N misc/images/custom_rgb_b.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_rgb_b.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,9 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VvIDATx��kHA��vg�z}P�Yx���]J�)�H�"��oՇ! +D�A=>He�aVTPA�)0C���qZ��U�w�C�����ڲ�]��7C;̇ٹٛ���;�S ��=>�[�&j���KMI��>��a�����.u�h5�苁@t߮ې&�طIQ*tF�*2�f�m4T��"�N� +�6ڒ�>��؜�o�hk}��>Fjt�\�-��C�J~��幺��@`��i:����i�p�‚_Rt�� �> +���!� �w���Ө��YΚ���j��Zˀ����M:�=82�,�#�8=�T���/�9]��Ô/Cg#�B�> >ky�t�q{�=V��~���z��o�CӔeC+W��3V�$�޹ٙA���}�r!β�)/[8����Bj�籏-ٹ �l����[��SU]������,X��s�.O�FH/�nؘ��Q����? +E��"M=޹��4b��0�DI�ҾM�hW��:���D +���i�k�>�zzj2���l5��C����^�G%%+4�Hh�wI����'$����!�6ڲ�l_ZJ��7��֪P(��]HUZdx�7=:# uY�,��F@6����l��h������2e#����d�m�c5�,.�Q#��;�s��w�kH�z�#�t,�F���p5T\<�GE�(�yp��H�|�;\x Ii#���s��1��s��=���s��хڣ\����J��u�O�;�5�w9y�k\��#!��[M/��=}�߉����@����Z���j�+��ɫ�t���+ ]#W�sD����~�cj�$��!���Ŋ����_g�B����IEND�B`� Index: misc/images/888888_7x7_arrow_up.gif =================================================================== RCS file: misc/images/888888_7x7_arrow_up.gif diff -N misc/images/888888_7x7_arrow_up.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_7x7_arrow_up.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,2 @@ +GIF89a������!�, ���} +���; Index: misc/images/progress-bg.gif =================================================================== RCS file: misc/images/progress-bg.gif diff -N misc/images/progress-bg.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/progress-bg.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a`�s��y����|�셮憲萶ꖺ윿����������,`'H��C :h�`��@�� 2j�ȱ�Ǐ; Index: misc/images/888888_11x11_icon_arrows_leftright.gif =================================================================== RCS file: misc/images/888888_11x11_icon_arrows_leftright.gif diff -N misc/images/888888_11x11_icon_arrows_leftright.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_11x11_icon_arrows_leftright.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a ������!�, �����IN�(���; Index: misc/images/custom_hsb_s.png =================================================================== RCS file: misc/images/custom_hsb_s.png diff -N misc/images/custom_hsb_s.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_hsb_s.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +�PNG + + +IHDR>B�C� pHYs  �� cHRMz-�����RqE�f9!�'�VIDATx��mHSQǟ�{6ݚ��X1��-{�T� +#(��� +?A/� d�E��!���a���R}H�("!2�UV[V7�����9�vo���潊r�����pv�3��Ξ=�9�i�v;�q a>^DZ|� �q\bb��G���\�x����R +@0�z4DK����o��yR��nN�����N���q�:5]�'�������eـ.�<߲e}!��)\a¬���e٢�����g�ך�6��.��2cQdt�z}���nwyyynn.;�ibz�.0��8��}����J����I���������8:� +Oh��RUU���5/-o٢��WS�����P��uuX�Ќ���46�M����������v�ܳ*7=�appH� +c0��8 Q �����yaZZYY��{�J6oo��jF�һ +�4-����ixUZZZ��>�As�fR%�K8��gGG�^"3�L����jj���}(����u�⌆i<��Wo?�56�M���eY��t2�|aފ�t����^W�����)��11r���C�|���`2��t���ƣp)5��>M��8�� >�!T:��#���=M��I��"8�~]�ҍF�̵�X��q3�v�\R���L�sg�B}.WVF�����]Q"�."��]Qe˗�*H�d*����3J�D�"����a�*%�\������뤈�T�X�\��(7�QZZZ\\��@e�nL�,���M�ʋ�-�'m흪$�fS��D`vR�'�Q㵚u��O�P"��y��G�e���Kh��Pc�Xr��V�S+��b�Jt� �: D��)�Dӡq��^�KD�D��>'��3Gw���W%̩�W�؁�/4��hE?ӳ�����1 ��f�PR���}�H|m��z�������o�T�ߎ'�.ߌ�D�h<.Z��ȃ��&H��^� +����%ڑG���ݰr�G�D��s$��{�Ljק�Z�ˈ*�G��!�]���g9�' +��k�IEND�B`� Index: misc/images/888888_7x7_arrow_right.gif =================================================================== RCS file: misc/images/888888_7x7_arrow_right.gif diff -N misc/images/888888_7x7_arrow_right.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/888888_7x7_arrow_right.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a������!�, L`y���ؒKU; Index: misc/images/custom_hex.png =================================================================== RCS file: misc/images/custom_hex.png diff -N misc/images/custom_hex.png --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/custom_hex.png 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,7 @@ +�PNG + + +IHDRH,I�i\ pHYs  �� cHRMz-�����RqE�f9!�'�V�IDATx���KAǿ� ���L"<E�a!:�������;<B�!���P�`F +�+mc��m�����i��v��f��7��Tkw�P�bш��t3ӊ�5�Z&��3��|i�#x2c��ا��{Pj~�U��UQ�E�_{�����Ṋ���}O��� �]j&�f����2�ws<�2YwQJ��50�B�� #$���1�R�P*x0�Fp��ڌ�SˏU)�w�?t`�vrbZ��Y��>���<�x�Y�,��Wȃ +��o��G��'�|� +3܊uߔ��@��3�`�� ���&6� ��C�X4������7���%q��hZ�K�����J��N$ˋ�0�*���*���k�Ri��ʬ8����j�J�T�����-�R��J@��3�`�T�tj���U� �%�J�����=w��X$,ݫIEND�B`� Index: misc/images/colorpicker_select.gif =================================================================== RCS file: misc/images/colorpicker_select.gif diff -N misc/images/colorpicker_select.gif --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ misc/images/colorpicker_select.gif 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,1 @@ +GIF89a �������!�, ��h�X�F��Y��}����%pZt