Needs review
Project:
Shiny (Administration theme)
Version:
7.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Jan 2016 at 15:37 UTC
Updated:
13 Feb 2019 at 23:59 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
mrpauldriver commentedComment #3
chippper commentedI can verify this issue, as well.
It appears that the issue stems from the Date Repeat Field not using labels to correspond to their radio buttons.
The Shiny theme assumes that any radio button has a label, and inserts a fancy looking radio button with a :before pseudoelement. However, this clearly isn't the case with the Date Repeat field. Unfortunately, there is no previous sibling selector in CSS, so there are two options:
1. Get the Date Repeat Field module to change the markup to use labels
2. Make an exception in the Shiny CSS to accommodate:
Obviously, option 1 is preferable, but option 2 may be quicker.
Comment #4
laurelstreng commentedAlso having this issue.
Until the bug is fixed, I was able to create a custom module w/ styling to override the Shiny Admin
opacity: 0;Comment #5
Rajvi.addweb commentedPFA patch w.r.t comment #3
Comment #6
mrpauldriver commentedConfirm that this works in works in terms of modifying the shiny.css file.
I haven't haven't tried generated output via scss
Comment #7
Rajvi.addweb commentedIt will work properly by shiny.css after applied patch files.
Steps for SCSS:
1. You need to install ruby & compass.
2. Details provided on http://sass-lang.com/install
Comment #8
riddhi.addweb commentedHi,
#5 patch works for me.
Thanks.
Comment #9
c7bamford commentedThis issue affects every checkbox that is not preceeded by a label, not just those that the date module is producing. This patch changes the checkbox from using a different dom element to using visibility to hide the browser's default checkbox and show the new one as an after element.