By User on Saturday, 27 April 2019
Posted in General Issues
Likes 0
Views 577
Votes 0
Hello.
I know there is some "Settings > Layout > Styling > Button Colours" in backend, but it didn't helped me to customise everything.

There is few thing that I can't catch by myself with Google Chrome dev tools. May be you can help me?

01. buttons have blue border only in Google Chrome (when I press on button). Seems it's default Chrome border and should not be edited?

02. In Main Stream (Timeline) when I check some "Post type", checkbox become blue (during page load).

03. Pupup profile card display customised "Verified badge" (crown) but it also have a whide round shadow (and I can't catch it and replace with CSS too, like with crown).

04. When I press "POST / SUBMIT" button in stream, it display some blue border.

Thanks a lot.
Hey there,

02. In Main Stream (Timeline) when I check some "Post type", checkbox become blue (during page load).


Do you mean that you want to change the color of the tick during load? If yes, you can try to add the following CSS code into Backend > EasySocial > Themes > Custom CSS:

#es .o-checkbox input[type="checkbox"]:disabled + label:after {
color: #ffffff;
}


You need to change to the color code that you want. Currently, it is white in color.


03. Pupup profile card display customised "Verified badge" (crown) but it also have a whide round shadow (and I can't catch it and replace with CSS too, like with crown).


You can remove the white round shadow by adding the following CSS code:

#es .es-verified:after {
background:none;
}


01. buttons have blue border only in Google Chrome (when I press on button). Seems it's default Chrome border and should not be edited?

04. When I press "POST / SUBMIT" button in stream, it display some blue border.


You can remove it by adding the following CSS code:

button:focus {
outline:0 !important;
}


Do clear all of your cache before you see the changes.
·
Monday, 29 April 2019 15:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello. I found one more blue color... Can you please help me? When user save his profile settings and press "Update" button, this button become unactive and blue. Or when user send private message. More at the screenshot.
https://crimson-land.ru/community/profile/edit
Thanks.
·
Saturday, 01 June 2019 18:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

When user save his profile settings and press "Update" button, this button become unactive and blue.


Do you mean that once they press the update button, it will become like this and can't be pressed again? If yes, this is the correct behavior to void users to press multiple times. https://take.ms/hoBia
·
Monday, 03 June 2019 11:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes, I tried to find this. Thanks.
#es .btn-es-primary.disabled, #es .btn-es-primary.disabled:hover, #es .btn-es-primary.disabled:focus, #es .btn-es-primary.disabled.focus, #es .btn-es-primary.disabled:active, #es .btn-es-primary.disabled.active, #es .btn-es-primary[disabled], #es .btn-es-primary[disabled]:hover, #es .btn-es-primary[disabled]:focus, #es .btn-es-primary[disabled].focus, #es .btn-es-primary[disabled]:active, #es .btn-es-primary[disabled].active, fieldset[disabled] #es .btn-es-primary, fieldset[disabled] #es .btn-es-primary:hover, fieldset[disabled] #es .btn-es-primary:focus, fieldset[disabled] #es .btn-es-primary.focus, fieldset[disabled] #es .btn-es-primary:active, fieldset[disabled] #es .btn-es-primary.active {
background-color: #4a90e2 !important;
border-color: #4a90e2 !important;
}
·
Tuesday, 04 June 2019 01:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

May I know what are you trying to do with that button as I have no idea about it?
·
Tuesday, 04 June 2019 11:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi. I tried to change blue color of disabled button to another color. But for me was difficult to find CSS class for it. Now it resolved.
·
Tuesday, 04 June 2019 11:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Oh I see. You are most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding.
·
Tuesday, 04 June 2019 12:23
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post