euphoria 0.1.4.65 → 0.1.4.66
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5d3465a2a1562bb94e236fc645b270040584566
|
4
|
+
data.tar.gz: 66790a0b83d94ad1afe9b14aae7078fb7b95337e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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:
|
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:
|
12
|
-
border: 1px solid
|
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
|
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
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
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
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
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
|
-
|
43
|
-
|
44
|
-
|
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
|
-
|
48
|
-
|
60
|
+
border: 1px solid $input_focus_color
|
61
|
+
outline: 0
|
49
62
|
|
50
63
|
label, legend
|
51
|
-
|
52
|
-
|
53
|
-
|
64
|
+
display: block
|
65
|
+
margin-bottom: .5rem
|
66
|
+
font-weight: 600
|
54
67
|
|
55
68
|
fieldset
|
56
|
-
|
57
|
-
|
69
|
+
padding: 0
|
70
|
+
border-width: 0
|
58
71
|
|
59
72
|
input
|
60
|
-
|
61
|
-
|
73
|
+
&[type="checkbox"], &[type="radio"]
|
74
|
+
display: inline
|
62
75
|
|
63
76
|
label > .label-body
|
64
|
-
|
65
|
-
|
66
|
-
|
77
|
+
display: inline-block
|
78
|
+
margin-left: .5rem
|
79
|
+
font-weight: normal
|
data/lib/euphoria/version.rb
CHANGED