org.dominokit.domino.ui.carousel.CarouselStyles Maven / Gradle / Ivy
/*
* Copyright © 2019 Dominokit
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dominokit.domino.ui.carousel;
import org.dominokit.domino.ui.style.CssClass;
/** Default CSS classes for {@link org.dominokit.domino.ui.carousel.Carousel} */
public interface CarouselStyles {
/** Constant carousel
*/
CssClass carousel = () -> "dui-carousel";
/** Constant carousel_indicators
*/
CssClass carousel_indicators = () -> "dui-carousel-indicators";
/** Constant slide_indicator
*/
CssClass slide_indicator = () -> "dui-slide-indicator";
/** Constant carousel_inner
*/
CssClass carousel_inner = () -> "dui-carousel-inner";
/** Constant slide
*/
CssClass slide = () -> "dui-slide";
/** Constant slide_next
*/
CssClass slide_next = () -> "dui-slide-next";
/** Constant slide_prev
*/
CssClass slide_prev = () -> "dui-slide-prev";
/** Constant slide_right
*/
CssClass slide_right = () -> "dui-slide-right";
/** Constant slide_left
*/
CssClass slide_left = () -> "dui-slide-left";
/** Constant carousel_control
*/
CssClass carousel_control = () -> "dui-carousel-control";
/** Constant slide_caption
*/
CssClass slide_caption = () -> "dui-slide-caption";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy