All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.palexdev.materialfx.css.mfx-flowless-listview.css Maven / Gradle / Ivy

There is a newer version: 11.17.0
Show newest version
/*
 *     Copyright (C) 2021 Parisi Alessandro
 *     This file is part of MaterialFX (https://github.com/palexdev/MaterialFX).
 *
 *     MaterialFX is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     MaterialFX is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with MaterialFX.  If not, see .
 */

.mfx-list-view {
    -mfx-track-color: rgb(230, 230, 230);
    -mfx-thumb-color: rgb(137, 137, 137);
    -mfx-thumb-hover-color: rgb(89, 88, 91);
}

/* Remove JavaFX crap */
.scroll-bar,
.scroll-bar .decrement-arrow,
.scroll-bar .increment-arrow {
    -fx-pref-width: 0;
    -fx-pref-height: 0;
}


.scroll-bar:horizontal .increment-button,
.scroll-bar:horizontal .decrement-button {
    -fx-background-color: transparent;
    -fx-background-radius: 0.0em;
    -fx-padding: 0.0 0.0 10.0 0.0;
}

.scroll-bar:vertical .increment-button,
.scroll-bar:vertical .decrement-button {
    -fx-background-color: transparent;
    -fx-background-radius: 0.0em;
    -fx-padding: 0.0 10.0 0.0 0.0;

}

.scroll-bar .increment-arrow,
.scroll-bar .decrement-arrow {
    -fx-shape: " ";
    -fx-padding: 0.15em 0.0;
}

.scroll-bar:horizontal .increment-arrow,
.scroll-bar:horizontal .decrement-arrow {
    -fx-shape: " ";
    -fx-padding: 0.0 0.05em;
}

.scroll-bar:vertical .increment-arrow,
.scroll-bar:vertical .decrement-arrow {
    -fx-shape: " ";
    -fx-padding: 0.0 0.05em;
}

/* Customize ScrollBars */
.scroll-bar:horizontal .track {
    -fx-background-color: -mfx-track-color;
    -fx-border-color: transparent;
    -fx-background-radius: 2.0em;
    -fx-border-radius: 2.0em;
}

.scroll-bar:vertical .track {
    -fx-background-color: -mfx-track-color;
    -fx-border-color: transparent;
    -fx-background-radius: 2.0em;
    -fx-border-radius: 2.0em;
}

.scroll-bar .decrement-arrow,
.scroll-bar .increment-arrow {
    -fx-pref-width: 0;
    -fx-pref-height: 0;
}

.scroll-bar {
    -fx-background-color: transparent;
    -fx-pref-width: 12;
    -fx-pref-height: 12;
    -fx-padding: 5 0.5 5 0.5;
}

.scroll-bar:horizontal .thumb,
.scroll-bar:vertical .thumb {
    -fx-background-color: -mfx-thumb-color;
    -fx-background-insets: 2.0, 0.0, 0.0;
    -fx-background-radius: 2.0em;
}

.scroll-bar:horizontal .thumb:hover,
.scroll-bar:vertical .thumb:hover {
    -fx-background-color: -mfx-thumb-hover-color;
    -fx-background-insets: 1.5, 0.0, 0.0;
    -fx-background-radius: 2.0em;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy