You are here

colorpicker.css in Colorpicker 6

Same filename and directory in other branches
  1. 5 css/colorpicker.css
  2. 6.2 css/colorpicker.css
.colorpicker_textfield {
  width: 80px;
  height: 18px;
  border: inset gray 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.form-item input.colorpicker_textfield.error {
  border-width:1px;
}

.picker_wrapper {
  position: relative;
  top: 0px; 
  left: 0px;
  height: 1px;
  width: 1px;
}

.colorwrapper {
  position: absolute;
  top: 0px; 
  left: 30px;
  height: auto;
  width: auto;
  display: none;
  background: white;
  border: solid #949494 1px;
  z-index: 100;
}

.picker_border {
  position: absolute;
  bottom: 1px; 
  left: 83px;
  width: 20px; 
  height: 20px;
  border: solid #949494 1px;
  background: white url('picker_button_back.png') repeat-x;
}

.picker_button {
  border: solid white 1px;
  display: block;
  text-decoration: none;
  width: 18px;
  height: 18px;
  background: transparent url('picker_button.png') no-repeat 50% 50%;
  cursor: pointer;
}

.close_button {
  width: 14px;
  height: 14px;
  background: transparent url('x.png') no-repeat 50% 50%;
  cursor: pointer;
  position: absolute;
  top: 5px; 
  right: 5px;
}

File

css/colorpicker.css
View source
  1. .colorpicker_textfield {
  2. width: 80px;
  3. height: 18px;
  4. border: inset gray 1px;
  5. text-transform: uppercase;
  6. font-size: 14px;
  7. font-weight: bold;
  8. }
  9. .form-item input.colorpicker_textfield.error {
  10. border-width:1px;
  11. }
  12. .picker_wrapper {
  13. position: relative;
  14. top: 0px;
  15. left: 0px;
  16. height: 1px;
  17. width: 1px;
  18. }
  19. .colorwrapper {
  20. position: absolute;
  21. top: 0px;
  22. left: 30px;
  23. height: auto;
  24. width: auto;
  25. display: none;
  26. background: white;
  27. border: solid #949494 1px;
  28. z-index: 100;
  29. }
  30. .picker_border {
  31. position: absolute;
  32. bottom: 1px;
  33. left: 83px;
  34. width: 20px;
  35. height: 20px;
  36. border: solid #949494 1px;
  37. background: white url('picker_button_back.png') repeat-x;
  38. }
  39. .picker_button {
  40. border: solid white 1px;
  41. display: block;
  42. text-decoration: none;
  43. width: 18px;
  44. height: 18px;
  45. background: transparent url('picker_button.png') no-repeat 50% 50%;
  46. cursor: pointer;
  47. }
  48. .close_button {
  49. width: 14px;
  50. height: 14px;
  51. background: transparent url('x.png') no-repeat 50% 50%;
  52. cursor: pointer;
  53. position: absolute;
  54. top: 5px;
  55. right: 5px;
  56. }