fix(buttons): update toggle buttons feedback color (#35346)
This commit is contained in:
committed by
Ahmad Abdolsaheb
parent
675d6a76e4
commit
a2536c864f
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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'
|
||||||
|
Reference in New Issue
Block a user