mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-22 19:11:33 +03:00
Radio button marker is always displayed in disabled state (#4204)
Signed-off-by: Oleg Solodkov <oleg.solodkov@xored.com>
This commit is contained in:
parent
6ea9937312
commit
5803d8c5aa
@ -431,27 +431,17 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
&.marker-visible.checked {
|
||||
.marker {
|
||||
background-color: var(--primary-button-disabled);
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
}
|
||||
}
|
||||
}
|
||||
&.disabled {
|
||||
cursor: not-allowed;
|
||||
|
||||
.marker {
|
||||
background-color: var(--primary-button-disabled);
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
&.checked {
|
||||
marker::after {
|
||||
content: '';
|
||||
opacity: 0.4;
|
||||
.marker {
|
||||
background-color: var(--primary-button-disabled);
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
background-color: var(--primary-button-disabled-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -29,7 +29,6 @@
|
||||
export let action: () => void = () => {}
|
||||
export let gap: 'large' | 'small' | 'medium' | 'none' = 'none'
|
||||
export let labelGap: 'large' | 'medium' = 'medium'
|
||||
export let isMarkerVisible: boolean = false
|
||||
</script>
|
||||
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
@ -39,7 +38,6 @@
|
||||
class:disabled
|
||||
class:checked={group === value}
|
||||
tabindex="-1"
|
||||
class:marker-visible={isMarkerVisible}
|
||||
on:click={() => {
|
||||
if (!disabled && group !== value) action()
|
||||
}}
|
||||
|
Loading…
Reference in New Issue
Block a user