CSS for Selected Grid Cell - 9.3.4
Jan 06, 2023
07:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 06, 2023
07:15 AM
CSS for Selected Grid Cell - 9.3.4
Remove or Change the selected cell's border in runtime,
In runtime, i'm seeing CSS as follows,
How to apply in Custom CSS tab? I don't find any configurations to change the border color.
Solved! Go to Solution.
Labels:
- Labels:
-
Best Practices
-
Coding
-
Design
-
Examples
-
Mashup-Widget
ACCEPTED SOLUTION
Accepted Solutions
Jan 06, 2023
12:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 06, 2023
12:16 PM
I was able to override the color using this in the mashups custom css tab:
ptcs-focus-overlay {
border-color: red !important;
}
2 REPLIES 2
Jan 06, 2023
12:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 06, 2023
12:16 PM
I was able to override the color using this in the mashups custom css tab:
ptcs-focus-overlay {
border-color: red !important;
}
Jan 09, 2023
07:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 09, 2023
07:52 AM
To hide the border,
ptcs-focus-overlay {
visibility: hidden;
}
