atlas_assets 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Gemfile.lock +1 -1
- data/docs/_posts/2013-05-17-lists.md +3 -3
- data/lib/assets/stylesheets/atlas_assets/_lists.scss +2 -2
- data/lib/atlas_assets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWUwNTg3MGEyZjk5OWI1NWJmODg0MWE4NmVkNjFkNmUyNjFmZmUxOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTViMTg1NjFmODk0ZjQ1YTk2ZjQwMTMwYmExNWM1NmI2ODZjOTlkZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTNiYTA2ZDNmNzdkYzQxOWM0ODI3NGZkNDIzNDUzODZkMzk1Y2M5NWQ3NGEx
|
10
|
+
NTQxMDhhY2ZkMTQwMjE2MjE1ZTZmZTkwMTM0NDgwY2RiODRiN2YwNjVlZGY2
|
11
|
+
Y2MxMzcwYjQ0NmY1MTNiYTcyMmZjZjUyZDg3NmViY2Y1Y2U2ZmY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2M5Y2E5YjdhNmNlMDJmOTg1ODg5ZjYyOGNiY2Y1ZTUwYjk0NGU3NWIwYWNl
|
14
|
+
YzUxZjI4NDcwMTRhYjZjMjhlN2Q5NGZmMGQyZDViZmZkMDQ1MTY4MTY4YjE0
|
15
|
+
OTU1ZDBmODBjNjY3N2VhYzgyZjRkN2YyN2VkYjQyNjdlNDI3ZGM=
|
data/Gemfile.lock
CHANGED
@@ -163,11 +163,11 @@ For those times when you want a link to occupy the entire list-item tag.
|
|
163
163
|
Linked Lists + Clickable Icons
|
164
164
|
----
|
165
165
|
|
166
|
-
For those times when you want a link to occupy the entire list-item tag,
|
166
|
+
For those times when you want a link to occupy the entire list-item tag, **except** an icon to the right, to function as a button. Also note a `div` can be used instead of an `a`, for the case of a disabled link.
|
167
167
|
|
168
168
|
<ul class="list">
|
169
169
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 1</a><i class="icon-trash icn-round list-icon"></i></li>
|
170
|
-
<li class="list-item has-icon-outside-link"><
|
170
|
+
<li class="list-item has-icon-outside-link"><div class='list-padding' href="#">Item 2</div><i class="icon-trash icn-round list-icon"></i></li>
|
171
171
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 3</a><i class="icon-trash icn-round list-icon"></i></li>
|
172
172
|
<li class="list-item"><a class='list-padding' href="#">Item 4<i class="icon-angle-right list-icon"></i></a></li>
|
173
173
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 5</a><i class="icon-trash icn-round list-icon"></i></li>
|
@@ -177,7 +177,7 @@ For those times when you want a link to occupy the entire list-item tag, *except
|
|
177
177
|
~~~html
|
178
178
|
<ul class="list">
|
179
179
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 1</a><i class="icon-trash icn-round list-icon"></i></li>
|
180
|
-
<li class="list-item has-icon-outside-link"><
|
180
|
+
<li class="list-item has-icon-outside-link"><div class='list-padding' href="#">Item 2</div><i class="icon-trash icn-round list-icon"></i></li>
|
181
181
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 3</a><i class="icon-trash icn-round list-icon"></i></li>
|
182
182
|
<li class="list-item"><a class='list-padding' href="#">Item 4<i class="icon-angle-right list-icon"></i></a></li>
|
183
183
|
<li class="list-item has-icon-outside-link"><a class='list-padding' href="#">Item 5</a><i class="icon-trash icn-round list-icon"></i></li>
|
@@ -81,7 +81,7 @@ _________________________________________________________________ */
|
|
81
81
|
_________________________________________________________________ */
|
82
82
|
.list .has-icon-outside-link {
|
83
83
|
padding-right: 8px;
|
84
|
-
a.list-padding {
|
84
|
+
a.list-padding, div.list-padding {
|
85
85
|
width: 90%; // works till about 550px
|
86
86
|
display: inline-block;
|
87
87
|
}
|
@@ -96,7 +96,7 @@ _________________________________________________________________ */
|
|
96
96
|
|
97
97
|
// for lists with width smaller than 550px
|
98
98
|
.list .has-icon-outside-link.skinny {
|
99
|
-
a.list-padding {
|
99
|
+
a.list-padding, div.list-padding {
|
100
100
|
width: 70%;
|
101
101
|
}
|
102
102
|
}
|
data/lib/atlas_assets/version.rb
CHANGED