fix(buttons): update toggle buttons feedback color (#35346)

This commit is contained in:
mrugesh mohapatra
2019-02-22 18:04:16 +05:30
committed by Ahmad Abdolsaheb
parent 675d6a76e4
commit a2536c864f
2 changed files with 5 additions and 5 deletions

View File

@ -12,12 +12,12 @@
} }
.toggle-not-active { .toggle-not-active {
background-color: #dedede; background-color: #ffffff;
color: rgb(0, 49, 0); color: rgb(0, 49, 0);
} }
.night .toggle-not-active { .night .toggle-not-active {
background-color: #999; background-color: #dedede;
color: #333; color: #333;
} }

View File

@ -109,7 +109,7 @@ class PrivacySettings extends Component {
<Form inline={true} onSubmit={this.handleSubmit}> <Form inline={true} onSubmit={this.handleSubmit}>
<ToggleSetting <ToggleSetting
action='My profile' action='My profile'
explain='Your certifications will be disabled' explain='Your certifications will be disabled, if set to private.'
flag={isLocked} flag={isLocked}
flagName='isLocked' flagName='isLocked'
offLabel='Public' offLabel='Public'
@ -158,7 +158,7 @@ class PrivacySettings extends Component {
/> />
<ToggleSetting <ToggleSetting
action='My certifications' action='My certifications'
explain='Your certifications will be disabled' explain='Your certifications will be disabled, if set to private.'
flag={!showCerts} flag={!showCerts}
flagName='showCerts' flagName='showCerts'
offLabel='Public' offLabel='Public'
@ -175,7 +175,7 @@ class PrivacySettings extends Component {
/> />
<ToggleSetting <ToggleSetting
action='My time line' action='My time line'
explain='Your certifications will be disabled' explain='Your certifications will be disabled, if set to private.'
flag={!showTimeLine} flag={!showTimeLine}
flagName='showTimeLine' flagName='showTimeLine'
offLabel='Public' offLabel='Public'