瀏覽代碼

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

AlexiCauvin 6 年之前
父節點
當前提交
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
         )}