|
@@ -25,26 +25,28 @@ const Thread = props => {
|
25
|
25
|
)}
|
26
|
26
|
</ul>
|
27
|
27
|
|
28
|
|
- <form className='wsContentThread__app__texteditor wsContentGeneric__texteditor'>
|
29
|
|
- <div className='wsContentThread__app__texteditor__simpletext wsContentGeneric__texteditor__simpletext input-group d-inline-flex d-sm-inline-flex d-md-inline-flex d-lg-none'>
|
30
|
|
- <input type='text' className='wsContentThread__app__texteditor__simpletext__input wsContentGeneric__texteditor__simpletext__input form-control' placeholder='...' />
|
|
28
|
+ <form className='wsContentThread__app__texteditor wsContentGeneric__texteditor d-flex align-items-center justify-content-between flex-wrap'>
|
|
29
|
+ <div className='wsContentThread__app__texteditor__textinput wsContentGeneric__texteditor__textinput'>
|
|
30
|
+ <textarea placeholder='Taper votre message ici'/>
|
|
31
|
+ </div>
|
|
32
|
+
|
|
33
|
+ <div className='wsContentThread__app__texteditor__wrapper'>
|
31
|
34
|
|
32
|
|
- <div className='wsContentThread__app__texteditor__simpletext__icon wsContentGeneric__texteditor__simpletext__icon input-group-addon'>
|
33
|
|
- <i className='fa fa-font' />
|
|
35
|
+ <div className='wsContentThread__app__texteditor__advancedtext wsContentGeneric__texteditor__advancedtext mb-2'>
|
|
36
|
+ <button type='button' className='wsContentThread__app__texteditor__advancedtext__btn wsContentGeneric__texteditor__advancedtext__btn btn btn-outline-primary'>
|
|
37
|
+ Texte Avancé
|
|
38
|
+ </button>
|
34
|
39
|
</div>
|
35
|
|
- </div>
|
36
|
40
|
|
37
|
|
- <div className='wsContentGeneric__texteditor__wysiwyg d-none d-lg-block'>
|
38
|
|
- <textarea className='form-control' />
|
39
|
|
- </div>
|
|
41
|
+ <div className='wsContentThread__app__texteditor__submit wsContentGeneric__texteditor__submit mb-2'>
|
|
42
|
+ <button type='submit' className='wsContentThread__app__texteditor__submit__btn wsContentGeneric__texteditor__submit__btn btn btn-primary'>
|
|
43
|
+ Envoyer
|
|
44
|
+ <div className='wsContentThread__app__texteditor__submit__btn__icon wsContentGeneric__texteditor__submit__btn__icon ml-3'>
|
|
45
|
+ <i className='fa fa-paper-plane-o' />
|
|
46
|
+ </div>
|
|
47
|
+ </button>
|
|
48
|
+ </div>
|
40
|
49
|
|
41
|
|
- <div className='wsContentThread__app__texteditor__submit wsContentGeneric__texteditor__submit d-lg-flex justify-content-lg-center my-3'>
|
42
|
|
- <button type='submit' className='wsContentThread__app__texteditor__submit__btn wsContentGeneric__texteditor__submit__btn btn btn-primary'>
|
43
|
|
- Envoyer
|
44
|
|
- <div className='wsContentThread__app__texteditor__submit__btn__icon wsContentGeneric__texteditor__submit__btn__icon ml-3'>
|
45
|
|
- <i className='fa fa-paper-plane-o' />
|
46
|
|
- </div>
|
47
|
|
- </button>
|
48
|
50
|
</div>
|
49
|
51
|
</form>
|
50
|
52
|
</div>
|