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 {
background-color: #dedede;
background-color: #ffffff;
color: rgb(0, 49, 0);
}
.night .toggle-not-active {
background-color: #999;
background-color: #dedede;
color: #333;
}

View File

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