Created other scroll styles

This commit is contained in:
Vinicius Reif Biavatti
2019-09-11 19:58:36 -03:00
parent 4f56845a7a
commit a256bae66e
16 changed files with 909 additions and 753 deletions

BIN
dist/images/scroll-blue.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B

View File

Before

Width:  |  Height:  |  Size: 168 B

After

Width:  |  Height:  |  Size: 168 B

BIN
dist/images/scroll-green.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

BIN
dist/images/scroll-orange.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

BIN
dist/images/scroll-purple.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

BIN
dist/images/scroll-red.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

BIN
dist/images/scroll-white.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

BIN
dist/images/scroll-yellow.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

67
dist/tuicss.css vendored
View File

@@ -909,11 +909,12 @@ input[type=button] {
/* Responsive */
/* Scrool */
/* Grid */
/* Default */
::-webkit-scrollbar {
width: 10px; }
::-webkit-scrollbar-track {
background-image: url(images/scroll.png);
background-image: url(images/scroll-cyan.png);
background-repeat: repeat; }
::-webkit-scrollbar-thumb {
@@ -922,6 +923,70 @@ input[type=button] {
::-webkit-scrollbar-thumb:hover {
background-color: #00a8a8; }
/* Styles */
.tui-scroll-blue ::-webkit-scrollbar-track {
background-image: url(images/scroll-blue.png); }
.tui-scroll-blue ::-webkit-scrollbar-thumb {
background-color: #0000a8; }
.tui-scroll-blue ::-webkit-scrollbar-thumb:hover {
background-color: #0000a8; }
.tui-scroll-green ::-webkit-scrollbar-track {
background-image: url(images/scroll-green.png); }
.tui-scroll-green ::-webkit-scrollbar-thumb {
background-color: #00a800; }
.tui-scroll-green ::-webkit-scrollbar-thumb:hover {
background-color: #00a800; }
.tui-scroll-cyan ::-webkit-scrollbar-track {
background-image: url(images/scroll-cyan.png); }
.tui-scroll-cyan ::-webkit-scrollbar-thumb {
background-color: #00a8a8; }
.tui-scroll-cyan ::-webkit-scrollbar-thumb:hover {
background-color: #00a8a8; }
.tui-scroll-red ::-webkit-scrollbar-track {
background-image: url(images/scroll-red.png); }
.tui-scroll-red ::-webkit-scrollbar-thumb {
background-color: #a80000; }
.tui-scroll-red ::-webkit-scrollbar-thumb:hover {
background-color: #a80000; }
.tui-scroll-purple ::-webkit-scrollbar-track {
background-image: url(images/scroll-purple.png); }
.tui-scroll-purple ::-webkit-scrollbar-thumb {
background-color: #a800a8; }
.tui-scroll-purple ::-webkit-scrollbar-thumb:hover {
background-color: #a800a8; }
.tui-scroll-yellow ::-webkit-scrollbar-track {
background-image: url(images/scroll-yellow.png); }
.tui-scroll-yellow ::-webkit-scrollbar-thumb {
background-color: #a8a800; }
.tui-scroll-yellow ::-webkit-scrollbar-thumb:hover {
background-color: #a8a800; }
.tui-scroll-white ::-webkit-scrollbar-track {
background-image: url(images/scroll-white.png); }
.tui-scroll-white ::-webkit-scrollbar-thumb {
background-color: #a8a8a8; }
.tui-scroll-white ::-webkit-scrollbar-thumb:hover {
background-color: #a8a8a8; }
.tui-sidenav {
position: fixed;
top: 0px;

2
dist/tuicss.min.css vendored

File diff suppressed because one or more lines are too long