colorpicker.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* 颜色弹出菜单 */
  2. .edui-default .edui-colorpicker-topbar {
  3. height: 27px;
  4. width: 200px;
  5. /*border-bottom: 1px gray dashed;*/
  6. }
  7. .edui-default .edui-colorpicker-preview {
  8. height: 20px;
  9. border: 1px inset black;
  10. margin-left: 1px;
  11. width: 128px;
  12. float: left;
  13. }
  14. .edui-default .edui-colorpicker-nocolor {
  15. float: right;
  16. margin-right: 1px;
  17. font-size: 12px;
  18. line-height: 14px;
  19. height: 14px;
  20. border: 1px solid #333;
  21. padding: 3px 5px;
  22. cursor: pointer;
  23. }
  24. .edui-default .edui-colorpicker-tablefirstrow {
  25. height: 30px;
  26. }
  27. .edui-default .edui-colorpicker-colorcell {
  28. width: 14px;
  29. height: 14px;
  30. display: block;
  31. margin: 0;
  32. cursor: pointer;
  33. }
  34. .edui-default .edui-colorpicker-colorcell:hover {
  35. width: 14px;
  36. height: 14px;
  37. margin: 0;
  38. }
  39. .edui-default .edui-colorpicker-advbtn{
  40. display: block;
  41. text-align: center;
  42. cursor: pointer;
  43. height:20px;
  44. }
  45. .arrow_down{
  46. background: white url('../images/arrow_down.png') no-repeat center;
  47. }
  48. .arrow_up{
  49. background: white url('../images/arrow_up.png') no-repeat center;
  50. }
  51. /*高级的样式*/
  52. .edui-colorpicker-adv{
  53. position: relative;
  54. overflow: hidden;
  55. height: 180px;
  56. display: none;
  57. }
  58. .edui-colorpicker-plant, .edui-colorpicker-hue {
  59. border: solid 1px #666;
  60. }
  61. .edui-colorpicker-pad {
  62. width: 150px;
  63. height: 150px;
  64. left: 14px;
  65. top: 13px;
  66. position: absolute;
  67. background: red;
  68. overflow: hidden;
  69. cursor: crosshair;
  70. }
  71. .edui-colorpicker-cover{
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. width: 150px;
  76. height: 150px;
  77. background: url("../images/tangram-colorpicker.png") -160px -200px;
  78. }
  79. .edui-colorpicker-padDot{
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. width: 11px;
  84. height: 11px;
  85. overflow: hidden;
  86. background: url(../images/tangram-colorpicker.png) 0px -200px repeat-x;
  87. z-index: 1000;
  88. }
  89. .edui-colorpicker-sliderMain {
  90. position: absolute;
  91. left: 171px;
  92. top: 13px;
  93. width: 19px;
  94. height: 152px;
  95. background: url(../images/tangram-colorpicker.png) -179px -12px no-repeat;
  96. }
  97. .edui-colorpicker-slider {
  98. width: 100%;
  99. height: 100%;
  100. cursor: pointer;
  101. }
  102. .edui-colorpicker-thumb{
  103. position: absolute;
  104. top: 0;
  105. cursor: pointer;
  106. height: 3px;
  107. left: -1px;
  108. right: -1px;
  109. border: 1px solid black;
  110. background: white;
  111. opacity: .8;
  112. }