forked from CreativeIT/material-dashboard-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ef27be
commit 8004b97
Showing
20 changed files
with
874 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//@mixin colored-badge ($color) { | ||
// &[data-badge]:after { | ||
// background-color: $color; | ||
// } | ||
//} | ||
|
||
.badge--colored-green { | ||
@include colored-badge($color-green); | ||
} | ||
|
||
.badge--colored-red { | ||
@include colored-badge($color-red); | ||
} | ||
|
||
.badge--colored-teal { | ||
@include colored-badge($color-teal); | ||
} | ||
|
||
.badge--colored-light-blue { | ||
@include colored-badge($color-light-blue); | ||
} | ||
|
||
.badge--colored-purple { | ||
@include colored-badge($color-purple); | ||
} | ||
|
||
.badge--colored-orange { | ||
@include colored-badge($color-orange); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.mdl-chip { | ||
color: black; | ||
&__action { | ||
color: inherit; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.mdl-slider__container { | ||
margin: 0 -20px; | ||
|
||
} | ||
.slider--colored-green { | ||
@include colored-slider($color-green); | ||
} | ||
.slider--colored-red { | ||
@include colored-slider($color-red); | ||
} | ||
.slider--colored-purple { | ||
@include colored-slider($color-purple); | ||
} | ||
.slider--colored-teal { | ||
@include colored-slider($color-teal); | ||
} | ||
.slider--colored-light-blue { | ||
@include colored-slider($color-light-blue); | ||
} | ||
.slider--colored-orange { | ||
@include colored-slider($color-orange); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.mdl-tooltip { | ||
padding: $table-tooltip-vertical-padding $table-tooltip-horizontal-padding; | ||
border: none; | ||
font-weight: 400; | ||
} |
Oops, something went wrong.