If you want to have the tinted background and the tooltips display override the drawScreen method:
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
this.drawDefaultBackground(); //Add this
super.drawScreen(mouseX, mouseY, partialTicks);
this.renderHoveredToolTip(mouseX, mouseY); //Add this
}