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:
@@ -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 */
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user