Skip to content
Snippets Groups Projects
Commit 01227839 authored by jojohoch's avatar jojohoch
Browse files

Color the slider rectangle in number line mode also in position 0

parent dbbca80b
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@ Editor
======
1.24.0
- Show arrow for slider in number line mode
- Center the position of slider rectangle in number line mode
- Color the slider rectangle in number line mode also in position 0
- Add a Unicode font to display squares, bars, and dots
1.23.0
......
......@@ -2,6 +2,8 @@ Player
======
1.18.0
- Show arrow for slider in number line mode
- Center the position of slider rectangle in number line mode
- Color the slider rectangle in number line mode also in position 0
- Add a Unicode font to display squares, bars, and dots
1.17.0
......
......@@ -101,9 +101,9 @@ import { FormElementComponent } from '../../directives/form-element-component.di
// eslint-disable-next-line max-len
'.arrow-head {width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 20px solid #555;}',
// eslint-disable-next-line max-len
':host ::ng-deep .bar-style .mat-slider-thumb {border-radius: 0; width: 9px; height: 40px; bottom: -20px; margin-right: 5px;}',
':host ::ng-deep .bar-style .mat-slider-track-fill { background-color: rgba(0,0,0,0);}',
':host ::ng-deep .bar-style .mat-slider-track-background { background-color: rgba(0,0,0,0);}'
':host ::ng-deep .bar-style .mat-slider-thumb {border-radius: 0; width: 9px; height: 40px; bottom: -20px; margin-right: 5px; background-color: #006064}',
':host ::ng-deep .bar-style .mat-slider-track-fill {background-color: rgba(0,0,0,0);}',
':host ::ng-deep .bar-style .mat-slider-track-background {background-color: rgba(0,0,0,0);}'
]
})
export class SliderComponent extends FormElementComponent implements OnInit {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment