curo-material-interface 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a63d5b140651a7c7957ad20267fd8f6ef9483b7
4
- data.tar.gz: 60d9977cbca35bde8fb9d10576b52d814f179ea2
3
+ metadata.gz: 9273680f368bf201ceb441bbd2b57773a9f7a983
4
+ data.tar.gz: d057d97799312f01c5516d626578015d7f5f6111
5
5
  SHA512:
6
- metadata.gz: 4059337e3617aded83a61170b4e5ab45a107e1ac343de46ad687efe2783c8dd5064e300293d05a00c500fbfe0d24ecfb1d3a7324bde27a10c95ff282dc9c53f6
7
- data.tar.gz: 9b40ac6c463dceee518a4d28fe53eb4bf7a4e7f8f346de6f6b785e1983c2c4eabf3bf7fff1f118c8332131a92a0a42f1fa998ec4fe688958ff5a5c404eb1cb3c
6
+ metadata.gz: 364b0bcff4358ff2097a1869b721c683bf51341cc31b39f429ef140902d086fea53feb3d55eefbc54cf841e5d5e3917b0189aa1d68d145feff46da098a004f26
7
+ data.tar.gz: add5fe92f3c67e573e306a8fd61f6361427ebfffedb83931e5a3ef29375583e833203e5538ae1b8efa95afd3c5d0778ccb581361420d62b23b4a03e47e18da4d
@@ -100,13 +100,14 @@ class CMI.FormComponents.Select
100
100
  Math.max(document.documentElement.clientHeight, window.innerHeight || 0)
101
101
 
102
102
  getViewportScrollY: ->
103
- window.scrollY
103
+ window.pageYOffset
104
104
 
105
105
  updateDropdownListPosition: ->
106
106
  offset = @getInput().offset()
107
107
  width = @getInput().width()
108
108
 
109
109
  # reset
110
+ @getDropdownList().removeClass 'cmi-select-list-scroll'
110
111
  @getDropdownList().css
111
112
  height: 'auto'
112
113
  top: 0
@@ -129,13 +130,14 @@ class CMI.FormComponents.Select
129
130
  pos.top = @getViewportScrollY()
130
131
 
131
132
  # fix if bottom is outside viewport
132
- if pos.top + dropdownHeight > @getDocumentHeight()
133
- pos.bottom = window.scrollY * -1
133
+ if pos.top + dropdownHeight > @getViewportScrollY() + @getViewportHeight()
134
+ pos.bottom = @getViewportScrollY() * -1
134
135
  pos.top = null if pos.top > @getViewportScrollY()
135
136
 
136
137
  # fix if top is outside viewport
137
138
  if pos.top == null && dropdownHeight > @getViewportHeight()
138
139
  pos.top = @getViewportScrollY()
140
+ @getDropdownList().addClass 'cmi-select-list-scroll'
139
141
 
140
142
  # set position
141
143
  pos.top = if pos.top == null then 'auto' else "#{pos.top}px"
@@ -219,7 +221,7 @@ class CMI.FormComponents.Select
219
221
  content = '&nbsp;' if content.length <= 0
220
222
  options.push "<li data-cmi-value='#{$(option).val()}'>#{content}</li>"
221
223
 
222
- dropdownList = $("<ul class='cmi-select-list'>#{options.join('')}</ul>")
224
+ dropdownList = $("<div class='cmi-select-list'><ul>#{options.join('')}</ul></div>")
223
225
 
224
226
  @domElement.data 'cmi-select-dropdown-list', dropdownList
225
227
  $('body').append dropdownList
@@ -17,16 +17,28 @@
17
17
  cursor: pointer
18
18
 
19
19
  .cmi-select-list
20
+ +box-sizing(border-box)
20
21
  +position(absolute, 0 auto auto 0)
21
22
  +cmi-box-shadow(0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12))
22
23
  display: none
23
- overflow: scroll
24
+ overflow: none
25
+ white-space: normal
24
26
  z-index: 800
25
- list-style: none
26
27
  margin: 16px 0 16px 0
27
28
  padding: 0
28
29
  background-color: #fff
29
30
  pointer-events: none
31
+ &.cmi-select-list-scroll
32
+ overflow: auto
33
+ overflow-y: scroll
34
+ ul
35
+ +box-sizing(border-box)
36
+ margin: 0
37
+ padding: 0
38
+ list-style: none
39
+ background-color: #fff
40
+ pointer-events: none
41
+ white-space: normal
30
42
  li
31
43
  +user-select(none)
32
44
  padding: 10px 15px
@@ -51,7 +63,7 @@
51
63
  .cmi-select-list.cmi-select-open
52
64
  display: block
53
65
  pointer-events: all
54
- li
66
+ ul, li
55
67
  cursor: pointer
56
68
  pointer-events: all
57
69
 
@@ -1,3 +1,3 @@
1
1
  module CuroMaterialInterface
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curo-material-interface
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Hillig