
.ui-edit {
    padding: 0 0.5rem 0 0.5rem;
    width: 7.7rem;
    height: 2.6rem;
    font-size: 1.3rem;
    
    border: 1px solid var(--gray-400);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.ui-edit:hover {
	border-color: var(--gray-500);
}
.ui-edit:focus {
	border-color: #80bdff;
	
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	/*
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
	*/
}