]> git.argeo.org Git - gpl/argeo-suite.git/blob - publishing/ui/PublishingStyle.java
Prepare next development cycle
[gpl/argeo-suite.git] / publishing / ui / PublishingStyle.java
1 package org.argeo.publishing.ui;
2
3 import org.argeo.cms.ui.util.CmsStyle;
4
5 /** Publishing styles. */
6 public enum PublishingStyle implements CmsStyle {
7 // general
8 page, coverTitle, coverSubTitle, coverTagline, bannerLine1, bannerLine2,
9 // meta data
10 tag, menu,
11 // text style
12 title, subTitle, chapo, para, sectionTitle, subSectionTitle,
13 // links
14 internalLink,
15 // composite style
16 framed, line;
17
18 @Override
19 public String getClassPrefix() {
20 return "argeo-publishing";
21 }
22
23 }