Skip to content

Commit f30a894

Browse files
Updated component to version 2.2.14
1 parent a1646bc commit f30a894

8 files changed

+25
-19
lines changed

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 2.2.14 - Jan 29, 2018
2+
3+
- **Modal** - Fixes issue where an oversized modal would appear behind an existing modal when using `allowMultiple: true` and a second modal that is larger than the sreen height. [#2423](https://github.com/Semantic-Org/Semantic-UI/issues/2423)
4+
15
### Version 2.2.12 - Aug 07, 2017
26

37
- **Modal** - Modal will now take into account absolutely positioned elements inside a modal when determining if scrolling is necessary. [#5578](https://github.com/Semantic-Org/Semantic-UI/issues/5578) **Thanks @lulalala**

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"framework"
1616
],
1717
"license": "MIT",
18-
"version": "2.2.13"
18+
"version": "2.2.14"
1919
}

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.12 - Modal
2+
* # Semantic UI 2.2.14 - Modal
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

modal.css

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.12 - Modal
2+
* # Semantic UI 2.2.14 - Modal
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -22,7 +22,8 @@
2222
text-align: left;
2323
background: #FFFFFF;
2424
border: none;
25-
box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
25+
-webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
26+
box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
2627
-webkit-transform-origin: 50% 25%;
2728
transform-origin: 50% 25%;
2829
border-radius: 0.28571429rem;
@@ -79,7 +80,8 @@
7980
background: #FFFFFF;
8081
margin: 0em;
8182
padding: 1.25rem 1.5rem;
82-
box-shadow: none;
83+
-webkit-box-shadow: none;
84+
box-shadow: none;
8385
color: rgba(0, 0, 0, 0.85);
8486
border-bottom: 1px solid rgba(34, 36, 38, 0.15);
8587
}
@@ -119,22 +121,18 @@
119121
flex: 0 1 auto;
120122
width: '';
121123
-ms-flex-item-align: top;
122-
-ms-grid-row-align: top;
123124
align-self: top;
124125
}
125126
.ui.modal > [class*="top aligned"] {
126127
-ms-flex-item-align: top;
127-
-ms-grid-row-align: top;
128128
align-self: top;
129129
}
130130
.ui.modal > [class*="middle aligned"] {
131131
-ms-flex-item-align: middle;
132-
-ms-grid-row-align: middle;
133132
align-self: middle;
134133
}
135134
.ui.modal > [class*="stretched"] {
136135
-ms-flex-item-align: stretch;
137-
-ms-grid-row-align: stretch;
138136
align-self: stretch;
139137
}
140138

@@ -146,7 +144,6 @@
146144
flex: 1 0 auto;
147145
min-width: 0px;
148146
-ms-flex-item-align: top;
149-
-ms-grid-row-align: top;
150147
align-self: top;
151148
}
152149
.ui.modal > .content > .icon + .description,
@@ -268,7 +265,8 @@
268265
width: 100% !important;
269266
margin: 0em !important;
270267
padding: 1rem 0rem !important;
271-
box-shadow: none;
268+
-webkit-box-shadow: none;
269+
box-shadow: none;
272270
}
273271

274272
/* Let Buttons Stack */
@@ -286,7 +284,8 @@
286284
---------------*/
287285

288286
.ui.inverted.dimmer > .ui.modal {
289-
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
287+
-webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
288+
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
290289
}
291290

292291

@@ -298,7 +297,8 @@
298297
background-color: transparent;
299298
border: none;
300299
border-radius: 0em;
301-
box-shadow: none !important;
300+
-webkit-box-shadow: none !important;
301+
box-shadow: none !important;
302302
color: #FFFFFF;
303303
}
304304
.ui.basic.modal > .header,
@@ -364,7 +364,9 @@
364364
position: fixed;
365365
}
366366
.modals.dimmer .ui.scrolling.modal {
367-
position: static !important;
367+
position: relative !important;
368+
left: auto !important;
369+
top: auto !important;
368370
margin: 3.5rem auto !important;
369371
}
370372

modal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.2.12 - Modal
2+
* # Semantic UI 2.2.14 - Modal
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

modal.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)