`Radio Tile Group` outline disappear problem
See original GitHub issueHi, I’m Zhuoyue from the IBM Watson Studio UI team and am currently working on developing UI for AutoAI.
The Radio Tile Group
’s outline disappears under 70% Zoom or smaller. This seems to be the bug for Chrome alone, in the safari everything is fine.
Safari
Chrome
Safari
Chrome
A temporary fix we are using is to add the following code inside the tilesContainer
of the respective .scss
, but this only partially solves the problem. If we zoom in 67% or less, we need an even smaller outline-offset
to make sure the outline shows up correctly. But under smaller outline-offset
, the 110% or more zoom in will looks weird. So I think this component should be updated for this situation. Thanks!
:global(.bx--tile--is-selected){
outline-offset: -1.5px !important;
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Display outline on all unselected radio buttons - Stack Overflow
From your question, we understand, you have a button with id BtnContinue and on click on that outline will appear or disappear. –...
Read more >Radio button outline will not go away - eehelp.com
I have a group of questions of radio button at the breast of a dynamic form that display additional questions based on the...
Read more >Radio Station Tile Missing | MachEforum
try swiping left on the tile area and see if it is hiding off the screen. OR swipe down on a tile to...
Read more >RadioGroup - Android Developers
This class is used to create a multiple-exclusion scope for a set of radio buttons. Checking one radio button that belongs to a...
Read more >What Are the Issues with Android App Widgets and ... - Medium
Android is an open-source Linux-based platform developed by a group of companies led by Google. The full multitasking of the Android ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ZhuoyueLyu yeah, it’s definitely a hard one. It seems like when we go smaller than 100% that Chrome will change the outline width to 1.11111px due to sub-pixel rendering 😞 we can definitely look and see what our options are, most likely switching over to border or box-shadow.
@ZhuoyueLyu Thank you for your patience on this! You should see a fix here: https://github.com/carbon-design-system/carbon/pull/8258