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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddcf3cadd7d4cedd8d14de425c312955faeabdaad056d94b7bcdc1df8bc70233
|
4
|
+
data.tar.gz: 6cbe1aff0160ccc55eaf4b86c9d8ff3eccc6cf892f092bb23e5e639620db220b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82d4b472c9a5e2e542498bd12e290653ace3957035538de4739ccac37f6b7bd7fa67878ebfef6759748beb4acceae6c623b9def1b7a423637f8643a5f7a62bba
|
7
|
+
data.tar.gz: 8958a0261a81b8c5fa27ca45fce99c7a99a05492c30e6ae171a5c62e5bdef5a84599716bc19316b51c9dc40889365cde762eac623b78cf0d990a839d707978b1
|
@@ -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
|
data/styleguide/Gemfile.lock
CHANGED
@@ -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-
|
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
|
```
|