Removed general html thats it was used for tests; Changed the variable colors; Created variable to disable default scroll; Builded;

This commit is contained in:
vinicius.reif
2019-09-17 13:13:47 -03:00
parent 5d2c2d94b2
commit 9e65ef0f6f
6 changed files with 33 additions and 595 deletions

View File

@@ -1,18 +1,22 @@
@import '../variables.scss';
/* Default */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-image: $scroll-default-image;
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: $scroll-default-color;
}
::-webkit-scrollbar-thumb:hover {
background-color: $scroll-default-color;
@if $scroll-default-tui {
/* Default */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-image: $scroll-default-image;
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: $scroll-default-color;
}
::-webkit-scrollbar-thumb:hover {
background-color: $scroll-default-color;
}
}
/* Styles */

View File

@@ -9,8 +9,8 @@ $radio-on: '(•)';
$radio-off: '(\00a0)';
/* Theme */
$primary: rgb(255, 255, 255);
$secondary: rgb(0, 0, 168);
$primary: rgb(0, 0, 168);
$secondary: rgb(168, 168, 168);
$success: rgb(0, 168, 0);
$danger: rgb(168, 0, 0);
$warning: rgb(168, 168, 0);
@@ -31,6 +31,7 @@ $medium-and-down: "only screen and (max-width : #{$medium-screen})";
$medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})";
/* Scrool */
$scroll-default-tui: true;
$scroll-default-image: url(images/scroll-cyan.png);
$scroll-default-color: rgb(0, 168, 168);