-
-
Notifications
You must be signed in to change notification settings - Fork 79k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rm
visibility
where redundant to display
Refs #15755
- Loading branch information
Showing
4 changed files
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,8 @@ | |
|
||
.collapse { | ||
display: none; | ||
visibility: hidden; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
patrickhlauke
Member
|
||
|
||
&.in { display: block; visibility: visible; } | ||
&.in { display: block; } | ||
tr&.in { display: table-row; } | ||
tbody&.in { display: table-row-group; } | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The removal of the visibility flags from line 20 and 22 in 3.3.4, is breaking my collapsing submenu. It would still show the elements inside, even when it was suppose to be collapsed. Reverting back to 3.3.3 fixed it. FYI, I am using the Sass version.
Here's a code snippet in case it helps.