ソースを参照

https://github.com/tracim/tracim/issues/732, change the text color

AlexiCauvin 5 年 前
コミット
629d72f4ab
共有1 個のファイルを変更した5 個の追加2 個の削除を含む
  1. 5 2
      frontend_lib/src/component/Input/SelectStatus/SelectStatus.jsx

+ 5 - 2
frontend_lib/src/component/Input/SelectStatus/SelectStatus.jsx ファイルの表示

@@ -37,11 +37,14 @@ export const SelectStatus = props => {
37 37
             type='button'
38 38
             onClick={() => props.onChangeStatus(s.slug)}
39 39
             key={`status_${s.slug}`}
40
-            style={{color: s.hexcolor}}
40
+            // style={{color: s.hexcolor}}
41 41
           >
42 42
             {s.label}
43 43
             <div className='selectStatus__submenu__item__icon'>
44
-              <i className={`fa fa-fw fa-${s.faIcon}`} />
44
+              <i
45
+              className={`fa fa-fw fa-${s.faIcon}`}
46
+              style={{color: s.hexcolor}}
47
+              />
45 48
             </div>
46 49
           </button>
47 50
         )}