shipyard-framework 0.5.66 → 0.5.67

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
  SHA256:
3
- metadata.gz: 7385bdd1b30504d3021f2f2ff64c396f658df9e544e690bf972490d48b841c64
4
- data.tar.gz: a523952e1980259ea5a4c31a50eacc7c9aa7ce3d0e63a146f4ec36c2c5db040e
3
+ metadata.gz: ddcf3cadd7d4cedd8d14de425c312955faeabdaad056d94b7bcdc1df8bc70233
4
+ data.tar.gz: 6cbe1aff0160ccc55eaf4b86c9d8ff3eccc6cf892f092bb23e5e639620db220b
5
5
  SHA512:
6
- metadata.gz: 6402d598fbf839d3041d2dad3a0172eb19794686d6daae33d3db8bca44709283922f9e70411ba52464305fbd5477ed2f2069ec76928e73c1a450f5949827d24d
7
- data.tar.gz: 318e0e0eb33276703ed3577c777cccbe35d3b51ff1a1e5f53d8c293a621161abfe6ede8c9b573f03951919c68ae755409d29d7d3fab4366391125d62351ad177
6
+ metadata.gz: 82d4b472c9a5e2e542498bd12e290653ace3957035538de4739ccac37f6b7bd7fa67878ebfef6759748beb4acceae6c623b9def1b7a423637f8643a5f7a62bba
7
+ data.tar.gz: 8958a0261a81b8c5fa27ca45fce99c7a99a05492c30e6ae171a5c62e5bdef5a84599716bc19316b51c9dc40889365cde762eac623b78cf0d990a839d707978b1
@@ -11,6 +11,8 @@
11
11
  padding: 20px 30px
12
12
  line-height: 1.6
13
13
  +border-radius
14
+ overflow: hidden
15
+ overflow-x: auto
14
16
 
15
17
  &-inline
16
18
  +extend
@@ -15,3 +15,15 @@
15
15
 
16
16
  &-r
17
17
  border-radius: 0 $border-radius $border-radius 0
18
+
19
+ &-tl
20
+ border-radius: $border-radius 0 0 0
21
+
22
+ &-tr
23
+ border-radius: 0 $border-radius 0 0
24
+
25
+ &-bl
26
+ border-radius: 0 0 0 $border-radius
27
+
28
+ &-br
29
+ border-radius: 0 0 $border-radius 0
@@ -1,3 +1,3 @@
1
1
  module Shipyard
2
- VERSION = '0.5.66'
2
+ VERSION = '0.5.67'
3
3
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shipyard-framework (0.5.66)
4
+ shipyard-framework (0.5.67)
5
5
  actionview (~> 5.0)
6
6
  sprockets-es6 (~> 0.9.2)
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  title: Border-Radius Utilities
3
3
  description: Shipyard's border-radius utilities are useful for connecting components together.
4
- col_classes: col col-50 col-x1-0 margin-bottom-xs
4
+ col_classes: col col-50 col-x1-20 margin-bottom-xs
5
5
  box_classes: padding-top-xs padding-bottom-xs text-sm strong align-center bg-gray-light gray-dark
6
6
  directions:
7
7
  none: 0
@@ -9,6 +9,10 @@ directions:
9
9
  bottom: b
10
10
  left: l
11
11
  right: r
12
+ top_left: tl
13
+ top_right: tr
14
+ bottom_left: bl
15
+ bottom_right: br
12
16
  ---
13
17
 
14
18
  {% include page-heading.html page=page %}
@@ -24,7 +28,7 @@ directions:
24
28
  {% for direction in page.directions %}
25
29
  <div class="{{ page.col_classes }}">
26
30
  <div class="{{ page.box_classes }} box-secondary rds-{{ direction[1] }}" tooltip=".rds-{{ direction[1] }}">
27
- {{ direction[0] }}
31
+ {{ direction[0] | replace: '_', ' ' }}
28
32
  </div>
29
33
  </div>
30
34
  {% endfor %}
@@ -37,4 +41,8 @@ directions:
37
41
  <div class="rds-b"><!-- border-radius: bottom --></div>
38
42
  <div class="rds-l"><!-- border-radius: left --></div>
39
43
  <div class="rds-r"><!-- border-radius: right --></div>
44
+ <div class="rds-tl"><!-- border-radius: top left --></div>
45
+ <div class="rds-tr"><!-- border-radius: top right --></div>
46
+ <div class="rds-bl"><!-- border-radius: bottom left --></div>
47
+ <div class="rds-br"><!-- border-radius: bottom right --></div>
40
48
  ```
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipyard-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.66
4
+ version: 0.5.67
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codeship