Vuetify v-timeline 中心线的多种颜色
Multiple colors for Vuetify v-timeline center line
我需要更改 v-timeline components of the Vuetify framework so that it will be a particular color up-to a certain colored dot and another color afterwards as shown here 中的中心线颜色,是否可以这样做?
整条线的颜色可以更改如下
.theme--light.v-timeline:before {
background: red;
}
我认为只有一种方法是设置线性渐变。因为v-timeline divider设置全部space。尝试设置
background: linear-gradient(180deg, black 0% 50%, gray 50% 100%) !important
我需要更改 v-timeline components of the Vuetify framework so that it will be a particular color up-to a certain colored dot and another color afterwards as shown here 中的中心线颜色,是否可以这样做?
整条线的颜色可以更改如下
.theme--light.v-timeline:before {
background: red;
}
我认为只有一种方法是设置线性渐变。因为v-timeline divider设置全部space。尝试设置
background: linear-gradient(180deg, black 0% 50%, gray 50% 100%) !important