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 237fc9d commit 4a47799
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 13 deletions.
8 changes: 8 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### Version 2.2.0 - June 26, 2016

- **NPM** - NPM dependencies have all been updated to latest stable releases
- **Table** - `definition table` now includes additional class names for forcing, or ignoring definition cell styles
- **Table** - `definition table` now supports `definition` variation to specify definition styles on an element that is not `:first-child`
- **Table** - `definition table` now supports `ignored` variation to force a `first-child` to ignore its default definition stylings
- **Table** - `striped selectable` table would not correctly show hover color on striped rows

### Version 2.1.5 - Nov 1, 2015

- **Table** - Added `selectable` on table cell, allowing for full table-cell links
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.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-table',
summary : 'Semantic UI - Table: Single component release',
version : '2.1.7',
version : '2.2.0',
git : 'git://github.com/Semantic-Org/UI-Table.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-table",
"version": "2.1.7",
"version": "2.2.0",
"title": "Semantic UI - Table",
"description": "Single component release of table",
"homepage": "http://www.semantic-ui.com",
Expand Down
26 changes: 19 additions & 7 deletions table.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/*!
* # Semantic UI 2.1.7 - Table
* # Semantic UI 2.2.0 - Table
* http://github.com/semantic-org/semantic-ui/
*
*
* Copyright 2015 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
Expand Down Expand Up @@ -57,7 +56,7 @@
background: #F9FAFB;
text-align: inherit;
color: rgba(0, 0, 0, 0.87);
padding: 0.92857143em 0.71428571em;
padding: 0.92857143em 0.78571429em;
vertical-align: inherit;
font-style: none;
font-weight: bold;
Expand Down Expand Up @@ -88,7 +87,7 @@
background: #F9FAFB;
text-align: inherit;
color: rgba(0, 0, 0, 0.87);
padding: 0.71428571em 0.71428571em;
padding: 0.78571429em 0.78571429em;
vertical-align: middle;
font-style: normal;
font-weight: normal;
Expand Down Expand Up @@ -117,7 +116,7 @@

/* Table Cells */
.ui.table td {
padding: 0.71428571em 0.71428571em;
padding: 0.78571429em 0.78571429em;
text-align: inherit;
}

Expand Down Expand Up @@ -257,10 +256,17 @@
}

/* Highlight Defining Column */
.ui.definition.table tr td:first-child {
.ui.definition.table tr td:first-child:not(.ignored),
.ui.definition.table tr td.definition {
background: rgba(0, 0, 0, 0.03);
font-weight: bold;
color: rgba(0, 0, 0, 0.95);
text-transform: '';
box-shadow: '';
text-align: '';
font-size: 1em;
padding-left: '';
padding-right: '';
}

/* Fix 2nd Column */
Expand Down Expand Up @@ -488,7 +494,7 @@
.ui.table tbody tr td.selectable > a:not(.ui) {
display: block;
color: inherit;
padding: 0.71428571em 0.71428571em;
padding: 0.78571429em 0.78571429em;
}

/* Other States */
Expand Down Expand Up @@ -585,6 +591,12 @@
background-color: rgba(255, 255, 255, 0.05);
}

/* Allow striped active hover */
.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
background: #EFEFEF !important;
color: rgba(0, 0, 0, 0.95) !important;
}

/*--------------
Single Line
---------------*/
Expand Down
5 changes: 2 additions & 3 deletions table.min.css

Large diffs are not rendered by default.

0 comments on commit 4a47799

Please sign in to comment.