Skip to content

Commit c36818c

Browse files
committed
Merge branch 'develop' of github.com:modularcode/modular-admin-html into develop
2 parents 1a31f93 + 018a008 commit c36818c

42 files changed

Lines changed: 570 additions & 450 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bower.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"nprogress": "~0.2.0",
1818
"quill": "~0.20.1",
1919
"responsive-bootstrap-toolkit": "~2.5.0",
20+
"Sortable": "~1.4.2",
2021
"tether": "~1.1.1",
2122
"tinycolor": "~1.2.1",
2223
"Watch.JS": "watch#*"
@@ -50,6 +51,12 @@
5051
"animate.css": {
5152
"main": "animate.css"
5253
},
54+
"Sortable":{
55+
"main": [
56+
"Sortable.js",
57+
"jquery.binding.js"
58+
]
59+
},
5360
"quill": {
5461
"main": [
5562
"dist/quill.js",
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/***********************************************
2+
* Animation Settings
3+
***********************************************/
4+
5+
function animate(options) {
6+
var animationName = "animated " + options.name;
7+
var animationEnd = "webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend";
8+
$(options.selector)
9+
.addClass(animationName)
10+
.one(animationEnd,
11+
function(){
12+
$(this).removeClass(animationName);
13+
}
14+
);
15+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.animated {
2+
animation-duration: .5s;
3+
animation-delay: .1s;
4+
}

src/_common/card/card.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
font-size: 14px;
8686
border-top-width: 2px;
8787
border-bottom: 1px solid $color-divider;
88+
text-decoration: none;
8889

8990
&.active {
9091
border-top-color: $color-primary;

src/_common/navigation/navigation.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ span a {
5959
.nav-item {
6060

6161
.nav-link {
62+
text-decoration: none;
63+
6264
&:hover {
6365
color: #ffffff;
6466
background-color: $color-primary;
@@ -88,6 +90,8 @@ span a {
8890
.nav-item {
8991

9092
.nav-link {
93+
text-decoration: none;
94+
9195
&:hover {
9296
color: $color-text;
9397
background-color: transparent;

src/_common/scrollbar/scrollbar.scss

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
/* Let's get this party started */
22
::-webkit-scrollbar {
3-
width: 6px;
4-
height: 6px;
3+
width: 7px;
4+
height: 7px;
55
}
66

77
/* Track */
88
::-webkit-scrollbar-track {
9-
-webkit-box-shadow: inset 0 0 6px #dddddd;
10-
-webkit-border-radius: 5px;
11-
border-radius: 5px;
9+
// -webkit-box-shadow: inset 0 0 6px #626d77;
10+
// background: #626d77;
11+
-webkit-border-radius: 0;
12+
border-radius: 0;
1213
}
1314

1415
/* Handle */
1516
::-webkit-scrollbar-thumb {
16-
-webkit-border-radius: 5px;
17-
border-radius: 5px;
18-
background: $color-primary;
19-
-webkit-box-shadow: inset 0 0 6px $color-primary-lighter;
17+
-webkit-border-radius: 0;
18+
border-radius: 0;
19+
background: darken($color-primary, 5%);
20+
// -webkit-box-shadow: inset 0 0 6px $color-primary;
2021
}
2122
::-webkit-scrollbar-thumb:window-inactive {
2223
background: $color-primary;

src/_main.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,13 @@ body {
2828
.color-primary {
2929
color: $color-primary;
3030
}
31+
32+
.chart {
33+
.color-primary {
34+
color: $chart-color-primary;
35+
}
36+
.color-secondary {
37+
color: $chart-color-secondary;
38+
}
39+
}
3140
}

src/_themes/orange-theme.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
$color-primary: #FE7A0E;
1+
$color-primary: lighten(#FE7A0E, 3%);
22
$dashboard-stat-icon-color: #BDBDBD;
33

44
$link-color: #969696;
55
$link-transition: initial;
66
$link-decoration: underline;
77

88
$link-hover-color: desaturate(darken($color-primary, 4%), 4%);
9-
$link-hover-decoration: underline;
9+
$link-hover-decoration: underline;
10+
11+
$chart-color-primary: lighten($color-primary, 10%);
12+
$chart-color-secondary: lighten($chart-color-primary, 20%);

src/_themes/purple-theme.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
$color-primary: #7867A7;
2-
$dashboard-stat-icon-color: #BDBDBD;
2+
$dashboard-stat-icon-color: #BDBDBD;
3+
4+
5+
$chart-color-primary: lighten($color-primary, 8%);
6+
$chart-color-secondary: lighten($chart-color-primary, 10%);

src/_themes/red-theme.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ $link-transition: initial;
55
$link-decoration: underline;
66

77
$link-hover-color: #E45252;
8-
$link-hover-decoration: underline;
8+
$link-hover-decoration: underline;
9+
10+
$chart-color-primary: #FF8585;
11+
$chart-color-secondary: #ccc;

0 commit comments

Comments
 (0)