winclassic.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*##############################################################################
  2. HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. ############################################################################## */
  13. .dynamic-slider-control {
  14. position: relative;
  15. background-color: ThreeDFace;
  16. -moz-user-focus: normal;
  17. -moz-user-select: none;
  18. cursor: default;
  19. }
  20. .horizontal {
  21. width: 200px;
  22. height: 29px;
  23. }
  24. .vertical {
  25. width: 29px;
  26. height: 200px;
  27. }
  28. .dynamic-slider-control input {
  29. display: none;
  30. }
  31. .dynamic-slider-control .handle {
  32. position: absolute;
  33. -moz-user-select: none;
  34. cursor: default;
  35. background: ThreeDFace;
  36. border: 1px solid;
  37. border-color: ThreeDHighlight ThreeDDarkShadow
  38. ThreeDDarkShadow ThreeDHighlight;
  39. }
  40. /* inner border */
  41. .dynamic-slider-control .handle div {
  42. font-size: 1px;
  43. border: 1px solid;
  44. border-color: ThreeDLightShadow ThreeDShadow
  45. ThreeDShadow ThreeDLightShadow;
  46. behavior: url("css/boxsizing.htc"); /* ie path bug */
  47. box-sizing: content-box;
  48. -moz-box-sizing: content-box;
  49. }
  50. /* inner sets size
  51. .dynamic-slider-control.horizontal .handle {
  52. width: 12px;
  53. height: 22px;
  54. }
  55. */
  56. .dynamic-slider-control.horizontal .handle div {
  57. width: 8px;
  58. height: 18px;
  59. }
  60. .dynamic-slider-control.horizontal .handle.hover {}
  61. /* inner sets size
  62. .dynamic-slider-control.vertical .handle {
  63. width: 22px;
  64. height: 12px;
  65. }
  66. */
  67. .dynamic-slider-control.vertical .handle div {
  68. width: 18px;
  69. height: 8px;
  70. }
  71. .dynamic-slider-control.vertical .handle.hover {}
  72. .dynamic-slider-control .line {
  73. behavior: url("css/boxsizing.htc"); /* ie path bug */
  74. box-sizing: content-box;
  75. -moz-box-sizing: content-box;
  76. position: absolute;
  77. font-size: 0.01mm;
  78. overflow: hidden;
  79. border: 1px solid;
  80. border-color: ThreeDShadow ThreeDHighlight
  81. ThreeDHighlight ThreeDShadow;
  82. background: ThreeDDarkShadow;
  83. }
  84. .dynamic-slider-control.vertical .line {
  85. width: 1px;
  86. }
  87. .dynamic-slider-control.horizontal .line {
  88. height: 1px;
  89. }
  90. .dynamic-slider-control .line div {
  91. display: none;
  92. }