001/* 002 * This library is part of OpenCms - 003 * the Open Source Content Management System 004 * 005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com) 006 * 007 * This library is free software; you can redistribute it and/or 008 * modify it under the terms of the GNU Lesser General Public 009 * License as published by the Free Software Foundation; either 010 * version 2.1 of the License, or (at your option) any later version. 011 * 012 * This library is distributed in the hope that it will be useful, 013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 015 * Lesser General Public License for more details. 016 * 017 * For further information about Alkacon Software, please see the 018 * company website: http://www.alkacon.com 019 * 020 * For further information about OpenCms, please see the 021 * project website: http://www.opencms.org 022 * 023 * You should have received a copy of the GNU Lesser General Public 024 * License along with this library; if not, write to the Free Software 025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 026 */ 027 028package org.opencms.ade.publish.client; 029 030import com.google.gwt.resources.client.CssResource; 031 032/** 033 * 034 * The CSS bundle for the publish dialog.<p> 035 * 036 * @since 8.0.0 037 */ 038public interface I_CmsPublishCss extends CssResource { 039 040 /** 041 * Access method.<p> 042 * 043 * @return the CSS class name 044 */ 045 String checkboxes(); 046 047 /** 048 * Access method.<p> 049 * 050 * @return the CSS class name 051 */ 052 String checkmark(); 053 054 /** 055 * Access method.<p> 056 * 057 * @return the CSS class name 058 */ 059 String clear(); 060 061 /** 062 * Access method.<p> 063 * 064 * @return the CSS class name 065 */ 066 String groupHeader(); 067 068 /** 069 * Access method.<p> 070 * 071 * @return the CSS class name 072 */ 073 String groupPanel(); 074 075 /** 076 * Access method.<p> 077 * 078 * @return the CSS class name 079 */ 080 String indentedPublishRow(); 081 082 /** 083 * Access method.<p> 084 * 085 * @return the CSS class name 086 */ 087 String itemToKeep(); 088 089 /** 090 * Access method.<p> 091 * 092 * @return the CSS class name 093 */ 094 String label(); 095 096 /** 097 * Access method.<p> 098 * 099 * @return the CSS class name 100 */ 101 String noResources(); 102 103 /** 104 * Access method.<p> 105 * 106 * @return the CSS class name 107 */ 108 String problemPanel(); 109 110 /** 111 * Access method.<p> 112 * 113 * @return the CSS class name 114 */ 115 String publishDialog(); 116 117 /** 118 * Access method.<p> 119 * 120 * @return the CSS class name 121 */ 122 String publishListItem(); 123 124 /** 125 * Access method.<p> 126 * 127 * @return the CSS class name 128 */ 129 String publishRow(); 130 131 /** 132 * Access method.<p> 133 * 134 * @return the CSS class name 135 */ 136 String relatedItem(); 137 138 /** 139 * Access method.<p> 140 * 141 * @return the CSS class name 142 */ 143 String scrollPanel(); 144 145 /** 146 * Access method.<p> 147 * 148 * @return the CSS class name 149 */ 150 String selectButtons(); 151 152 /** 153 * Access method.<p> 154 * 155 * @return the CSS class name 156 */ 157 String selector(); 158 159 /** 160 * Access method.<p> 161 * 162 * @return the CSS class name 163 */ 164 String selectorLabel(); 165 166 /** 167 * Access method.<p> 168 * 169 * @return the CSS class name 170 */ 171 String selectorPanel(); 172 173 /** 174 * Access method.<p> 175 * 176 * @return the CSS class name 177 */ 178 String selectPanel(); 179 180 /** 181 * Access method.<p> 182 * 183 * @return the CSS class name 184 */ 185 String spacer(); 186 187 /** 188 * Access method.<p> 189 * 190 * @return the CSS class name 191 */ 192 String text(); 193 194 /** 195 * Access method.<p> 196 * 197 * @return the CSS class name 198 */ 199 String topBar(); 200}