semantic-ui-sass 0.8.5.0 → 0.8.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/modal.js +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +16 -2
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60de3a4ee4987fe38e2c24d130ffe804a4513c0a
|
4
|
+
data.tar.gz: 00509f64a8978e7771d7c68c72999bf881c51261
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14373f419088441640c4084becd59b0a8a9814b895f2db5fdfb698878517e1e5cc4964945a148b82b83961179081c4612c0483b69b3458f8a8d4205d61b0e727
|
7
|
+
data.tar.gz: 06e56e05ee084cf246b678e001b21a4aec502e57b1c2e06ca66eb513cc475cdbc980602d6f307a77c1b778ba30a88fff6cbb4c7405ad0041983fbb63b6e20ae1
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -229,6 +229,7 @@ $.fn.modal = function(parameters) {
|
|
229
229
|
module.debug('Showing modal');
|
230
230
|
module.cacheSizes();
|
231
231
|
module.set.position();
|
232
|
+
module.set.type();
|
232
233
|
|
233
234
|
if( $otherModals.filter(':visible').size() > 0 ) {
|
234
235
|
module.debug('Other modals visible, queueing show animation');
|
@@ -421,7 +422,6 @@ $.fn.modal = function(parameters) {
|
|
421
422
|
active: function() {
|
422
423
|
module.add.keyboardShortcuts();
|
423
424
|
module.save.focus();
|
424
|
-
module.set.type();
|
425
425
|
$module
|
426
426
|
.addClass(className.active)
|
427
427
|
;
|
@@ -120,15 +120,29 @@
|
|
120
120
|
@media only screen and (max-width : 768px) {
|
121
121
|
.ui.modal .content .left {
|
122
122
|
display: block;
|
123
|
-
padding: 0em 0em
|
123
|
+
padding: 0em 0em 1em;
|
124
124
|
}
|
125
125
|
|
126
126
|
.ui.modal .content .right {
|
127
127
|
display: block;
|
128
|
-
padding: 1em 0em 0em
|
128
|
+
padding: 1em 0em 0em;
|
129
129
|
-webkit-box-shadow: none;
|
130
130
|
box-shadow: none;
|
131
131
|
}
|
132
|
+
|
133
|
+
.ui.modal .content .image {
|
134
|
+
width: auto !important;
|
135
|
+
max-width: 100%;
|
136
|
+
}
|
137
|
+
|
138
|
+
.ui.modal .actions {
|
139
|
+
padding-bottom: 0em;
|
140
|
+
}
|
141
|
+
|
142
|
+
.ui.modal .actions .buttons,
|
143
|
+
.ui.modal .actions .button {
|
144
|
+
margin-bottom: 1em;
|
145
|
+
}
|
132
146
|
}
|
133
147
|
|
134
148
|
/* Tablet and Mobile */
|