Browse Source

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

AlexiCauvin 6 years ago
parent
commit
629d72f4ab
1 changed files with 5 additions and 2 deletions
  1. 5 2
      frontend_lib/src/component/Input/SelectStatus/SelectStatus.jsx

+ 5 - 2
frontend_lib/src/component/Input/SelectStatus/SelectStatus.jsx View File

37
             type='button'
37
             type='button'
38
             onClick={() => props.onChangeStatus(s.slug)}
38
             onClick={() => props.onChangeStatus(s.slug)}
39
             key={`status_${s.slug}`}
39
             key={`status_${s.slug}`}
40
-            style={{color: s.hexcolor}}
40
+            // style={{color: s.hexcolor}}
41
           >
41
           >
42
             {s.label}
42
             {s.label}
43
             <div className='selectStatus__submenu__item__icon'>
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
             </div>
48
             </div>
46
           </button>
49
           </button>
47
         )}
50
         )}