Skip to content

Commit

Permalink
fix(checkbox): remove styles for obsolete marker indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Jan 8, 2022
1 parent 2c176ea commit 4edd8bd
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions packages/default/scss/checkbox/_layout.scss
Expand Up @@ -39,18 +39,6 @@
top: 50%;
left: 50%;
}

@if $checkbox-icon-type == "marker" {
content: "";
width: $checkbox-marker-checked-width;
height: $checkbox-marker-checked-height;
background-color: currentColor;
transform: scale(0) translate(-50%, -50%);
overflow: hidden;
position: absolute;
top: 50%;
left: 50%;
}
}


Expand All @@ -66,12 +54,6 @@
transform: scale(1) translate(-50%, -50%);
}
}

@if $checkbox-icon-type == "marker" {
&::before {
transform: scale(1) translate(-50%, -50%);
}
}
}


Expand All @@ -89,14 +71,6 @@
transform: scale(1) translate(-50%, -50%);
}
}

@if $checkbox-icon-type == "marker" {
&::before {
width: $checkbox-maker-indeterminate-width;
height: $checkbox-marker-indeterminate-height;
transform: scale(1) translate(-50%, -50%);
}
}
}


Expand Down

0 comments on commit 4edd8bd

Please sign in to comment.