mui-sass 0.5.9 → 0.6.0

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
  SHA1:
3
- metadata.gz: 3c5069babaeacc1eb606951de729f525812220c8
4
- data.tar.gz: dec95aeec385c601b96f3705fe3e255d11aac31e
3
+ metadata.gz: f15b9a1fa1efa32c0e41fd7afbf1336ef50e1798
4
+ data.tar.gz: 3fc0508472fb1ca878e4b54286f74dd15b9dc9c6
5
5
  SHA512:
6
- metadata.gz: f89ca357058baa5d38f3383b5fa9b91b426350a57a25d3a5bf2aaa343499203099ea4f1aa09bb7a051fc595c64f430a12419a5d7d8c0fadbead6094485b873af
7
- data.tar.gz: 22d15bd712d1ce3ad818721455c87b8e92321d1fea994b5b27a45f6302fdd44bec86b651d62abe05e0a774c1e58f1180c83d69c525a01272dd80860ceb606304
6
+ metadata.gz: a632e35f027d90eea201310351faf54f79ea151bcc6bc21471513c3cb9c6d854eaf6d07ef07c7562b3e987f5cbe53e2fa3e75a6050fad3305237a035902774c6
7
+ data.tar.gz: a9d6187606fecbc19fd673a7ef2ca70c5f3472c824303f4c6a32b4a21fe7f4bcd98a1f83f1cd49851d9408ce41feae67b8a1a0b905661099a4a9a1f491b3ec75
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.6.0 (2016-06-27)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: MUI v0.6.0
6
+
1
7
  ## 0.5.9 (2016-05-19)
2
8
 
3
9
  - Update assets to match upstream version
@@ -1,5 +1,5 @@
1
1
  module Mui
2
2
  module Sass
3
- VERSION = '0.5.9'
3
+ VERSION = '0.6.0'
4
4
  end
5
5
  end
@@ -2,3 +2,4 @@
2
2
  @import "mixins/util";
3
3
  @import "mixins/buttons";
4
4
  @import "mixins/typography";
5
+ @import "mixins/forms";
@@ -69,6 +69,15 @@ $xFormLabelLineHeight: floor($mui-label-font-size * 1.25);
69
69
  opacity: 1; // iOS fix for unreadable disabled content
70
70
  }
71
71
  }
72
+
73
+ > label {
74
+ @include form-label();
75
+ }
76
+ }
77
+
78
+ .mui-select:focus > label,
79
+ .mui-select > select:focus ~ label {
80
+ color: $mui-input-border-color-focus;
72
81
  }
73
82
 
74
83
  .mui-select__menu {
@@ -17,22 +17,7 @@ $xFormLabelLineHeight: floor($mui-label-font-size * 1.25);
17
17
  position: relative;
18
18
 
19
19
  > label {
20
- // Positioning
21
- position: absolute;
22
- top: 0;
23
-
24
- // Display
25
- display: block;
26
- width: 100%;
27
-
28
- // Other
29
- color: $mui-label-font-color;
30
- font-size: $mui-label-font-size;
31
- font-weight: 400;
32
- line-height: $xFormLabelLineHeight;
33
- overflow-x: hidden;
34
- text-overflow: ellipsis;
35
- white-space: nowrap;
20
+ @include form-label();
36
21
  }
37
22
 
38
23
  > textarea {
@@ -0,0 +1,18 @@
1
+ @mixin form-label() {
2
+ // Positioning
3
+ position: absolute;
4
+ top: 0;
5
+
6
+ // Display
7
+ display: block;
8
+ width: 100%;
9
+
10
+ // Other
11
+ color: $mui-label-font-color;
12
+ font-size: $mui-label-font-size;
13
+ font-weight: 400;
14
+ line-height: $xFormLabelLineHeight;
15
+ overflow-x: hidden;
16
+ text-overflow: ellipsis;
17
+ white-space: nowrap;
18
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-19 00:00:00.000000000 Z
11
+ date: 2016-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -114,6 +114,7 @@ files:
114
114
  - vendor/assets/stylesheets/mui/_typography.scss
115
115
  - vendor/assets/stylesheets/mui/_variables.scss
116
116
  - vendor/assets/stylesheets/mui/mixins/_buttons.scss
117
+ - vendor/assets/stylesheets/mui/mixins/_forms.scss
117
118
  - vendor/assets/stylesheets/mui/mixins/_grid-framework.scss
118
119
  - vendor/assets/stylesheets/mui/mixins/_typography.scss
119
120
  - vendor/assets/stylesheets/mui/mixins/_util.scss