]> git.argeo.org Git - gpl/argeo-suite.git/blob - argeo/suite/ui/SuiteStyle.java
Prepare next development cycle
[gpl/argeo-suite.git] / argeo / suite / ui / SuiteStyle.java
1 package org.argeo.suite.ui;
2
3 import org.argeo.cms.ui.util.CmsStyle;
4
5 /** Styles used by Argeo Suite work UI. */
6 public enum SuiteStyle implements CmsStyle {
7 // Header
8 header, headerTitle, headerMenu, headerMenuItem,
9 // Recent items
10 recentItems,
11 // Lead pane
12 leadPane, leadPaneItem,
13 // Group composite
14 titleContainer, titleLabel, subTitleLabel,formLine,formColumn,navigationBar,navigationTitle,navigationButton,
15 // Forms elements
16 simpleLabel, simpleText,
17 // table
18 titleCell,
19 // tabbed area
20 mainTabBody,mainTabSelected, mainTab,
21 // Buttons
22 inlineButton;
23
24 @Override
25 public String getClassPrefix() {
26 return "argeo-suite";
27 }
28
29 }