/*
 * Quill snow theme labels only its built-in size classes (small/large/huge) in the size dropdown;
 * every other option falls back to `content: 'Normal'`. Our editors use CUSTOM px sizes (a STYLE
 * attributor — see assets/js/quill_formats.js), so without this rule the whole dropdown reads
 * "Normal, Normal, …". Render each size's own px value as its picker label + option.
 */
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value]::before {
    content: attr(data-value);
}
