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 {
|
||||
background-color: #dedede;
|
||||
background-color: #ffffff;
|
||||
color: rgb(0, 49, 0);
|
||||
}
|
||||
|
||||
.night .toggle-not-active {
|
||||
background-color: #999;
|
||||
background-color: #dedede;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
|
@ -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'
|
||||
|
Reference in New Issue
Block a user