Browse Source

fix before RMLL 2018

AlexiCauvin 5 years ago
parent
commit
a4d4947740

+ 1 - 1
src/component/Input/TextAreaApp/TextAreaApp.styl View File

@@ -1,7 +1,7 @@
1 1
 @import '../../../css/Variable.styl'
2 2
 
3 3
 .editiontitle
4
-  width 300px
4
+  width 100%
5 5
 
6 6
 .editionmode
7 7
   display flex

+ 2 - 0
src/component/OptionComponent/ArchiveDeleteContent.jsx View File

@@ -8,6 +8,7 @@ const ArchiveDeleteContent = props => {
8 8
         className='wsContentGeneric__option__menu__action optionicon d-none d-sm-block'
9 9
         onClick={props.onClickArchiveBtn}
10 10
         disabled={props.disabled}
11
+        title='Archiver'
11 12
       >
12 13
         <i className='fa fa-fw fa-archive' />
13 14
       </button>
@@ -16,6 +17,7 @@ const ArchiveDeleteContent = props => {
16 17
         className='wsContentGeneric__option__menu__action optionicon d-none d-sm-block'
17 18
         onClick={props.onClickDeleteBtn}
18 19
         disabled={props.disabled}
20
+        title='Supprimer'
19 21
       >
20 22
         <i className='fa fa-fw fa-trash' />
21 23
       </button>

+ 1 - 1
src/component/OptionComponent/NewVersionBtn.jsx View File

@@ -7,7 +7,7 @@ const NewVersionBtn = props => {
7 7
       onClick={props.onClickNewVersionBtn}
8 8
       disabled={props.disabled}
9 9
     >
10
-      Nouvelle version
10
+      Modifier
11 11
       <i className='fa fa-plus-circle ml-3' />
12 12
     </button>
13 13
   )

+ 1 - 0
src/component/PopinFixed/PopinFixed.styl View File

@@ -23,6 +23,7 @@
23 23
     &__title
24 24
       margin-right 15px
25 25
       border-radius 5px
26
+      width 100%
26 27
       color white
27 28
       text-overflow ellipsis
28 29
       overflow hidden

+ 1 - 1
src/component/PopinFixed/PopinFixedHeader.jsx View File

@@ -46,7 +46,7 @@ class PopinFixedHeader extends React.Component {
46 46
           className={classnames('wsContentGeneric__header__edittitle', `${customClass}__header__changetitle`)}
47 47
           onClick={this.handleClickChangeTitleBtn}
48 48
         >
49
-          {this.state.editTitle ? <i className='fa fa-check' /> : <i className='fa fa-pencil' />}
49
+          {this.state.editTitle ? <i className='fa fa-check' title='Valider le Titre' /> : <i className='fa fa-pencil' title='Modifier le Titre' />}
50 50
         </div>
51 51
 
52 52
         <div

+ 2 - 2
src/component/Timeline/Comment.jsx View File

@@ -5,8 +5,8 @@ const Comment = props => (
5 5
   <li className={classnames(
6 6
     `${props.customClass}__messagelist__item`,
7 7
     'timeline__messagelist__item', {
8
-      'sended': props.fromMe,
9
-      'received': !props.fromMe
8
+      'received': props.fromMe, // @FIXME : invert names of class (received should be !fromMe)
9
+      'sended': !props.fromMe
10 10
     }
11 11
   )}>
12 12
     <div className={classnames(`${props.customClass}__messagelist__item__wrapper`, 'timeline__messagelist__item__wrapper')}>

+ 1 - 1
src/component/Timeline/Timeline.jsx View File

@@ -80,7 +80,7 @@ class Timeline extends React.Component {
80 80
                 onClick={props.onClickWysiwygBtn}
81 81
                 disabled={props.disableComment}
82 82
               >
83
-                {props.wysiwyg ? 'Text Simple' : 'Texte Avancé'}
83
+                {props.wysiwyg ? 'Texte Simple' : 'Texte Avancé'}
84 84
               </button>
85 85
             </div>
86 86
 

+ 1 - 0
src/component/Timeline/Timeline.styl View File

@@ -89,6 +89,7 @@
89 89
       margin-top 10px
90 90
     &__advancedtext
91 91
       margin-right 15px
92
+      cursor pointer
92 93
     &__submit
93 94
       &__btn
94 95
         display inline-block