
jdplus.toolkit.desktop.plugin.html.Bootstrap4 Maven / Gradle / Ivy
/*
* Copyright 2017 National Bank of Belgium
*
* Licensed under the EUPL, Version 1.1 or - as soon they will be approved
* by the European Commission - subsequent versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
package jdplus.toolkit.desktop.plugin.html;
/**
* https://getbootstrap.com/docs/4.0
*
* @author Philippe Charles
*/
public final class Bootstrap4 {
public static final HtmlClass TEXT_LEFT = HtmlClass.of("text-left");
public static final HtmlClass TEXT_CENTER = HtmlClass.of("text-center");
public static final HtmlClass TEXT_RIGHT = HtmlClass.of("text-right");
public static final HtmlClass TEXT_PRIMARY = HtmlClass.of("text-primary");
public static final HtmlClass TEXT_SECONDARY = HtmlClass.of("text-secondary");
public static final HtmlClass TEXT_SUCCESS = HtmlClass.of("text-success");
public static final HtmlClass TEXT_DANGER = HtmlClass.of("text-danger");
public static final HtmlClass TEXT_WARNING = HtmlClass.of("text-warning");
public static final HtmlClass TEXT_INFO = HtmlClass.of("text-info");
public static final HtmlClass TEXT_LIGHT = HtmlClass.of("text-light");
public static final HtmlClass TEXT_DARK = HtmlClass.of("text-dark");
public static final HtmlClass TEXT_WHITE = HtmlClass.of("text-white");
public static final HtmlClass BG_PRIMARY = HtmlClass.of("bg-primary");
public static final HtmlClass BG_SECONDARY = HtmlClass.of("bg-secondary");
public static final HtmlClass BG_SUCCESS = HtmlClass.of("bg-success");
public static final HtmlClass BG_DANGER = HtmlClass.of("bg-danger");
public static final HtmlClass BG_WARNING = HtmlClass.of("bg-warning");
public static final HtmlClass BG_INFO = HtmlClass.of("bg-info");
public static final HtmlClass BG_LIGHT = HtmlClass.of("bg-light");
public static final HtmlClass BG_DARK = HtmlClass.of("bg-dark");
public static final HtmlClass BG_WHITE = HtmlClass.of("bg-white");
public static final HtmlClass FONT_WEIGHT_BOLD = HtmlClass.of("font-weight-bold");
public static final HtmlClass FONT_WEIGHT_NORMAL = HtmlClass.of("font-weight-normal");
public static final HtmlClass FONT_ITALIC = HtmlClass.of("font-italic");
private Bootstrap4() {
// static class
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy