diff --git a/docs/demo/assets/fabricator/styles/partials/_exceptions.scss b/docs/demo/assets/fabricator/styles/partials/_exceptions.scss index 70eaef86..3c8e2f88 100644 --- a/docs/demo/assets/fabricator/styles/partials/_exceptions.scss +++ b/docs/demo/assets/fabricator/styles/partials/_exceptions.scss @@ -5,6 +5,7 @@ .dc-dialog__overlay { opacity: 1; + position: relative; } .dc-toast-container { diff --git a/docs/demo/materials/02-atoms/table.html b/docs/demo/materials/02-atoms/table.html index 22557fb5..0702eaf6 100644 --- a/docs/demo/materials/02-atoms/table.html +++ b/docs/demo/materials/02-atoms/table.html @@ -19,35 +19,35 @@ Eileen Holland eileen.holland42@example.com - Active + Active Duane Holmes duane.holmes21@example.com - Active + Active Kitty Murray kitty.murray88@example.com - New + New Austin Carpenter austin.carpenter87@example.com - New + New Toni Nichols toni.nichols83@example.com - Active + Active @@ -67,35 +67,35 @@ Eileen Holland eileen.holland42@example.com - Active + Active Duane Holmes duane.holmes21@example.com - Active + Active Kitty Murray kitty.murray88@example.com - New + New Austin Carpenter austin.carpenter87@example.com - New + New Toni Nichols toni.nichols83@example.com - Active + Active @@ -116,35 +116,35 @@ Eileen Holland eileen.holland42@example.com - Active + Active Duane Holmes duane.holmes21@example.com - Active + Active Kitty Murray kitty.murray88@example.com - New + New Austin Carpenter austin.carpenter87@example.com - New + New Toni Nichols toni.nichols83@example.com - Active + Active @@ -165,35 +165,35 @@ Eileen Holland eileen.holland42@example.com - Active + Active Duane Holmes duane.holmes21@example.com - Active + Active Kitty Murray kitty.murray88@example.com - New + New Austin Carpenter austin.carpenter87@example.com - New + New Toni Nichols toni.nichols83@example.com - Active + Active diff --git a/docs/demo/materials/03-molecules/04-input-groups.html b/docs/demo/materials/03-molecules/04-input-groups.html index 6f29902c..b884329c 100644 --- a/docs/demo/materials/03-molecules/04-input-groups.html +++ b/docs/demo/materials/03-molecules/04-input-groups.html @@ -8,31 +8,31 @@
- +
http:// - +
- +
- +
- +
- User 1 - +
User 1
+ Add

BEM way (controversial)

- +
- + diff --git a/src/icons/history.svg b/src/icons/history.svg index 909d924a..182f9c44 100644 --- a/src/icons/history.svg +++ b/src/icons/history.svg @@ -1,12 +1,12 @@ - - + + history Created with Sketch. - - - + + + \ No newline at end of file diff --git a/src/icons/lock.svg b/src/icons/lock.svg index 8813541b..28fef290 100644 --- a/src/icons/lock.svg +++ b/src/icons/lock.svg @@ -1,12 +1,12 @@ - - + + lock Created with Sketch. - - - + + + \ No newline at end of file diff --git a/src/icons/trash.svg b/src/icons/trash.svg index ee51ef26..ddcd406d 100644 --- a/src/icons/trash.svg +++ b/src/icons/trash.svg @@ -1,12 +1,12 @@ - - + + trash Created with Sketch. - - - + + + \ No newline at end of file diff --git a/src/styles/atoms/_select.scss b/src/styles/atoms/_select.scss index 3db0fa8f..4a2e5762 100644 --- a/src/styles/atoms/_select.scss +++ b/src/styles/atoms/_select.scss @@ -12,6 +12,7 @@ font-weight: $dc-normal-font-weight; line-height: 1; -webkit-appearance: none; + border-radius: $dc-radius100; &:hover { border-color: $dc-blue40; @@ -22,6 +23,10 @@ border-color: $dc-blue40; outline: 0; } + + &::-ms-expand { + display: none; + } } @mixin dc-select-selectors { @@ -29,4 +34,3 @@ @include dc-select; } } - diff --git a/src/styles/atoms/_table.scss b/src/styles/atoms/_table.scss index 052616ac..5a58a9c5 100644 --- a/src/styles/atoms/_table.scss +++ b/src/styles/atoms/_table.scss @@ -16,6 +16,7 @@ @mixin dc-table__th { font-weight: $dc-bold-font-weight; text-transform: uppercase; + text-align: left; } @mixin dc-table__tr { @@ -215,4 +216,3 @@ // } //} } - diff --git a/src/styles/molecules/_input-group.scss b/src/styles/molecules/_input-group.scss index fe8255fa..2af1abd9 100644 --- a/src/styles/molecules/_input-group.scss +++ b/src/styles/molecules/_input-group.scss @@ -7,12 +7,13 @@ } @mixin dc-input-addon { - margin-bottom: 0; + padding: $dc-space75 + .2 $dc-space100 $dc-space75; border: 1px solid $dc-gray60; background-color: $dc-gray80; color: $dc-gray20; line-height: 1; + display: inline-block; &:first-child { border-right-width: 0; @@ -99,4 +100,3 @@ } } - diff --git a/src/styles/molecules/_tooltip.scss b/src/styles/molecules/_tooltip.scss index 3d4be4ec..6afb6e77 100644 --- a/src/styles/molecules/_tooltip.scss +++ b/src/styles/molecules/_tooltip.scss @@ -11,6 +11,7 @@ background: rgba($dc-black, .7); color: $dc-white; line-height: $dc-body-line-height; + min-height: $dc-space150; } @mixin dc-tooltip__triangle { @@ -40,6 +41,7 @@ left: 0; content: attr(#{$content-attribute}); white-space: nowrap; + line-height: 1.6; // IE 10 fix (without unit) } @mixin dc-tooltip__triangle--lb-has-tooltip {