A user has asked me if I can increase the size of DateItem. It looks like font-size is set to 8 in Tahoe, which indeed, is pretty small. I know I can use Canvas.resizeFonts to make everything larger, but I'd like calendar sizes to come up by 4-5, which is too much to raise everything else (I'd like to keep them the same size). You might consider making these changes in your css, but otherwise, is editing the css my only other option (you've marked them as important)?
Code:
@@ -5794,7 +5794,7 @@ select[disabled] option { color: #47a7e3; border: 2px solid #ffffff; font-family: RobotoLight; - font-size: 8px !important; + font-size: 12px !important; } .dateChooserNavButton, @@ -5810,7 +5810,7 @@ select[disabled] option { background: #fafafa; color: #616161; font-family: RobotoLight; - font-size: 9px !important; + font-size: 13px !important; } /* year/month buttons */ @@ -5971,7 +5971,7 @@ select[disabled] option { border-radius: 0px; display: inline; font-family: corbel; - font-size: 8px !important; + font-size: 12px !important; letter-spacing: 0.5px; }
Comment