Commit 54bf16cf authored by Insectslayer's avatar Insectslayer
Browse files

Edit colors of filter slider.

parent 6f780ecc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -700,6 +700,7 @@ export default {
        const py = Math.floor(y(snowHeightAverage))
        context.beginPath()
        context.strokeStyle = color || '#555555'
        context.globalAlpha = 1
        context.lineWidth = 3
        context.moveTo(lastPx, lastPy)
        context.lineTo(px, py)
+15 −13
Original line number Diff line number Diff line
@@ -38,9 +38,11 @@
    <vue-slider
      :contained="true"
      :lazy="true"
      :tooltip="'hover'"
      :tooltipPlacement="'top'"
      :tooltip="'always'"
      :tooltipPlacement="'bottom'"
      :max="maxStickLengthCm"
      :processStyle="{ 'background-color': '#89bdbd' }"
      :tooltipStyle="{ 'background-color': '#89bdbd' }"
      v-model="snowHeight"
    />
  </div>
@@ -71,49 +73,49 @@ export default {
          value: 1
        },
        {
          name: 'Everything',
          name: 'All',
          value: 2
        }
      ],
      snowFoundSelect: [
        {
          name: 'No snow found',
          name: 'No',
          value: 0
        },
        {
          name: 'Snow found',
          name: 'Yes',
          value: 1
        },
        {
          name: 'Everything',
          name: 'All',
          value: 2
        }
      ],
      editedSelect: [
        {
          name: 'Not edited',
          name: 'No',
          value: 0
        },
        {
          name: 'Edited',
          name: 'Yes',
          value: 1
        },
        {
          name: 'Everything',
          name: 'All',
          value: 2
        }
      ],
      discardedSelect: [
        {
          name: 'Not discarded',
          name: 'No',
          value: 0
        },
        {
          name: 'Discarded',
          name: 'Yes',
          value: 1
        },
        {
          name: 'Everything',
          name: 'All',
          value: 2
        }
      ]
@@ -197,7 +199,7 @@ export default {
}
</script>

<style scoped>
<style lang="scss" scoped>
.filters-container {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;