001/*
002 * #%L
003 * GwtMaterial
004 * %%
005 * Copyright (C) 2015 - 2017 GwtMaterialDesign
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 * 
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 * 
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package gwt.material.design.client.constants;
021
022/**
023 * Predefined css style / class names
024 *
025 * @author kebzlou7979
026 */
027public interface CssName {
028
029    String BADGE = "badge";
030    String SIDEBAR_BADGE = "sideBarBadge";
031    String BREADCRUMB = "breadcrumb";
032    String CARD = "card";
033    String CARD_ACTION = "card-action";
034    String CARD_CONTENT = "card-content";
035    String CARD_IMAGE = "card-image";
036    String CARD_REVEAL = "card-reveal";
037    String CARD_TITLE = "card-title";
038    String OLD_CHECKBOX = "oldCheckBox";
039    String GWT_CHECKBOX = "gwt-CheckBox";
040    String FILLED_IN = "filled-in";
041    String CHIP = "chip";
042    String COLLAPSIBLE = "collapsible";
043    String ACCORDION = "accordion";
044    String EXPANDABLE = "expandable";
045    String COLLAPSIBLE_BODY = "collapsible-body";
046    String COLLAPSIBLE_HEADER = "collapsible-header";
047    String COLLECTION = "collection";
048    String WITH_HEADER = "with-header";
049    String COLLECTION_HEADER = "collection-header";
050    String COLLECTION_ITEM = "collection-item";
051    String AVATAR = "avatar";
052    String DISMISSABLE = "dismissable";
053    String SECONDARY_CONTENT = "secondary-content";
054    String COL = "col";
055    String INPUT_FIELD = "input-field";
056    String DIVIDER = "divider";
057    String DROPDOWN_CONTENT = "dropdown-content";
058    String DROPDOWN_BUTTON = "dropdown-button";
059    String FIXED_ACTION_BTN = "fixed-action-btn";
060    String PAGE_FOOTER = "page-footer";
061    String CONTAINER = "container";
062    String FOOTER_COPYRIGHT = "footer-copyright";
063    String MATERIAL_ICONS = "material-icons";
064    String RESPONSIVE_IMG = "responsive-img";
065    String MATERIAL_INFO = "material-info";
066    String MATERIAL_LABEL = "material-label";
067    String VALIGN_WRAPPER = "valign-wrapper";
068    String LOADER_WRAPPER = "loader-wrapper";
069    String MODAL = "modal";
070    String MODAL_CONTENT = "modal-content";
071    String MODAL_FOOTER = "modal-footer";
072    String NAV_WRAPPER = "nav-wrapper";
073    String NAV_CONTENT = "nav-content";
074    String BUTTON_COLLAPSE = "button-collapse";
075    String BRAND_LOGO = "brand-logo";
076    String PAGINATION = "pagination";
077    String WAVES_EFFECT = "waves-effect";
078    String PARALLAX_CONTAINER = "parallax-container";
079    String PARALLAX = "parallax";
080    String PRELOADER_WRAPPER = "preloader-wrapper";
081    String PROGRESS = "progress";
082    String PROGRESS_WRAPPER = "progress-wrapper";
083    String RANGE_FIELD = "range-field";
084    String THUMB = "thumb";
085    String VALUE = "value";
086    String ROW = "row";
087    String SECTION = "section";
088    String TABLE_OF_CONTENTS = "table-of-contents";
089    String SEARCH_RESULT = "search-result";
090    String SIDE_NAV = "side-nav";
091    String SIDE_NAV_CONTENT = "sidenav-content";
092    String OPEN = "open";
093    String SIDE_PROFILE = "side-profile";
094    String NAVMENU_PERMANENT = "navmenu-permanent";
095    String CAPTION = "caption";
096    String SLIDER = "slider";
097    String SLIDES = "slides";
098    String SPINNER_LAYER = "spinner-layer";
099    String CIRCLE_CLIPPER = "circle-clipper";
100    String GAP_PATCH = "gap-patch";
101    String SPLASH_SCREEN = "splash-screen";
102    String SWITCH = "switch";
103    String LEVER = "lever";
104    String TABS = "tabs";
105    String TAB = "tab";
106    String MATERIALIZE_TEXTAREA = "materialize-textarea";
107    String VIDEO_CONTAINER = "video-container";
108    String LETTER = "letter";
109    String SCROLLSPY = "scrollspy";
110    String NO_PADDING = "no-padding";
111    String ACTIVATOR = "activator";
112    String ACTIVE = "active";
113    String INACTIVE = "inactive";
114    String VALID = "valid";
115    String INVALID = "invalid";
116    String VALIGN = "valign";
117    String CENTER = "center";
118    String DISABLED = "disabled";
119    String HIGLIGHTED = "higlighted";
120    String FIXED = "fixed";
121    String FULLSCREEN = "fullscreen";
122    String LEFT = "left";
123    String RIGHT = "right";
124    String CIRCLE = "circle";
125    String CLEARFIX = "clearfix";
126    String HOVERABLE = "hoverable";
127    String TRUNCATE = "truncate";
128    String TITLE = "title";
129    String FIELD_ERROR_LABEL = "field-error-label";
130    String FIELD_HELPER_LABEL = "field-helper-label";
131    String FIELD_SUCCESS_LABEL = "field-success-label";
132    String FIELD_ERROR = "field-error";
133    String FIELD_SUCCESS = "field-success";
134    String Z_DEPTH_0 = "z-depth-0";
135    String Z_DEPTH_1 = "z-depth-1";
136    String Z_DEPTH_2 = "z-depth-2";
137    String Z_DEPTH_3 = "z-depth-3";
138    String Z_DEPTH_4 = "z-depth-4";
139    String Z_DEPTH_5 = "z-depth-5";
140    String READ_ONLY = "read-only";
141    String READ_ONLY_TOGGLE = "read-only-toggle";
142    String INFINITE = "infinite";
143    String DISPLAY_ANIMATION= "display-animation";
144    String MATERIALIZE_CSS = "materialcss";
145    String PREFIX = "prefix";
146    String LISTBOX_WRAPPER = "listbox-wrapper";
147}