fix: use monospaced font for code injection textareas
This commit is contained in:
		| @@ -100,7 +100,7 @@ | |||||||
|                 v-toolbar(color='primary', dark, dense, flat) |                 v-toolbar(color='primary', dark, dense, flat) | ||||||
|                   v-toolbar-title.subtitle-1 {{$t(`admin:theme.codeInjection`)}} |                   v-toolbar-title.subtitle-1 {{$t(`admin:theme.codeInjection`)}} | ||||||
|                 v-card-text |                 v-card-text | ||||||
|                   v-textarea( |                   v-textarea.is-monospaced( | ||||||
|                     v-model='config.injectCSS' |                     v-model='config.injectCSS' | ||||||
|                     :label='$t(`admin:theme.cssOverride`)' |                     :label='$t(`admin:theme.cssOverride`)' | ||||||
|                     outlined |                     outlined | ||||||
| @@ -112,7 +112,7 @@ | |||||||
|                   i18next.caption.pl-2.ml-1(path='admin:theme.cssOverrideWarning', tag='div') |                   i18next.caption.pl-2.ml-1(path='admin:theme.cssOverrideWarning', tag='div') | ||||||
|                     strong.red--text(place='caution') {{$t('admin:theme.cssOverrideWarningCaution')}} |                     strong.red--text(place='caution') {{$t('admin:theme.cssOverrideWarningCaution')}} | ||||||
|                     code(place='cssClass') .contents |                     code(place='cssClass') .contents | ||||||
|                   v-textarea.mt-3( |                   v-textarea.is-monospaced.mt-3( | ||||||
|                     v-model='config.injectHead' |                     v-model='config.injectHead' | ||||||
|                     :label='$t(`admin:theme.headHtmlInjection`)' |                     :label='$t(`admin:theme.headHtmlInjection`)' | ||||||
|                     outlined |                     outlined | ||||||
| @@ -121,7 +121,7 @@ | |||||||
|                     :hint='$t(`admin:theme.headHtmlInjectionHint`)' |                     :hint='$t(`admin:theme.headHtmlInjectionHint`)' | ||||||
|                     auto-grow |                     auto-grow | ||||||
|                     ) |                     ) | ||||||
|                   v-textarea.mt-2( |                   v-textarea.is-monospaced.mt-2( | ||||||
|                     v-model='config.injectBody' |                     v-model='config.injectBody' | ||||||
|                     :label='$t(`admin:theme.bodyHtmlInjection`)' |                     :label='$t(`admin:theme.bodyHtmlInjection`)' | ||||||
|                     outlined |                     outlined | ||||||
| @@ -246,5 +246,10 @@ export default { | |||||||
| </script> | </script> | ||||||
|  |  | ||||||
| <style lang='scss'> | <style lang='scss'> | ||||||
|  | .v-textarea.is-monospaced textarea { | ||||||
|  |   font-family: 'Roboto Mono'; | ||||||
|  |   font-size: 13px; | ||||||
|  |   font-weight: 600; | ||||||
|  |   line-height: 1.4; | ||||||
|  | } | ||||||
| </style> | </style> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user