euphoria 0.1.4.62 → 0.1.4.63

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: be791fd69b4ddbda655ef1bb688efc9a1d8f11c2
4
- data.tar.gz: 17cdfdee6c7a34a5fede7abe00b7851179aee13f
3
+ metadata.gz: 94e221cb4c6cb435cae31520f2655ca4562c3e25
4
+ data.tar.gz: f8da29b0061d427512796e56cda5360c9d94859b
5
5
  SHA512:
6
- metadata.gz: b2b515236484981a6fdafeaef8f7132dcdbeb6ea8b6b073032da2a8c99bb8e3bf5ef324a918eaf6b05a3350e0f873762ce0bb7b1bda55fadf5510f57fc7a4a26
7
- data.tar.gz: f7f69f7486fad2ab6b42e0a7f8f26efc3bd46427a0266043054a01f80f5f65118ede8309fdcc2ce9158fe91294fe5de6f0a8b4500e96015d44e13fbfdc509b69
6
+ metadata.gz: 72fb4fc659136581ecabb2658170e03976ad7fa7a30e781ca2c06094f9412faf19ecc9203352c93a4f4ce54427cc58f0a950e2f727cde8c4586e1cf83c74a40e
7
+ data.tar.gz: a29fabb8ef87dfcbea265e195b26b6acf9568e1260c541497db78275db7ffbc4780100951aaa5a77abd5e610308d3fd7e572ba0af8c48e849be26ed510769033
@@ -1,36 +1,60 @@
1
- $login_background: white
2
- $form_border_color: #ddd
3
- $sticky_label_color: black
4
- $sticky_label_background: #ccc
5
- $sticky_label_border: #ccc
6
- .form
7
- border: 1px solid $form_border_color
8
- .form-row
9
- width: 100%
10
- margin: 1% 0
11
- margin:auto
12
- input[type="radio"]
13
- display: inline
14
- input[type="email"], input[type="password"]
15
- +border-radius(.3)
16
- margin: 0 1%
17
- width: 98%
18
- border: 1px solid #ddd
19
-
20
- .login-form
21
- background: $login_background
22
- border: 1px solid $form_border_color
23
- margin: 1%
24
-
25
- input[type="checkbox"]
26
- display: none
27
- + label span
28
- display: inline-block
29
- width: 19px
30
- height: 19px
31
- margin: -1px 4px 0 0
32
- vertical-align: middle
33
- background: url(check_radio_sheet.png) left top no-repeat
34
- cursor: pointer
35
- &:checked + label span
36
- background: url(check_radio_sheet.png) -19px top no-repeat
1
+ input
2
+ &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
3
+ height: 38px
4
+ padding: 6px 10px
5
+ background-color: #fff
6
+ border: 1px solid #D1D1D1
7
+ border-radius: 4px
8
+ box-shadow: none
9
+ box-sizing: border-box
10
+
11
+ textarea, select
12
+ height: 38px
13
+ padding: 6px 10px
14
+ background-color: #fff
15
+ border: 1px solid #D1D1D1
16
+ border-radius: 4px
17
+ box-shadow: none
18
+ box-sizing: border-box
19
+
20
+
21
+ input
22
+ &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
23
+ -webkit-appearance: none
24
+ -moz-appearance: none
25
+ appearance: none
26
+
27
+ textarea
28
+ -webkit-appearance: none
29
+ -moz-appearance: none
30
+ appearance: none
31
+ min-height: 65px
32
+ padding-top: 6px
33
+ padding-bottom: 6px
34
+
35
+ input
36
+ &[type="email"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="text"]:focus, &[type="tel"]:focus, &[type="url"]:focus, &[type="password"]:focus
37
+ border: 1px solid #33C3F0
38
+ outline: 0
39
+
40
+ textarea:focus, select:focus
41
+ border: 1px solid #33C3F0
42
+ outline: 0
43
+
44
+ label, legend
45
+ display: block
46
+ margin-bottom: .5rem
47
+ font-weight: 600
48
+
49
+ fieldset
50
+ padding: 0
51
+ border-width: 0
52
+
53
+ input
54
+ &[type="checkbox"], &[type="radio"]
55
+ display: inline
56
+
57
+ label > .label-body
58
+ display: inline-block
59
+ margin-left: .5rem
60
+ font-weight: normal
@@ -56,9 +56,48 @@ input[type="password"]
56
56
  line-height: 1
57
57
  padding: 1%
58
58
 
59
+ input
60
+ &[type="checkbox"], &[type="radio"]
61
+ box-sizing: border-box
62
+ padding: 0
63
+ &[type="number"]
64
+ &::-webkit-inner-spin-button, &::-webkit-outer-spin-button
65
+ height: auto
66
+ &[type="search"]
67
+ -webkit-appearance: textfield
68
+ -moz-box-sizing: content-box
69
+ -webkit-box-sizing: content-box
70
+ box-sizing: content-box
71
+ &::-webkit-search-cancel-button, &::-webkit-search-decoration
72
+ -webkit-appearance: none
73
+
74
+ input[type="search"]::-webkit-search-cancel-button,
75
+ input[type="search"]::-webkit-search-decoration
76
+ -webkit-appearance: none
77
+
78
+
79
+ fieldset
80
+ border: 1px solid #c0c0c0
81
+ margin: 0 2px
82
+ padding: 0.35rem 0.625rem 0.75rem
59
83
 
60
84
  button,input,optgroup,select,textarea
61
85
  color: inherit
62
86
  font: inherit
63
87
  margin: 0
64
88
 
89
+ button, html input[type="button"]
90
+ -webkit-appearance: button
91
+ cursor: pointer
92
+
93
+ input
94
+ &[type="reset"], &[type="submit"]
95
+ -webkit-appearance: button
96
+ cursor: pointer
97
+
98
+ button[disabled], html input[disabled]
99
+ cursor: default
100
+
101
+ button::-moz-focus-inner, input::-moz-focus-inner
102
+ border: 0
103
+ padding: 0
@@ -1,4 +1,4 @@
1
1
  module Euphoria
2
- VERSION = "0.1.4.62"
2
+ VERSION = "0.1.4.63"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: euphoria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.62
4
+ version: 0.1.4.63
5
5
  platform: ruby
6
6
  authors:
7
7
  - paul brunache