You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. $rv-legend-enabled-color: #3a3a48;
  2. $rv-legend-disabled-color: #b8b8b8;
  3. .rv-discrete-color-legend {
  4. box-sizing: border-box;
  5. overflow-y: auto;
  6. font-size: 12px;
  7. &.horizontal {
  8. white-space: nowrap;
  9. }
  10. }
  11. .rv-discrete-color-legend-item {
  12. color: $rv-legend-enabled-color;
  13. border-radius: 1px;
  14. padding: 9px 10px;
  15. &.horizontal {
  16. display: inline-block;
  17. .rv-discrete-color-legend-item__title {
  18. margin-left: 0;
  19. display: block;
  20. }
  21. }
  22. }
  23. .rv-discrete-color-legend-item__color {
  24. display: inline-block;
  25. vertical-align: middle;
  26. overflow: visible;
  27. }
  28. .rv-discrete-color-legend-item__color__path {
  29. stroke: #dcdcdc;
  30. stroke-width: 2px;
  31. }
  32. .rv-discrete-color-legend-item__title {
  33. margin-left: 10px;
  34. }
  35. .rv-discrete-color-legend-item.disabled {
  36. color: $rv-legend-disabled-color;
  37. }
  38. .rv-discrete-color-legend-item.clickable {
  39. cursor: pointer;
  40. &:hover {
  41. background: #f9f9f9;
  42. }
  43. }
  44. .rv-search-wrapper {
  45. display: flex;
  46. flex-direction: column;
  47. }
  48. .rv-search-wrapper__form {
  49. flex: 0;
  50. }
  51. .rv-search-wrapper__form__input {
  52. width: 100%;
  53. color: #a6a6a5;
  54. border: 1px solid #e5e5e4;
  55. padding: 7px 10px;
  56. font-size: 12px;
  57. box-sizing: border-box;
  58. border-radius: 2px;
  59. margin: 0 0 9px;
  60. outline: 0;
  61. }
  62. .rv-search-wrapper__contents {
  63. flex: 1;
  64. overflow: auto;
  65. }
  66. .rv-continuous-color-legend {
  67. font-size: 12px;
  68. .rv-gradient {
  69. height: 4px;
  70. border-radius: 2px;
  71. margin-bottom: 5px;
  72. }
  73. }
  74. .rv-continuous-size-legend {
  75. font-size: 12px;
  76. .rv-bubbles {
  77. text-align: justify;
  78. overflow: hidden;
  79. margin-bottom: 5px;
  80. width: 100%;
  81. }
  82. .rv-bubble {
  83. background: #d8d9dc;
  84. display: inline-block;
  85. vertical-align: bottom;
  86. }
  87. .rv-spacer {
  88. display: inline-block;
  89. font-size: 0;
  90. line-height: 0;
  91. width: 100%;
  92. }
  93. }
  94. .rv-legend-titles {
  95. height: 16px;
  96. position: relative;
  97. }
  98. .rv-legend-titles__left,
  99. .rv-legend-titles__right,
  100. .rv-legend-titles__center {
  101. position: absolute;
  102. white-space: nowrap;
  103. overflow: hidden;
  104. }
  105. .rv-legend-titles__center {
  106. display: block;
  107. text-align: center;
  108. width: 100%;
  109. }
  110. .rv-legend-titles__right {
  111. right: 0;
  112. }