Skip to content
Snippets Groups Projects
Commit 9ad0c7e6 authored by uhensler's avatar uhensler
Browse files

Merge branch 'OpenOLAT_14.2' into OpenOLAT_15.0

Conflicts:
	src/main/java/org/olat/modules/wiki/WikiMainController.java
	src/main/webapp/static/themes/light/theme.css
	src/main/webapp/static/themes/light/theme.css.map
	src/main/webapp/static/themes/openolat/theme.css
	src/main/webapp/static/themes/openolat/theme.css.map
parents ec484737 29f0e459
No related branches found
No related tags found
No related merge requests found
...@@ -404,9 +404,15 @@ public class WikiMainController extends BasicController implements CloneableCont ...@@ -404,9 +404,15 @@ public class WikiMainController extends BasicController implements CloneableCont
} }
wikiMenuDropdown.removeAllComponents(); wikiMenuDropdown.removeAllComponents();
<<<<<<< HEAD
for (WikiPage page : pages) { for (WikiPage page : pages) {
String link = page.getPageName(); String link = page.getPageName();
=======
for (String link : links) {
// link = Formatter.truncate(link, 60);
>>>>>>> refs/heads/OpenOLAT_14.2
Link menuLink = LinkFactory.createToolLink(link, "select-page", link, this); Link menuLink = LinkFactory.createToolLink(link, "select-page", link, this);
menuLink.setElementCssClass("o_wiki_menu");
wikiMenuDropdown.addComponent(menuLink); wikiMenuDropdown.addComponent(menuLink);
} }
if (editMenuButton != null) { if (editMenuButton != null) {
......
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
position: relative; position: relative;
top: -5px; top: -5px;
} }
.o_wiki_menu {
@extend %o_nowrap;
width: 500px;
}
} }
.o_wikimod_editform_wrapper { .o_wikimod_editform_wrapper {
......
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment