I'm trying to convert a sheet to CSE, and have removed "sheet-" from everything that is not a rolltemplate.  A fair amount of the styling was converted, but there are so many spacing issues that I'm re-configuring to look right with the new styling.  One in particular has been especially frustrating, and it took me hours to realize that the CSE is not recognizing width for a number input:  .right-ability-container input[type=number] {
		text-align: center;
		font-size: 35px;
		width: 50px;
		border: none;
		background: none;
}   Everything works except for width. When I realized that, I tried switching the input to text and the css to [type=text], and it works great. Unfortunately, I need to do math on the value.  Is this a known bug? Is there a work around I'm not seeing? Sorry if it turns out to be something obvious, but I've been staring at it for hours and need an outside perspective. Thanks.