datetime_picker_rails 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 477dc04642207df336b8dbb533063c7c3cbe4cc6
4
- data.tar.gz: 6ecb4a1c5c1364db9af1675ae116be3d182b9a95
3
+ metadata.gz: d3120aee9d2a157679abef25b1e33fcb166c3747
4
+ data.tar.gz: 249ec33ac0ed8f75e28f9260937bbe158bdaaa02
5
5
  SHA512:
6
- metadata.gz: 79e6a9883e159a1fb37905daa0fc1e010b7ef549d621efb5a2bac9f3cb3a31b51630bf3b3a69422b5c09025a6b93db06dea14d62f300d9de636bf3766705a92b
7
- data.tar.gz: 58eeb00a936948db7802041da56efc125df29de694289125514ce3e9dc1ee54f544c589e165f642ea89289e01fb5fd36a30e1af1e465b02cf781e38c20fd7017
6
+ metadata.gz: 911d421775ba93efbd807f688eddff17bf40ab2a531dfe033502a41595bd8ecd05b2d24baa0046b5449fe3598f8264f748d01b409061c59dbb1dc78f4ff59304
7
+ data.tar.gz: 1b68acce79544034fc7a4b1c5f7c510617576ada4aa7d2c4ddeffa2c933820d33c3871170164e29620fafc019d1f914767211536d6fa468b0e082be0603c584c
@@ -23,5 +23,5 @@ tbody.collapse.in { display: table-row-group; }
23
23
  position: relative;
24
24
  height: 0;
25
25
  overflow: hidden;
26
- @include transition(height .35s ease);
26
+ transition: height .35s ease;
27
27
  }
@@ -20,7 +20,7 @@
20
20
  border: 1px solid $dropdown-fallback-border; // IE8 fallback
21
21
  border: 1px solid $dropdown-border;
22
22
  border-radius: $border-radius-base;
23
- @include box-shadow(0 6px 12px rgba(0,0,0,.175));
23
+ box-shadow: 0 6px 12px rgba(0,0,0,.175);
24
24
  background-clip: padding-box;
25
25
 
26
26
  // Aligns the dropdown menu to right
@@ -3,7 +3,6 @@
3
3
 
4
4
  // Utilities
5
5
  @import "mixins/reset-filter";
6
- @import "mixins/vendor-prefixes";
7
6
 
8
7
  // Components
9
8
  @import "mixins/table-row";
@@ -1,5 +1,5 @@
1
1
  module DateTimePicker
2
2
  module Rails
3
- VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datetime_picker_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grayson Wright
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-08 00:00:00.000000000 Z
11
+ date: 2016-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -77,7 +77,6 @@ files:
77
77
  - app/assets/stylesheets/datetime_picker/mixins/_nav-divider.scss
78
78
  - app/assets/stylesheets/datetime_picker/mixins/_reset-filter.scss
79
79
  - app/assets/stylesheets/datetime_picker/mixins/_table-row.scss
80
- - app/assets/stylesheets/datetime_picker/mixins/_vendor-prefixes.scss
81
80
  - lib/datetime_picker_rails.rb
82
81
  - lib/datetime_picker_rails/version.rb
83
82
  homepage: http://github.com/graysonwright/datetime_picker_rails
@@ -100,9 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
99
  version: '0'
101
100
  requirements: []
102
101
  rubyforge_project:
103
- rubygems_version: 2.4.1
102
+ rubygems_version: 2.5.1
104
103
  signing_key:
105
104
  specification_version: 4
106
105
  summary: Bootstrap3 bootstrap-datetimepicker"s JS + CSS for Rails 3.1+ asset pipeline.
107
106
  test_files: []
108
- has_rdoc:
@@ -1,14 +0,0 @@
1
- // Vendor Prefixes
2
- //
3
- // All vendor mixins are deprecated as of v3.2.0 due to the introduction of
4
- // Autoprefixer in our Gruntfile. They will be removed in v4.
5
-
6
- // Drop shadows
7
- //
8
- // Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
9
- // supported browsers that have box shadow capabilities now support it.
10
-
11
- @mixin box-shadow($shadow...) {
12
- -webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
13
- box-shadow: $shadow;
14
- }