We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<h2 class="ui grey header"> <i class="newspaper outline padded icon"></i> <div class="content"> <span class="s-title">Top 10 anime fights</span> <div class="sub header s-author">By John Johnson</div> </div> </div>
Header is visible, like it was prior to me upgrading from SUI to FUI.
Header receives display: none:
display: none
2.5
https://jsfiddle.net/29onq46h/
The text was updated successfully, but these errors were encountered:
Seems to be introduced by 1dea0bf.
@ColinFrick it should be fixable by changing this code:
.ui.accordion .content:not(.active), .ui.accordion .accordion .content:not(.active) { display: none; }
With this code:
.ui.accordion > .content:not(.active), .ui.accordion .accordion > .content:not(.active) { display: none; }
What do you think ?
Sorry, something went wrong.
I implemented it similar to the original state with :not(.active)
:not(.active)
.ui.accordion .title ~ .content:not(.active), .ui.accordion .accordion .title ~ .content:not(.active) { display: none; }
1a64cac
ColinFrick
No branches or pull requests
Steps
Expected Result
Header is visible, like it was prior to me upgrading from SUI to FUI.
Actual Result
Header receives
![image](https://user-images.githubusercontent.com/11233299/45003743-c9094680-afe5-11e8-9c34-8ae09c3d6b2c.png)
display: none
:Version
2.5
Testcase
https://jsfiddle.net/29onq46h/
The text was updated successfully, but these errors were encountered: