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

[editor] Fix coloring of the slider rectangle at position 0

parent b1bdb170
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ Editor
======
1.25.0
- Remove border of slider rectangle in number line mode at position 0
- Fix coloring of the slider rectangle in number line mode at position 0
1.24.0
- Show arrow for slider in number line mode
......
......@@ -101,8 +101,9 @@ import { FormElementComponent } from '../../directives/form-element-component.di
'.number-marker {width: 2px; height: 20px; background-color: #555; margin: 10px auto 0 auto}',
// 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;}',
// Background color must use !important to be displayed also in the editor
// eslint-disable-next-line max-len
':host ::ng-deep .bar-style .mat-slider-thumb {border-radius: 0; border: none; width: 9px; height: 40px; bottom: -20px; margin-right: 5px; background-color: #006064}',
':host ::ng-deep .bar-style .mat-slider-thumb {border-radius: 0; border: none; width: 9px; height: 40px; bottom: -20px; margin-right: 5px; background-color: #006064 !important}',
':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);}'
]
......
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