sforkowany z mirror/soapbox
				
			
		
			
				
	
	
		
			104 wiersze
		
	
	
		
			2.1 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			104 wiersze
		
	
	
		
			2.1 KiB
		
	
	
	
		
			SCSS
		
	
	
.react-toggle {
 | 
						|
  display: inline-block;
 | 
						|
  position: relative;
 | 
						|
  cursor: pointer;
 | 
						|
  background-color: transparent;
 | 
						|
  border: 0;
 | 
						|
  padding: 0;
 | 
						|
  user-select: none;
 | 
						|
  -webkit-tap-highlight-color: rgba($base-overlay-background, 0);
 | 
						|
  -webkit-tap-highlight-color: transparent;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle-screenreader-only {
 | 
						|
  border: 0;
 | 
						|
  clip: rect(0 0 0 0);
 | 
						|
  height: 1px;
 | 
						|
  margin: -1px;
 | 
						|
  overflow: hidden;
 | 
						|
  padding: 0;
 | 
						|
  position: absolute;
 | 
						|
  width: 1px;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle--disabled {
 | 
						|
  cursor: not-allowed;
 | 
						|
  opacity: 0.5;
 | 
						|
  transition: opacity 0.25s;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle-track {
 | 
						|
  width: 50px;
 | 
						|
  height: 24px;
 | 
						|
  padding: 0;
 | 
						|
  border-radius: 30px;
 | 
						|
  background-color: hsla(var(--brand-color_h), var(--brand-color_s), var(--brand-color_l), 0.35);
 | 
						|
  transition: background-color 0.2s ease;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track,
 | 
						|
.react-toggle.react-toggle--focus:not(.react-toggle--disabled) .react-toggle-track,
 | 
						|
.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
 | 
						|
  background-color: var(--brand-color--hicontrast);
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle--checked .react-toggle-track {
 | 
						|
  background-color: var(--brand-color);
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle-track-check {
 | 
						|
  position: absolute;
 | 
						|
  width: 14px;
 | 
						|
  height: 10px;
 | 
						|
  top: 0;
 | 
						|
  bottom: 0;
 | 
						|
  margin-top: auto;
 | 
						|
  margin-bottom: auto;
 | 
						|
  line-height: 0;
 | 
						|
  left: 8px;
 | 
						|
  opacity: 0;
 | 
						|
  transition: opacity 0.25s ease;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle--checked .react-toggle-track-check {
 | 
						|
  opacity: 1;
 | 
						|
  transition: opacity 0.25s ease;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle-track-x {
 | 
						|
  position: absolute;
 | 
						|
  width: 10px;
 | 
						|
  height: 10px;
 | 
						|
  top: 0;
 | 
						|
  bottom: 0;
 | 
						|
  margin-top: auto;
 | 
						|
  margin-bottom: auto;
 | 
						|
  line-height: 0;
 | 
						|
  right: 10px;
 | 
						|
  opacity: 1;
 | 
						|
  transition: opacity 0.25s ease;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle--checked .react-toggle-track-x {
 | 
						|
  opacity: 0;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle-thumb {
 | 
						|
  position: absolute;
 | 
						|
  top: 1px;
 | 
						|
  left: 1px;
 | 
						|
  width: 22px;
 | 
						|
  height: 22px;
 | 
						|
  border: 1px solid var(--brand-color--med);
 | 
						|
  border-radius: 50%;
 | 
						|
  background-color: var(--background-color);
 | 
						|
  box-sizing: border-box;
 | 
						|
  transition: all 0.25s ease;
 | 
						|
  transition-property: border-color, left;
 | 
						|
}
 | 
						|
 | 
						|
.react-toggle--checked .react-toggle-thumb {
 | 
						|
  left: 27px;
 | 
						|
  border-color: var(--brand-color);
 | 
						|
}
 |