1 decade ago by techmale
If you have been reading the posts on this forum, you will know I have been having some trouble this weekend...
It continued today, when after upgrading to Chrome 11 beta, to get a decent fps speed, I discovered that the entity chooser menu had disappeared from weltmeister. And this error appeared in every test project I have on my server from the last few weeks, ie: it is reproducable.
After quiet a bit of digging, I worked out that while the menu was still working, it was just hidden behind editing screen.
A simple solution was to add the following line to the weltmeister.css file (line 297):
z-index:999;
so the css for #entityMenu is now :
#entityMenu {
background-color: rgba(0,0,0,0.9);
display: none;
position: absolute;
min-width: 100px;
max-height:300px;
overflow-y: scroll;
-webkit-box-shadow:0px 0px 10px rgba(0,0,0,1);
/* added to fix visability problem */
z-index:999;
}
I am sure domanic or someone will have a better solution to this, but this one works for now.
It continued today, when after upgrading to Chrome 11 beta, to get a decent fps speed, I discovered that the entity chooser menu had disappeared from weltmeister. And this error appeared in every test project I have on my server from the last few weeks, ie: it is reproducable.
After quiet a bit of digging, I worked out that while the menu was still working, it was just hidden behind editing screen.
A simple solution was to add the following line to the weltmeister.css file (line 297):
z-index:999;
so the css for #entityMenu is now :
#entityMenu {
background-color: rgba(0,0,0,0.9);
display: none;
position: absolute;
min-width: 100px;
max-height:300px;
overflow-y: scroll;
-webkit-box-shadow:0px 0px 10px rgba(0,0,0,1);
/* added to fix visability problem */
z-index:999;
}
I am sure domanic or someone will have a better solution to this, but this one works for now.