Skip to content

Commit

Permalink
Modal | Don't overide Collection's style
Browse files Browse the repository at this point in the history
  • Loading branch information
onaliugo committed Oct 2, 2015
1 parent 1a08332 commit e265e8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
16 changes: 7 additions & 9 deletions dist/css/tapestry.css
Original file line number Diff line number Diff line change
Expand Up @@ -1761,18 +1761,19 @@ th {
max-width: 90%;
max-height: calc(100vh - 3.14286rem);
opacity: 0;
-webkit-filter: blur(0);
filter: blur(0);
overflow: auto;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: opacity 0.2s ease-in-out;
-webkit-filter: blur(0); }
transition: opacity 0.2s ease-in-out; }
.Modal[aria-hidden="false"] {
visibility: visible;
opacity: 1;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-name: PopUp;
animation-name: PopUp;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-direction: alternate;
Expand Down Expand Up @@ -1840,7 +1841,6 @@ th {
flex-grow: 1; }

.Modal-collection .Collection-item {
color: #a1a9ae;
border-right: 0;
border-left: 0; }
.Modal-collection .Collection-item:first-child {
Expand All @@ -1863,9 +1863,6 @@ th {
.ModalHeader-btn:hover {
color: #258aae; }

.Modal-collection .Collection-item:hover {
color: #708189; }

.has-notification {
position: relative; }

Expand Down Expand Up @@ -2283,6 +2280,7 @@ input:checked + .Switch--s:after {
.has-tooltip:before,
.has-tooltip:after {
position: absolute;
z-index: 9000;
opacity: 0;
transition: opacity 0.1s ease-out; }
.has-tooltip:before {
Expand Down Expand Up @@ -2316,8 +2314,8 @@ input:checked + .Switch--s:after {
.has-tooltip--top:after,
.has-tooltip--bottom:before,
.has-tooltip--bottom:after {
left: 50%;
top: auto;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%); }

Expand Down
1 change: 0 additions & 1 deletion src/scss/components/modal/_collection.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.Modal-collection {
.Collection-item {
color: $gray-chateau;
border-right: 0;
border-left: 0;

Expand Down
1 change: 0 additions & 1 deletion src/scss/components/modal/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@

@if $import-pseudo-classes {
@import "state/header";
@import "state/collection";
}
5 changes: 0 additions & 5 deletions src/scss/components/modal/state/_collection.scss

This file was deleted.

0 comments on commit e265e8e

Please sign in to comment.