Heray-Was-Here
Server : Apache
System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
Directory :  /bitnami/wordpress/wp-content/plugins/code-snippets/css/common/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /bitnami/wordpress/wp-content/plugins/code-snippets/css/common/_checkbox.scss
@use 'theme';

@mixin canonical {
	appearance: none;
	display: inline-grid;
	place-content: center;
	vertical-align: middle;
	inline-size: 20px;
	block-size: 20px;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	background: #fff;
	border: 1.5px solid theme.$control-border;
	border-radius: 5px;
	box-shadow: 0 2px 2px rgb(0 0 0 / 5%);
	cursor: pointer;

	&:focus {
		outline: 2px solid var(--wp-admin-theme-color);
	}

	&::before {
		content: none;
	}

	&:checked {
		background: theme.$accent;
		border-color: theme.$accent;

		&::before {
			content: '';
			inline-size: 20px;
			block-size: 20px;
			margin: 0;
			background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M14.83 4.89l1.34.94-5.81 8.38H9.02L5.78 9.67l1.34-1.25 2.57 2.4z' fill='%23fff'/%3E%3C/svg%3E") center/20px no-repeat;
		}
	}
}

Hry