shift-ui-kit 0.0.41 → 0.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6f462e9b80a154ac20207e542dbbafdf8908dac
4
- data.tar.gz: 4757b952275417d8b587f56823b118c18ce13568
3
+ metadata.gz: d4c90f220d7f20f68316c3ff278c4d89b0d74fda
4
+ data.tar.gz: a991d3650f36e7404129c3247db29999e464ce65
5
5
  SHA512:
6
- metadata.gz: d61a159afc2cd412dae10d4cddf50d84b0b07fc5708a184d4814b0c82e25ad6fe12705297ee5d7167bb86ba075f398aca8725a74656cd6fd426c880eeb1bef03
7
- data.tar.gz: e09a9b0e36a758b39654e48d0fa21be8fef46d784cd736371e94c627351376a03fa30bf7bdaf4d818c4718db255da7df6eb806430b53ca0e0d51ac262580bf61
6
+ metadata.gz: b5265b1cab5236b504f6774390c3172f32d453443d6712768b4e2988131aae2318a4b084aa976efd3fa12f1124e7f4c4d490e6dabaec2e7825b6e2252b464c2f
7
+ data.tar.gz: 976ee000a4d58cb1de9bac1a367e2b185634bd6189a28af435d3bbacf5335c05557c8b41fe9d58abe6b5b91ac0bb6f0a149dcb587d51dfdbff7357aeb0c16935
@@ -1,3 +1,4 @@
1
+ @import 'o-action-bar';
1
2
  @import 'o-breadcrumb';
2
3
  @import 'o-flash-message';
3
4
  @import 'o-grid';
@@ -0,0 +1,17 @@
1
+ .o-action-bar {
2
+ display: flex;
3
+ justify-content: space-between;
4
+ align-items: center;
5
+ text-align: center;
6
+ clear: both;
7
+
8
+ &__left-group {
9
+ flex-grow: 1;
10
+ text-align: left;
11
+ }
12
+
13
+ &__right-group {
14
+ flex-grow: 1;
15
+ text-align: right;
16
+ }
17
+ }
@@ -18,7 +18,6 @@
18
18
  @import 'c-tab-set';
19
19
  @import 'c-popup';
20
20
  @import 'c-title-bar';
21
- @import 'c-action-bar';
22
21
  @import 'c-loader';
23
22
  @import 'c-checkbox';
24
23
  @import 'c-flash-message';
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shift-ui-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.41
4
+ version: 0.0.42
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Townsend
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-30 00:00:00.000000000 Z
12
+ date: 2016-01-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -124,12 +124,12 @@ files:
124
124
  - assets/stylesheets/3-generic/_reset.scss
125
125
  - assets/stylesheets/4-elements/_index.scss
126
126
  - assets/stylesheets/5-objects/_index.scss
127
+ - assets/stylesheets/5-objects/_o-action-bar.scss
127
128
  - assets/stylesheets/5-objects/_o-breadcrumb.scss
128
129
  - assets/stylesheets/5-objects/_o-btn.scss
129
130
  - assets/stylesheets/5-objects/_o-flash-message.scss
130
131
  - assets/stylesheets/5-objects/_o-grid.scss
131
132
  - assets/stylesheets/5-objects/_o-password-strength-meter.scss
132
- - assets/stylesheets/6-components/_c-action-bar.scss
133
133
  - assets/stylesheets/6-components/_c-app-loading.scss
134
134
  - assets/stylesheets/6-components/_c-app.scss
135
135
  - assets/stylesheets/6-components/_c-btn-default.scss
@@ -1,22 +0,0 @@
1
- .c-action-bar {
2
- position: relative;
3
- text-align: center;
4
-
5
- &__left-group {
6
- position: absolute;
7
- top: 0;
8
- left: 0;
9
- text-align: left;
10
- }
11
-
12
- &__middle-group {
13
- display: inline-block;
14
- }
15
-
16
- &__right-group {
17
- top: 0;
18
- position: absolute;
19
- right: 0;
20
- text-align: right;
21
- }
22
- }