Skip to content

Commit

Permalink
Updated component to version 2.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Jan 29, 2018
1 parent a1646bc commit f30a894
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 19 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 2.2.14 - Jan 29, 2018

- **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)

### Version 2.2.12 - Aug 07, 2017

- **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**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"framework"
],
"license": "MIT",
"version": "2.2.13"
"version": "2.2.14"
}
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.12 - Modal
* # Semantic UI 2.2.14 - Modal
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
26 changes: 14 additions & 12 deletions modal.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.12 - Modal
* # Semantic UI 2.2.14 - Modal
* http://github.com/semantic-org/semantic-ui/
*
*
Expand All @@ -22,7 +22,8 @@
text-align: left;
background: #FFFFFF;
border: none;
box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
-webkit-transform-origin: 50% 25%;
transform-origin: 50% 25%;
border-radius: 0.28571429rem;
Expand Down Expand Up @@ -79,7 +80,8 @@
background: #FFFFFF;
margin: 0em;
padding: 1.25rem 1.5rem;
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
color: rgba(0, 0, 0, 0.85);
border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}
Expand Down Expand Up @@ -119,22 +121,18 @@
flex: 0 1 auto;
width: '';
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > [class*="top aligned"] {
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > [class*="middle aligned"] {
-ms-flex-item-align: middle;
-ms-grid-row-align: middle;
align-self: middle;
}
.ui.modal > [class*="stretched"] {
-ms-flex-item-align: stretch;
-ms-grid-row-align: stretch;
align-self: stretch;
}

Expand All @@ -146,7 +144,6 @@
flex: 1 0 auto;
min-width: 0px;
-ms-flex-item-align: top;
-ms-grid-row-align: top;
align-self: top;
}
.ui.modal > .content > .icon + .description,
Expand Down Expand Up @@ -268,7 +265,8 @@
width: 100% !important;
margin: 0em !important;
padding: 1rem 0rem !important;
box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}

/* Let Buttons Stack */
Expand All @@ -286,7 +284,8 @@
---------------*/

.ui.inverted.dimmer > .ui.modal {
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
}


Expand All @@ -298,7 +297,8 @@
background-color: transparent;
border: none;
border-radius: 0em;
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
color: #FFFFFF;
}
.ui.basic.modal > .header,
Expand Down Expand Up @@ -364,7 +364,9 @@
position: fixed;
}
.modals.dimmer .ui.scrolling.modal {
position: static !important;
position: relative !important;
left: auto !important;
top: auto !important;
margin: 3.5rem auto !important;
}

Expand Down
2 changes: 1 addition & 1 deletion modal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.2.12 - Modal
* # Semantic UI 2.2.14 - Modal
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
4 changes: 2 additions & 2 deletions modal.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f30a894

Please sign in to comment.