boarding_pass 0.1.3 → 0.1.4

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.
@@ -8,4 +8,3 @@
8
8
  @import "boarding_pass/lists";
9
9
  @import "boarding_pass/forms";
10
10
  @import "boarding_pass/tables";
11
- @import "boarding_pass/buttons";
@@ -1,3 +1,3 @@
1
1
  module BoardingPass
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boarding_pass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-01-17 00:00:00.000000000 Z
13
+ date: 2013-01-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -74,7 +74,6 @@ files:
74
74
  - README.md
75
75
  - Rakefile
76
76
  - app/assets/stylesheets/_boarding_pass.scss
77
- - app/assets/stylesheets/boarding_pass/_buttons.scss
78
77
  - app/assets/stylesheets/boarding_pass/_defaults.scss
79
78
  - app/assets/stylesheets/boarding_pass/_forms.scss
80
79
  - app/assets/stylesheets/boarding_pass/_lists.scss
@@ -1,156 +0,0 @@
1
- // Buttons
2
-
3
- .btn {
4
- position: relative;
5
- cursor: pointer;
6
- outline: none;
7
- display: inline-block;
8
- text-align: center;
9
- text-decoration: none;
10
- font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
11
- line-height: 1;
12
- font-size: 0.75em;
13
- font-weight: normal;
14
- padding: 0.375em 1em;
15
- border-radius: 0.25em;
16
- background-color: #f3f3f3;
17
- background-image: -moz-linear-gradient(top, #ffffff, #e1e1e1);
18
- background-image: -ms-linear-gradient(top, #ffffff, #e1e1e1);
19
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e1e1e1));
20
- background-image: -webkit-linear-gradient(top, #ffffff, #e1e1e1);
21
- background-image: -o-linear-gradient(top, #ffffff, #e1e1e1);
22
- background-image: linear-gradient(top, #ffffff, #e1e1e1);
23
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e1e1e1', GradientType=0);
24
- border: 1px solid #dadada;
25
- border-left: 1px solid #d2d2d2;
26
- border-right: 1px solid #d2d2d2;
27
- border-bottom-color: #a9a9a9;
28
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
29
- text-shadow: 0 1px 0px #ffffff;
30
- }
31
-
32
- .btn,
33
- .btn:hover {
34
- color: #000;
35
- }
36
-
37
- .btn:hover {
38
- filter: none;
39
- background: none;
40
- background: #eee;
41
- text-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
42
- text-decoration: none;
43
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
44
- }
45
-
46
- // Active
47
- .btn-big.btn-active,
48
- .btn-big.btn-active:hover {
49
- padding: 0.75em 1.5em;
50
- }
51
-
52
- .btn-active,
53
- .btn-active:hover {
54
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) inset;
55
- color: #555;
56
- border: none;
57
- background: none;
58
- filter: none;
59
- background-color: #ddd;
60
- text-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
61
- padding: 0.5em 2em 0.5em 2em;
62
- }
63
-
64
- // Small
65
- .btn-small {
66
- padding: 4px 12px;
67
- font-size: 11px;
68
- }
69
-
70
- .btn-small.btn-active {
71
- padding: 5px 12px;
72
- }
73
-
74
- // Big
75
- .btn-big {
76
- padding: 0.625em 1.5em;
77
- font-size: 1.25em;
78
- }
79
-
80
- // Square
81
- .btn-square {
82
- -moz-border-radius: 0;
83
- -webkit-border-radius: 0;
84
- border-radius: 0;
85
- }
86
-
87
- // Round
88
- .btn-round {
89
- border-radius: 1em;
90
- border-radius: 0 \0; // ie9 hack
91
- }
92
-
93
- // Full
94
- .btn-full {
95
- width: 100%;
96
- }
97
-
98
- // Group
99
- .btn-group {
100
- display: inline-block;
101
- margin-right: 0.125em;
102
- vertical-align: bottom;
103
- }
104
-
105
- .btn-group:after {
106
- content: ".";
107
- display: block;
108
- height: 0;
109
- clear: both;
110
- visibility: hidden;
111
- }
112
-
113
- .btn-group > .btn,
114
- .btn-group > input {
115
- float: left;
116
- -moz-border-radius: 0;
117
- -webkit-border-radius: 0;
118
- border-radius: 0;
119
- margin-left: -0.0625em;
120
- }
121
-
122
- .btn-group > .btn:first-child {
123
- border-radius: 0.25em 0 0 0.25em;
124
- }
125
-
126
- .btn-group > .btn:last-child {
127
- border-radius: 0 0.25em 0.25em 0;
128
- }
129
-
130
- .btn-group > .btn.btn-round:first-child,
131
- .btn-group > .input-search:first-child {
132
- border-radius: 1em 0 0 1em;
133
- }
134
-
135
- .btn-group > .btn.btn-round:last-child,
136
- .btn-group > .input-search:last-child {
137
- border-radius: 0 1em 1em 0;
138
- }
139
-
140
- // Append
141
- .btn-append {
142
- margin-left: -0.125em;
143
- border-radius: 0 0.25em 0.25em 0;
144
- }
145
-
146
- // Disabled
147
- .btn.disabled,
148
- .btn[disabled] {
149
- border: none;
150
- filter: none;
151
- background: none;
152
- background-color: #e9e9e9;
153
- opacity: 0.6;
154
- cursor: default;
155
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
156
- }