DmitrMakeev commited on
Commit
ea0a337
·
verified ·
1 Parent(s): 76d5d7b

Update js/rus/rus.js

Browse files
Files changed (1) hide show
  1. js/rus/rus.js +19 -0
js/rus/rus.js CHANGED
@@ -65,6 +65,25 @@ editor.I18n.addMessages({
65
  // Установка русского языка по умолчанию
66
  editor.I18n.setLocale('ru');
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  // Удаление ненужных блоков
69
  const unwantedBlocks = ['row', 'link', 'blogs'];
70
  unwantedBlocks.forEach(blockId => {
 
65
  // Установка русского языка по умолчанию
66
  editor.I18n.setLocale('ru');
67
 
68
+
69
+
70
+ const style = document.createElement('style');
71
+ style.textContent = `
72
+ .gjs-select option,
73
+ .gjs-field-select option,
74
+ .gjs-clm-select option,
75
+ .gjs-sm-select option,
76
+ .gjs-fields option,
77
+ .gjs-sm-unit option {
78
+ color: green;
79
+ }
80
+ `;
81
+ document.head.appendChild(style);
82
+
83
+
84
+
85
+
86
+
87
  // Удаление ненужных блоков
88
  const unwantedBlocks = ['row', 'link', 'blogs'];
89
  unwantedBlocks.forEach(blockId => {