anypresence-icons 0.0.9 → 0.1.0

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: 68379ee2645c513fe409b4803ece4254054189a9
4
- data.tar.gz: 39c1ef3a6730a0552b1214b6a33c72810af8419e
3
+ metadata.gz: 29a6f9930226516dd97f52388c983f519e32bcc7
4
+ data.tar.gz: 4c87357c294679419b196919d21ab7a5fcb0d315
5
5
  SHA512:
6
- metadata.gz: d2933dd2fe804472101749d89c2835e4af63d0b8901b4d59be77834216d009ee9c109edf1ee627abf6f2f2a0dce17eb786e8a49e046a747fafc5ab875b48a6e9
7
- data.tar.gz: 33f630d9c761bc5e8c9380283ffde03fe462d0a23c076e67ec8e12a8ac72491c9d2e7df1f81636bec7a318ebe110f44f40857765a76b6f129c7df755e2594edf
6
+ metadata.gz: 3fd467266dad2cfa0917b2a1ef4e78b8e0cd2b0f0ccb35a034dd7f220b91d97a2ff7d47bb0a73e0a98f9ee6eec72ff224980593648ef6d75e7f9cec1b654317e
7
+ data.tar.gz: 41be4ff241dd0f1e749afb6cf76326781749d5becc297233257ef9227e531ab9a03686d455b1d31d6c887087e6f9db7ba3b0a4a626fe35d297facf0778b52087
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_dependency "railties", ">= 3.2"
21
-
21
+
22
22
  spec.add_development_dependency "bundler", "~> 1.5"
23
23
  spec.add_development_dependency "rake"
24
24
  spec.add_development_dependency "sass-rails", ">= 4.0.1"
@@ -1,10 +1,12 @@
1
1
  @import "icons-28/*.png"
2
2
  @import "icons-56/*.png"
3
3
  @import "icons-96/*.png"
4
+ @import "icons-wide-96/*.png"
4
5
 
5
6
  +all-icons-28-sprites
6
7
  +all-icons-56-sprites
7
8
  +all-icons-96-sprites
9
+ +all-icons-wide-96-sprites
8
10
 
9
11
  .platform-icon-28
10
12
  display: inline-block
@@ -19,6 +21,12 @@
19
21
  width: 96px
20
22
  height: 96px
21
23
 
24
+ .platform-icon-wide-96
25
+ display: inline-block
26
+ width: 800px
27
+ height: 96px
28
+
29
+
22
30
  [class*=-icon-28]
23
31
  @extend .platform-icon-28
24
32
  [class*=-icon-56]
@@ -26,6 +34,9 @@
26
34
  [class*=-icon-96]
27
35
  @extend .platform-icon-96
28
36
 
37
+ [class*=-icon-wide-96]
38
+ @extend .platform-icon-wide-96
39
+
29
40
  .platform-icon-text-28
30
41
  display: inline-block
31
42
  padding: 5px 0 0 5px
@@ -36,6 +47,10 @@
36
47
  display: inline-block
37
48
  padding: 15px 0 0 20px
38
49
 
50
+ .platform-icon-wide-text-96
51
+ display: inline-block
52
+ padding: 15px 0 0 20px
53
+
39
54
  [class*=-icon-28]
40
55
  @extend .platform-icon-28
41
56
  [class*=-icon-56]
@@ -43,6 +58,9 @@
43
58
  [class*=-icon-96]
44
59
  @extend .platform-icon-96
45
60
 
61
+ [class*=-icon-wide-96]
62
+ @extend .platform-icon-wide-96
63
+
46
64
  .platform-icon-28-arrow-right
47
65
  +icons-28-sprite(arrow-rounded-right)
48
66
 
@@ -248,6 +266,13 @@
248
266
  .data-source-icon-96-ibmdb2
249
267
  +icons-96-sprite(database-ibmdb2)
250
268
 
269
+ .data-source-icon-wide-96-http
270
+ +icons-wide-96-sprite(datasource-http)
271
+ .data-source-icon-wide-96-simpleobjectaccessprotocol
272
+ +icons-wide-96-sprite(datasource-simpleobjectaccessprotocol)
273
+ .data-source-icon-wide-96-d2s-http
274
+ +icons-wide-96-sprite(datasource-d2s-http)
275
+
251
276
  .extension-icon-28-push_notifications
252
277
  +icons-28-sprite(phone-notification)
253
278
  .extension-icon-28-sms_notifier
@@ -409,6 +434,11 @@
409
434
  .authentication-strategy-icon-96-saml
410
435
  +icons-96-sprite(auth-saml)
411
436
 
437
+ .authentication-strategy-icon-wide-96-ldap
438
+ +icons-wide-96-sprite(auth-ldap)
439
+ .authentication-strategy-icon-wide-96-oauth2
440
+ +icons-wide-96-sprite(auth-oauth2)
441
+
412
442
  .repository-icon-28-archive
413
443
  +icons-28-sprite(archive)
414
444
  .repository-icon-28-github
@@ -1,7 +1,11 @@
1
1
  module IconHelper
2
2
  def platform_icon(name, type='platform', size=56, options={})
3
3
  options[:class] ||= ''
4
- options[:class] = "#{type}-icon-#{size}-#{name} #{options[:class]}"
4
+ if options[:wide]
5
+ options[:class] = "#{type}-icon-wide-#{size}-#{name} #{options[:class]}"
6
+ else
7
+ options[:class] = "#{type}-icon-#{size}-#{name} #{options[:class]}"
8
+ end
5
9
  content_tag :span, '', options
6
10
  end
7
11
 
@@ -1,5 +1,5 @@
1
1
  module AnyPresence
2
2
  module Icons
3
- VERSION = "0.0.9"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anypresence-icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Randall Morey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-16 00:00:00.000000000 Z
11
+ date: 2015-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -365,7 +365,12 @@ files:
365
365
  - app/assets/images/icons-96/sql-server.png
366
366
  - app/assets/images/icons-96/twitter-logomark.png
367
367
  - app/assets/images/icons-96/wrench.png
368
- - app/assets/stylesheets/anypresence-icons.css.sass
368
+ - app/assets/images/icons-wide-96/auth-ldap.png
369
+ - app/assets/images/icons-wide-96/auth-oauth2.png
370
+ - app/assets/images/icons-wide-96/datasource-d2s-http.png
371
+ - app/assets/images/icons-wide-96/datasource-http.png
372
+ - app/assets/images/icons-wide-96/datasource-simpleobjectaccessprotocol.png
373
+ - app/assets/stylesheets/anypresence-icons.sass
369
374
  - app/helpers/icon_helper.rb
370
375
  - lib/anypresence/icons.rb
371
376
  - lib/anypresence/icons/version.rb