Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeMidnight
languagecss
titleExample CSS
linenumberstrue
collapsetrue
/*=============================================
 * SCROLLBARS
 *=============================================*/
.scroll-bar {
    	-fx-background-color: transparent;
    	-fx-opacity: 0.5;
}

.scroll-bar .track-background, 
.scroll-bar .track {
    	-fx-background-color: transparent;
}

.scroll-bar .thumb {
    	-fx-background-radius: 2px;
    	-fx-background-color: -col-primary-trans;
}

.scroll-bar .increment-button, 
.scroll-bar .decrement-button {
    	-fx-background-color: transparent;
    	-fx-padding: 0;
}

.scroll-bar:horizontal .increment-arrow, 
.scroll-bar:horizontal .decrement-arrow {
    	-fx-background-color: transparent;
    
    	/* Overall scrollbar height is set by the button's padding */
    	-fx-padding: 15px 0 0 0;
}

...