fix post presentation
This commit is contained in:
parent
326b1e0d85
commit
3f1bc4cd07
@ -73,7 +73,7 @@ export default class UserFolder extends React.Component<IProps, IState> {
|
||||
{this.state.isOpen && (
|
||||
<div className={classes["container"]} data-will-close={this.state.willClose.toString()} ref={this.rootRefElement}>
|
||||
<QuantityProgressBar
|
||||
title="Complétion du dossier"
|
||||
title="Complétion du dossier client"
|
||||
total={100}
|
||||
currentNumber={this.calculateDocumentsPercentageProgress()}
|
||||
/>
|
||||
|
@ -89,7 +89,7 @@ export default class CreateFolder extends BasePage<IProps, IState> {
|
||||
<Select options={this.actsOptions} placeholder={"Type d’acte"} onChange={this.onActTypeChange} />
|
||||
<InputField
|
||||
name="personal_note"
|
||||
fakeplaceholder="Note personnelle"
|
||||
fakeplaceholder="Note du dossier"
|
||||
textarea
|
||||
onChange={this.onPersonalNoteChange}
|
||||
/>
|
||||
|
@ -56,7 +56,7 @@ class FolderInformationClass extends BasePage<IPropsClass, IState> {
|
||||
<FolderBoxInformation folder={this.state.selectedFolder} isDescription />
|
||||
</div>
|
||||
<div className={classes["progress-bar"]}>
|
||||
<QuantityProgressBar title="Complétion du dossier client" total={100} currentNumber={0} />
|
||||
<QuantityProgressBar title="Complétion du dossier" total={100} currentNumber={0} />
|
||||
</div>
|
||||
{this.doesFolderHaveCustomer() && <ClientSection folder={this.state.selectedFolder} />}
|
||||
</div>
|
||||
|
@ -36,7 +36,7 @@ class UpdateFolderDescriptionClass extends BasePage<IProps, IState> {
|
||||
|
||||
<Form className={classes["form"]}>
|
||||
<div className={classes["content"]}>
|
||||
<InputField name="input field" fakeplaceholder="Intitulé du dossier" textarea />
|
||||
<InputField name="input field" fakeplaceholder="Note du dossier" textarea />
|
||||
</div>
|
||||
|
||||
<div className={classes["button-container"]}>
|
||||
|
@ -18,6 +18,20 @@ body {
|
||||
|
||||
input {
|
||||
font-size: 18px;
|
||||
/* Firefox */
|
||||
-moz-appearance: textfield;
|
||||
|
||||
/* Chrome */
|
||||
&::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Opéra*/
|
||||
&::-o-inner-spin-button {
|
||||
-o-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
|
Loading…
x
Reference in New Issue
Block a user