Skip to content

Commit

Permalink
CSS Fix Select2 dropdown hidden when inside colorBox (has z-index 9999)
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisjacquet committed Feb 2, 2023
1 parent 3a95d6a commit 306def4
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Changes in 10.8
- Add Resource Visibility options in Resources.php
- Move Resources functions to separate file & rename them in Resources.php & Resources.fnc.php
- Update French & Spanish translations in rosariosis.po
- CSS Fix Select2 dropdown hidden when inside colorBox (has z-index 9999) in stylesheet.css

Changes in 10.7.1
-----------------
Expand Down
6 changes: 6 additions & 0 deletions assets/themes/FlatSIS/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -1801,6 +1801,12 @@ input[type=checkbox].toggle {
margin-bottom: 0;
}

/* Fix Select2 dropdown hidden when inside colorBox (has z-index 9999) */

.select2-dropdown {
z-index: 10051 !important;
}

/* Chosen/Select2 select: add 15px to original width so Chosen options ALL fit */

.chosen-select,
Expand Down
2 changes: 1 addition & 1 deletion assets/themes/FlatSIS/stylesheet.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/themes/FlatSIS/stylesheet_wkhtmltopdf.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions assets/themes/WPadmin/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -1687,6 +1687,12 @@ input[type=checkbox].toggle {
margin-bottom: 0;
}

/* Fix Select2 dropdown hidden when inside colorBox (has z-index 9999) */

.select2-dropdown {
z-index: 10051 !important;
}

/* Chosen/Select2 select: add 15px to original width so Chosen options ALL fit */

.chosen-select,
Expand Down
2 changes: 1 addition & 1 deletion assets/themes/WPadmin/stylesheet.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/themes/WPadmin/stylesheet_wkhtmltopdf.css

Large diffs are not rendered by default.

0 comments on commit 306def4

Please sign in to comment.