Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/scss/material-kit/bootstrap/scss/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$prev-key: null;
$prev-num: null;
@each $key, $num in $map {
@if $prev-num == null {
@if $prev-num == null or unit($num) == "%" {
// Do nothing
} @else if not comparable($prev-num, $num) {
@warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
Expand Down
4 changes: 2 additions & 2 deletions assets/scss/material-kit/variables/_carousel.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.carousel{
&.carousel-full-navigation{
.left{
cursor: url("../../img/arrow-left.png"), url("../../img/arrow-left.cur"), default !important;
cursor: url("../../../img/arrow-left.png"), url("../../../img/arrow-left.cur"), default !important;
}
.right{
cursor: url("../../img/arrow-right.png"), url("../../img/arrow-right.cur"), default !important;
cursor: url("../../../img/arrow-right.png"), url("../../../img/arrow-right.cur"), default !important;
}
}
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "material-kit",
"name": "@chase439/material-kit",
"version": "2.0.7",
"description": "Material Kit, a Google Material Desgin. Coded by Creative Tim",
"main": "index.html",
"directories": {
"example": "root"
"doc": "docs",
"example": "examples"
},
"scripts": {
"open-app": "gulp open-app",
Expand All @@ -14,7 +15,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/creativetimofficial/material-kit.git"
"url": "git+ssh://git@github.com/chase439/material-kit.git"
},
"keywords": [
"material kit",
Expand Down