ethosstyles 0.1.6 → 0.1.7

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: 63006280f49289796c9daf34e00910632c3e49ffa42f210967a6797c638cfa7f
4
- data.tar.gz: 8ceae95b87a5f1cd78efa5d978827b071643c879e1df8a91e338c025b213d95c
3
+ metadata.gz: fce6d48c0b1e84d48868e7fc3acf162c690cbcdfe19c305e45358869f63a10f1
4
+ data.tar.gz: 353b3934e32adeb483750fb900998a293bd9687d5785db0633aba5646894a4aa
5
5
  SHA512:
6
- metadata.gz: 32d734714881739227fbea2712d8d0c6552e2508c235ee6b176c8731c3698c78768b70e4b706f86922e28a8c498d1963a2ffb6b1494acf76ceb12f51315f809c
7
- data.tar.gz: 12cad315d4548996a67aca0e592f2f12626c6a6b242805c799b09a6b8528aa45d2c905eff512266c5ca8f3492783d4f48d1a22db297fb31ac1e8f0edf6c62a30
6
+ metadata.gz: 9fdea4fc7b5152a5d023e5df70101e810df854ba8f8a9ec4c388e659430a0c1554769fe94486ff7158d942ef86f1c22e11615bf1f2c2b08096c3a835b969a772
7
+ data.tar.gz: 46ae3228d8549602f472c9641f69eebf47ca2a68fc01d99d74a6f3ecafc5f007759be99985772bc9465bde97f7edaa28e5e3d1361b7af547a83fbbd81b70fdcc
@@ -92,13 +92,22 @@ $list-padding-condensed: 10px;
92
92
  border-left: 0;
93
93
  }
94
94
 
95
- > .rf-list-item:first-child {
95
+ > .rf-list-item:last-child {
96
+ border-radius: 0;
97
+ border-bottom-width: 0;
98
+ }
99
+
100
+ > .rf-list-item:nth-last-child(2) {
96
101
  border-radius: 0;
97
102
  border-bottom-width: 0;
98
103
  }
99
104
 
100
105
  &.rf-list-group--partial + .rf-list-group--partial {
101
106
 
107
+ > .rf-list-item:first-child {
108
+ border-top-width: 1px;
109
+ }
110
+
102
111
  > .rf-list-item:last-child {
103
112
  border-bottom-left-radius: 0;
104
113
  border-bottom-right-radius: 0;
@@ -312,10 +321,10 @@ $list-padding-condensed: 10px;
312
321
  // HAS TIMESTAMP
313
322
 
314
323
  .rf-list-item--has-timestamp {
315
- display: flex;
316
- justify-content: space-between;
324
+ display: block;
317
325
 
318
326
  .rf-list-item__row:first-of-type {
327
+ display: flex;
319
328
  justify-content: space-between;
320
329
  }
321
330
 
@@ -1,5 +1,9 @@
1
1
  <h1>BUTTON</h1>
2
2
 
3
+ <?php
4
+ echo "Hello World";
5
+ ?>
6
+
3
7
  <section class="rf-section">
4
8
 
5
9
  <h2>BUTTON TYPES</h2>
@@ -219,6 +219,10 @@
219
219
  <section class="rf-section">
220
220
 
221
221
  <h2>List Items with Timestamps</h2>
222
+ <p>Notes:</p>
223
+ <ul>
224
+ <li>Timestamp element must be within a <code>rf-list-item__row</code></li>
225
+ </ul>
222
226
 
223
227
  <ul class="rf-list-group">
224
228
  <li class="rf-list-item rf-list-item--error rf-list-item--has-trigger rf-list-item--has-timestamp">
@@ -252,28 +256,35 @@
252
256
  </div>
253
257
  </li>
254
258
  <li class="rf-list-item rf-list-item--success rf-list-item--has-timestamp">
255
- <h3 class="rf-list-item__title">
256
- List Item with Title and Status and is a Trigger and Also Has a Timestamp and Even a <a href="#" class="rf-list-item__title__link">Link</a>
257
- </h3>
258
- <div class="rf-timestamp">2 days ago</div>
259
+ <div class="rf-list-item__row">
260
+ <h3 class="rf-list-item__title">
261
+ List Item with Title and Status and is a Trigger and Also Has a Timestamp and Even a <a href="#" class="rf-list-item__title__link">Link</a>
262
+ </h3>
263
+ <div class="rf-timestamp">2 days ago</div>
264
+ </div>
259
265
  </li>
260
266
  <li class="rf-list-item rf-list-item--success rf-list-item--has-timestamp">
261
- <h3 class="rf-list-item__title">
262
- List Item with Title and Status and a Timestamp
263
- </h3>
264
- <div class="rf-list-item__info">
265
- <div>This is some item info</div>
266
- <div>Additional item info</div>
267
+ <div class="rf-list-item__row">
268
+ <h3 class="rf-list-item__title">
269
+ List Item with Title and Status and a Timestamp
270
+ </h3>
271
+ <div class="rf-list-item__info">
272
+ <div>This is some item info</div>
273
+ <div>Additional item info</div>
274
+ </div>
275
+ <div class="rf-timestamp">2 days ago</div>
267
276
  </div>
268
- <div class="rf-timestamp">2 days ago</div>
269
277
  </li>
270
- <li class="rf-list-item rf-list-item--success rf-list-item--condensed">
271
- <h3 class="rf-list-item__title">
272
- List Item with Title and Status and a Timestamp that is Condensed
273
- </h3>
274
- <div class="rf-list-item__info">
275
- <div>This is some item info</div>
276
- <div>Additional item info</div>
278
+ <li class="rf-list-item rf-list-item--success rf-list-item--has-timestamp rf-list-item--condensed">
279
+ <div class="rf-list-item__row">
280
+ <h3 class="rf-list-item__title">
281
+ List Item with Title and Status and a Timestamp that is Condensed
282
+ </h3>
283
+ <div class="rf-list-item__info">
284
+ <div>This is some item info</div>
285
+ <div>Additional item info</div>
286
+ </div>
287
+ <div class="rf-timestamp">2 days ago</div>
277
288
  </div>
278
289
  </li>
279
290
  </ul>
@@ -8,9 +8,9 @@ Gem::Specification.new do |s|
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Ethos"]
10
10
  s.email = ["mabell@adobe.com"]
11
- s.homepage = "https://github.com/adobe-platform/ethosstyles"
12
- s.summary = "Ethos Styles"
13
- s.description = "Ethos Styles"
11
+ s.homepage = "https://git.corp.adobe.com/adobe-platform/stardust"
12
+ s.summary = "A design system for Ethos"
13
+ s.description = "A design system for Ethos"
14
14
 
15
15
  s.rubyforge_project = "ethosstyles"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module Ethosstyles
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ethosstyles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-11 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: Ethos Styles
69
+ description: A design system for Ethos
70
70
  email:
71
71
  - mabell@adobe.com
72
72
  executables: []
@@ -112,7 +112,7 @@ files:
112
112
  - lib/ethosstyles/engine.rb
113
113
  - lib/ethosstyles/generator.rb
114
114
  - lib/ethosstyles/version.rb
115
- homepage: https://github.com/adobe-platform/ethosstyles
115
+ homepage: https://git.corp.adobe.com/adobe-platform/stardust
116
116
  licenses: []
117
117
  metadata: {}
118
118
  post_install_message:
@@ -134,5 +134,5 @@ rubyforge_project: ethosstyles
134
134
  rubygems_version: 2.7.2
135
135
  signing_key:
136
136
  specification_version: 4
137
- summary: Ethos Styles
137
+ summary: A design system for Ethos
138
138
  test_files: []