Skip to content

Commit

Permalink
Updated component to version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Jun 26, 2016
1 parent db2f355 commit 634fba9
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 10 deletions.
6 changes: 5 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 2.2.0 - June 26, 2016

- **Card** - Added `raised` card variation **Thanks @yordis** [#2955](https://github.com/Semantic-Org/Semantic-UI/issues/2955)

#### Features

- **Cards** - Added documentation for `stackable` cards which was available but undocumented in previous versions.
Expand All @@ -11,7 +15,7 @@

- **Card** - Cards now support multiple custom `content` blocks. Content blocks and images can now appear in any order.
- **Card** - Card now includes a `centered` variation
- **Card** - IE11 now can correctly use `flexbox` cards **THanks @Widcket**
- **Card** - IE11 now can correctly use `flexbox` cards **Thanks @Widcket**
- **Card** - Card styles have been adjusted, `link card` now raise to show selection. Colored variations now have shadows.

### Version 1.11.7 - April 13, 2015
Expand Down
24 changes: 21 additions & 3 deletions card.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/*!
* # Semantic UI 2.1.7 - Item
* # Semantic UI 2.2.0 - Item
* http://github.com/semantic-org/semantic-ui/
*
*
* Copyright 2015 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
Expand Down Expand Up @@ -435,6 +434,25 @@
*******************************/


/*-------------------
Raised
--------------------*/

.ui.raised.cards > .card,
.ui.raised.card {
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
}
.ui.raised.cards a.card:hover,
.ui.link.cards .raised.card:hover,
a.ui.raised.card:hover,
.ui.link.raised.card:hover {
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25);
}
.ui.raised.cards > .card,
.ui.raised.card {
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
}

/*-------------------
Centered
--------------------*/
Expand Down Expand Up @@ -746,7 +764,7 @@ a.ui.card:hover,
--------------------*/


/* Mobily Only */
/* Mobile Only */
@media only screen and (max-width: 767px) {
.ui.two.doubling.cards {
margin-left: 0em;
Expand Down
5 changes: 2 additions & 3 deletions card.min.css

Large diffs are not rendered by default.

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.1.7"
"version": "2.2.0"
}
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name : 'semantic:ui-card',
summary : 'Semantic UI - Card: Single component release',
version : '2.1.7',
version : '2.2.0',
git : 'git://github.com/Semantic-Org/UI-Card.git',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-card",
"version": "2.1.7",
"version": "2.2.0",
"title": "Semantic UI - Card",
"description": "Single component release of card",
"homepage": "http://www.semantic-ui.com",
Expand Down

0 comments on commit 634fba9

Please sign in to comment.