euphoria 0.1.4.65 → 0.1.4.66

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: 29cd256dcc7efa501ba4531724c1c3a0b0bb4c5e
4
- data.tar.gz: f93d84ef48d8921058196f55d12d953badb5d6e9
3
+ metadata.gz: d5d3465a2a1562bb94e236fc645b270040584566
4
+ data.tar.gz: 66790a0b83d94ad1afe9b14aae7078fb7b95337e
5
5
  SHA512:
6
- metadata.gz: 02b5004dfcb947a0be0c42a51c3bbfcdac31bfa41d5c84fa7e468e13a3cbdec2c760d8841769d1e8f55e9fd1e4d333c9493151cf1b4be1de22980d67a349376e
7
- data.tar.gz: 0018557a00fc23801d539bafe07738f5181437effc0c460809fe9e3125d13a75a021c9657c2b117f694ad8245538980c67bbae13fec8ab36aa9be8e105e3ddcd
6
+ metadata.gz: 2566b5339b5a8ca86c4dcbd08081ca783ce778b14dd20a6ace15e1241cde2d5dd4e81a1b89be770eabb65fb2a22480ab3b43b71fe0c3a771e0b693481f76c33a
7
+ data.tar.gz: 89353f951ce761249b870a6bc9f53fc3ee247fcb1c5b0e3be8f92e502c1389c5761b61456f7d26994945741f8f1543811187c495699ba5876ce67428de0c3639
@@ -15,8 +15,9 @@ $orange: #F5A623
15
15
  **==============================================================================
16
16
  .btn
17
17
  text-align: center
18
+ vertical-align: middle
18
19
  border: 1px solid #e5e6e7
19
- font-size: 1rem
20
+ font-size: .85rem
20
21
  padding: .4rem
21
22
  line-height: 1.375rem
22
23
  letter-spacing: .1rem
@@ -1,15 +1,28 @@
1
1
  $bg_color: white
2
+ $input_border_color: #D1D1D1
3
+ $input_focus_color: #33C3F0
4
+ $form_border_color: #CCC
2
5
 
3
6
  .form
7
+ &.border
8
+ border: 1px solid $form_border_color
9
+ background-color: $bg_color
10
+ .button-group
11
+ display: inline-block
12
+ &.no-space
13
+ float: left
14
+ &:after
15
+ display: table
16
+ clear: both
4
17
  background-color: $bg_color
5
18
  margin: 0 auto
6
-
19
+
7
20
  input
8
21
  &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
9
22
  height: 38px
10
23
  padding: 6px 10px
11
- background-color: #fff
12
- border: 1px solid #D1D1D1
24
+ background-color: $bg_color
25
+ border: 1px solid $input_border_color
13
26
  border-radius: 4px
14
27
  box-shadow: none
15
28
  box-sizing: border-box
@@ -18,49 +31,49 @@ $bg_color: white
18
31
  height: 38px
19
32
  padding: 6px 10px
20
33
  background-color: #fff
21
- border: 1px solid #D1D1D1
34
+ border: 1px solid $input_border_color
22
35
  border-radius: 4px
23
36
  box-shadow: none
24
37
  box-sizing: border-box
25
38
 
26
39
 
27
40
  input
28
- &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
29
- -webkit-appearance: none
30
- -moz-appearance: none
31
- appearance: none
41
+ &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
42
+ -webkit-appearance: none
43
+ -moz-appearance: none
44
+ appearance: none
32
45
 
33
46
  textarea
34
- -webkit-appearance: none
35
- -moz-appearance: none
36
- appearance: none
37
- min-height: 65px
38
- padding-top: 6px
39
- padding-bottom: 6px
47
+ -webkit-appearance: none
48
+ -moz-appearance: none
49
+ appearance: none
50
+ min-height: 65px
51
+ padding-top: 6px
52
+ padding-bottom: 6px
40
53
 
41
54
  input
42
- &[type="email"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="text"]:focus, &[type="tel"]:focus, &[type="url"]:focus, &[type="password"]:focus
43
- border: 1px solid #33C3F0
44
- outline: 0
55
+ &[type="email"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="text"]:focus, &[type="tel"]:focus, &[type="url"]:focus, &[type="password"]:focus
56
+ border: 1px solid $input_focus_color
57
+ outline: 0
45
58
 
46
59
  textarea:focus, select:focus
47
- border: 1px solid #33C3F0
48
- outline: 0
60
+ border: 1px solid $input_focus_color
61
+ outline: 0
49
62
 
50
63
  label, legend
51
- display: block
52
- margin-bottom: .5rem
53
- font-weight: 600
64
+ display: block
65
+ margin-bottom: .5rem
66
+ font-weight: 600
54
67
 
55
68
  fieldset
56
- padding: 0
57
- border-width: 0
69
+ padding: 0
70
+ border-width: 0
58
71
 
59
72
  input
60
- &[type="checkbox"], &[type="radio"]
61
- display: inline
73
+ &[type="checkbox"], &[type="radio"]
74
+ display: inline
62
75
 
63
76
  label > .label-body
64
- display: inline-block
65
- margin-left: .5rem
66
- font-weight: normal
77
+ display: inline-block
78
+ margin-left: .5rem
79
+ font-weight: normal
@@ -1,4 +1,4 @@
1
1
  module Euphoria
2
- VERSION = "0.1.4.65"
2
+ VERSION = "0.1.4.66"
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.65
4
+ version: 0.1.4.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - paul brunache