 Rank: Member Medals:  Joined: 7/29/2010(UTC) Posts: 35 Location: MN
Thanks: 9 times Was thanked: 1 time(s) in 1 post(s)
|
Hi, after upgrading from 6.4.15339.6526 to 6.4.15361.6527 the session groups that have sub groups in the master panel changed color from white to black, and i can not find where to change it back. If the group does not have any sub groups the color stayed white.
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: hero  Hi, after upgrading from 6.4.15339.6526 to 6.4.15361.6527 the session groups that have sub groups in the master panel changed color from white to black, and i can not find where to change it back. If the group does not have any sub groups the color stayed white. Can you upload an image of what you're seeing? I attempted to repro on my 6.4.15361 cloud instance and found that session groups with subgroups were styled as expected:  If you want to change the theme on your instance, navigate to the admin appearance tab and click "Change" to select a different theme. |
ScreenConnect Team |
|
|
|
 Rank: Member Medals:  Joined: 7/29/2010(UTC) Posts: 35 Location: MN
Thanks: 9 times Was thanked: 1 time(s) in 1 post(s)
|
Hi Brn, here is a screen shot, You can see the top groups that have children are black, the children are white, and the groups below that do not have children are white. 
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: hero  Hi Brn, here is a screen shot, You can see the top groups that have children are black, the children are white, and the groups below that do not have children are white.  Are you using a custom theme? If you change your site's current theme to Light with Blue, do you still encounter the same behavior? |
ScreenConnect Team |
|
|
|
 Rank: Member Medals:  Joined: 7/29/2010(UTC) Posts: 35 Location: MN
Thanks: 9 times Was thanked: 1 time(s) in 1 post(s)
|
Yes, the theme was heavy customised back in version 4, then the developer left, and now I a simple sysadmin is trying to maintain it.
|
|
|
|
 Rank: Administration Medals:  Joined: 10/2/2015(UTC) Posts: 329
Thanks: 1 times Was thanked: 71 time(s) in 63 post(s)
|
Originally Posted by: hero  Yes, the theme was heavy customised back in version 4, then the developer left, and now I a simple sysadmin is trying to maintain it. We've made significant style changes since version 4 (as I'm sure you're aware). Since you're using a theme that's been customized over time, you'll probably want to inspect the element that you wish to style (the black session group names) to figure out what css file is imposing that style. It looks like the following css is responsible for styling the names of session groups with subgroups: Code:
.OuterPanel .MasterPanel ul li.HasChildren > div > p {
filter: brightness(0.2);
-webkit-filter: brightness(0.2);
-moz-filter: brightness(0.2);
-o-filter: brightness(0.2);
-ms-filter: brightness(0.2);
}
At least in Chrome, if I disable/remove "filter: brightness(0.2);" and add "color: #FFF;" to the aforementioned style block, the names of session groups with subgroups are styled white: Code:
.OuterPanel .MasterPanel ul li.HasChildren > div > p {
color: #FFF;
}
Edited by user Monday, December 11, 2017 9:57:24 PM(UTC)
| Reason: example |
ScreenConnect Team |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.