/* * This is part of Geomajas, a GIS framework, http://www.geomajas.org/. * * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium. * * The program is available in open source according to the GNU Affero * General Public License. All contributions in this program are covered * by the Geomajas Contributors License Agreement. For full licensing * details, see LICENSE.txt in the project root. */ package org.geomajas.quickstart.gwt2.client.resource; import com.google.gwt.resources.client.CssResource; /** * CSS resource bundle for the application. * * @author David Debuck */ public interface ApplicationCssResource extends CssResource { /** * Get a CSS style class. * * @return the css class */ String infoButton(); /** * Get a CSS style class. * * @return the css class */ String infoButtonActive(); /** * Get a CSS style class. * * @return the css class */ String layerButton(); /** * Get a CSS style class. * * @return the css class */ String infoPopupPanel(); /** * Get a CSS style class. * * @return the css class */ String infoPopupPanelScroll(); /** * Get a CSS style class. * * @return the css class */ String infoPopupPanelContent(); /** * Get a CSS style class. * * @return the css class */ String infoPopupPanelSubTitle(); /** * Get a CSS style class. * * @return the css class */ String layerPopupPanel(); /** * Get a CSS style class. * * @return the css class */ String layerPopupPanelContent(); /** * Get a CSS style class. * * @return the css class */ String popupPanelHeader(); /** * Get a CSS style class. * * @return the css class */ String closePopupPanelButton(); /** * Get a CSS style class. * * @return the css class */ String toolTip(); /** * Get a CSS style class. * * @return the css class */ String toolTipLine(); /** * Get a CSS style class. * * @return the css class */ String detailPopupPanel(); /** * Get a CSS style class. * * @return the css class */ String featureItem(); /** * Get a CSS style class. * * @return the css class */ String featureItemDetail(); /** * Get a CSS style class. * * @return the css class */ String countryImage(); }