dlegr250_material_design 0.4.86 → 0.4.87

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: 2654cd8175e083039a77ebbefb5746b2539e8f9a
4
- data.tar.gz: ce87df5e4aa89890c9f1f908faaf626c9009ffbe
3
+ metadata.gz: 6a90fec4d6705f2092228dab13e60659ce3b5b26
4
+ data.tar.gz: 6c04f74f71fcab4a6b949b2ea9c55cd9fb3e75fc
5
5
  SHA512:
6
- metadata.gz: a88cbc2e0294239ece687a240ef8a9ac2a012461a56d24eaa5c2fb38fb2930766e3728e4fc0417b03fe25db4a0eee4ee994188f6d4581d642990411953af71fb
7
- data.tar.gz: fef136cdeb88e58d62a2f888bf61326817fbd99a9ac56217b11550e96de1a72629d980eb6a718e41828622a13aba317ec383a53dfea39204cad8f6d7cfb027be
6
+ metadata.gz: f85d0c1cbaf8a9ff32bbce0d511e2de10ae5ea2811fb136bf8664f82938f4ae75ad3787a77b0d7c1ae7b22240cd0c9b071e236d3a10ffc096e6d4305726294fc
7
+ data.tar.gz: 20d445acdab0c303d7f1874127475ae325663b88d9aa0e3f03f5b130219742aae78cf51d2120ac6f1bb17e16a906b2d647092bbbd7123fada7d38b0a688c4588
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.4.86"
2
+ VERSION = "0.4.87"
3
3
  end
@@ -45,7 +45,6 @@
45
45
  cursor: default;
46
46
  max-height: 100%;
47
47
  max-width: 90%;
48
- // overflow-y: scroll; // For tall dialogs that go off-screen
49
48
  overflow: hidden;
50
49
  z-index: $dialog-depth;
51
50
  @include rounded-corners;
@@ -130,15 +129,15 @@
130
129
  //----------------------------------------------------------------------
131
130
 
132
131
  .dialog-content {
133
- max-height: calc(100vh - $appbar-height); // For dialog-header
134
- overflow: auto;
132
+ max-height: calc(100vh - #{$appbar-height}); // For dialog-header
133
+ overflow: scroll;
135
134
  padding: $spacing-normal;
136
135
  @include force-text-wrap()
137
136
  }
138
137
 
139
138
  @media (min-width: $small-width) {
140
139
  .dialog-content {
141
- max-height: calc(90vh - $appbar-height * 2); // For dialog-header and dialog-actions
140
+ max-height: calc(90vh - #{$appbar-height * 2}); // For dialog-header and dialog-actions
142
141
  }
143
142
  }
144
143
 
@@ -148,98 +147,9 @@
148
147
  .dialog-actions {
149
148
  height: $appbar-height;
150
149
  padding: 0 $spacing-normal;
151
- @include flex-parent-row();
152
- // padding: $spacing-normal;
153
- // padding-top: 0;
150
+ // @include flex-parent-row();
154
151
  }
155
152
 
156
153
  .dialog-actions-bordered {
157
154
  border-top: 1px solid color("divider");
158
- // padding-top: $spacing-normal;
159
- }
160
-
161
-
162
- // // Dialogs - base
163
- // //----------------------------------------------------------------------
164
- //
165
- // .dialog {
166
- // background: color("white");
167
- // cursor: default;
168
- // display: inline-block;
169
- // margin: auto;
170
- // max-width: 90%;
171
- // pointer-events: none;
172
- // position: relative;
173
- // visibility: hidden;
174
- // width: 500px; // max-width above caps this
175
- // will-change: scale, transparency;
176
- // z-index: $dialog-depth;
177
- // @include box-shadow(0 12px 15px 0 rgba(0,0,0,0.24));
178
- // @include rounded-corners;
179
- // @include transition(all 0.10s ease);
180
- // @include transform(scale(1.15));
181
- // @include transparency(0);
182
- //
183
- // &.visible {
184
- // pointer-events: auto;
185
- // visibility: visible;
186
- // @include transform(scale(1.0));
187
- // @include transparency(1);
188
- // @include transition(all 0.30s ease);
189
- // }
190
- // }
191
- //
192
- // // Dialogs - header
193
- // //----------------------------------------------------------------------
194
- //
195
- // .dialog-header {
196
- // @include list-item();
197
- // min-height: 0;
198
- // padding: $spacing-large;
199
- // padding-bottom: 20px;
200
- // }
201
- //
202
- // .dialog-header-icon {
203
- // @include list-item-icon();
204
- // }
205
- //
206
- // .dialog-header-primary,
207
- // .dialog-header-secondary {
208
- // box-sizing: border-box;
209
- // }
210
- //
211
- // .dialog-header-primary {
212
- // @include list-item-primary();
213
- // @include force-text-wrap();
214
- // font-size: $font-size-large;
215
- // font-weight: bold;
216
- // padding: 0;
217
- // }
218
- //
219
- // .dialog-header-primary-subtext {
220
- // @include list-item-primary-subtext();
221
- // }
222
- //
223
- // .dialog-header-secondary {
224
- // @include list-item-secondary();
225
- // }
226
- //
227
- // .dialog-header-secondary-actions {
228
- // @include list-item-secondary-actions();
229
- // }
230
- //
231
- //
232
- // // Dialogs - content
233
- // //----------------------------------------------------------------------
234
- //
235
- // .dialog-content {
236
- // padding: 0 $spacing-large $spacing-normal $spacing-large;
237
- // @include force-text-wrap()
238
- // }
239
- //
240
- // // Dialogs - actions
241
- // //----------------------------------------------------------------------
242
- //
243
- // .dialog-actions {
244
- // padding: $spacing-normal;
245
- // }
155
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dlegr250_material_design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.86
4
+ version: 0.4.87
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel LeGrand