File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2727 overflow : hidden ;
2828}
2929
30- .lnsLayerPanel__dimension-hidden {
31- visibility : hidden ;
30+ .lnsLayerPanel__dimension-isHidden {
31+ opacity : 0 ;
3232}
3333
34- .lnsLayerPanel__dimension-replace {
34+ .lnsLayerPanel__dimension-isReplacing {
3535 text-decoration : line-through ;
3636}
3737
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export function LayerPanel(
218218 key = { accessor }
219219 className = { classNames ( 'lnsLayerPanel__dimension' , {
220220 // eslint-disable-next-line @typescript-eslint/naming-convention
221- 'lnsLayerPanel__dimension-hidden ' :
221+ 'lnsLayerPanel__dimension-isHidden ' :
222222 isDraggedOperation ( dragDropContext . dragging ) &&
223223 accessor === dragDropContext . dragging . columnId ,
224224 } ) }
@@ -228,7 +228,7 @@ export function LayerPanel(
228228 isDraggedOperation ( dragDropContext . dragging ) &&
229229 group . groupId !== dragDropContext . dragging . groupId
230230 ) {
231- return 'lnsLayerPanel__dimension-replace ' ;
231+ return 'lnsLayerPanel__dimension-isReplacing ' ;
232232 }
233233 return '' ;
234234 } }
You can’t perform that action at this time.
0 commit comments