Skip to content

Commit c3e3969

Browse files
author
Artur Babagulyyev
committed
fix bootstrap references
1 parent 7de05f8 commit c3e3969

File tree

8 files changed

+25
-10
lines changed

8 files changed

+25
-10
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.16
1+
0.9.17

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-sortable",
3-
"version": "0.9.16",
3+
"version": "0.9.17",
44
"homepage": "http://johnny.github.io/jquery-sortable/",
55
"authors": [
66
"Jonas von Andrian"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-sortable",
3-
"version": "0.9.16",
3+
"version": "0.9.17",
44
"description": "jquery plugin for sortable, nestable lists",
55
"main": "./source/js/jquery-sortable.js",
66
"scripts": {

sortable.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"drag",
1010
"drop"
1111
],
12-
"version": "0.9.16",
12+
"version": "0.9.17",
1313
"author": {
1414
"name": "Jonas von Andrian"
1515
},

source/css/_base.sass

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
// @import bootstrap
2+
$linkColor: blue
3+
$grayLighter: gray
4+
$grayLight: gray
5+
$grayDark: gray

source/css/application.css.sass

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,22 @@ ol
3333
list-style-type: none
3434
i.icon-move
3535
cursor: pointer
36+
li.highlight
37+
background: $grayDark
38+
color: $grayLight
3639

3740
ol.nested_with_switch, ol.nested_with_switch ol
41+
border: 1px solid $grayLighter
3842
&.active
43+
border: 1px solid $grayDark
3944

4045
ol.nested_with_switch, ol.simple_with_animation, ol.serialization, ol.default
4146
li
4247
cursor: pointer
4348

49+
ol.simple_with_animation
50+
border: 1px solid $grayLight
51+
4452
.switch-container
4553
display: block
4654
margin-left: auto

source/css/jquery-sortable.css.sass

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ ol.vertical
1515
margin: 5px
1616
padding: 5px
1717
border: 1px solid #CCC
18+
color: $linkColor
19+
background: $grayLighter
1820
li.placeholder
1921
position: relative
2022
margin: 0
@@ -29,4 +31,5 @@ ol.vertical
2931
left: -5px
3032
top: -4px
3133
border: 5px solid transparent
34+
border-left-color: $error
3235
border-right: none

source/js/application.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
//= require "vendor/jquery"
2-
//= require "vendor/jquery.color"
3-
//= require "vendor/bootstrap-switch"
4-
//= require "vendor/bootstrap-scrollspy"
5-
//= require "vendor/bootstrap-dropdown"
6-
//= require "vendor/bootstrap-button"
1+
//= require "./vendor/jquery"
2+
//= require "./vendor/jquery.color"
3+
//= require "./vendor/bootstrap-switch"
4+
//= require "./vendor/bootstrap-scrollspy"
5+
//= require "./vendor/bootstrap-dropdown"
6+
//= require "./vendor/bootstrap-button"
77
//= require "jquery-sortable"
88
//= require_directory "./examples/"
99

0 commit comments

Comments
 (0)