Skip to content

Commit

Permalink
The Purge v0.5.0
Browse files Browse the repository at this point in the history
- It’s been awhile, but who actually reads these

- Remove ng-enter and ng-leave classes from scoped modal and
modal-overlay classes
  • Loading branch information
colealanroberts committed Apr 3, 2017
1 parent a99986f commit 51030c4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 38 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@
*.codekit

config.codekit

config.codekit
config.codekit3
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Exprecss",
"description": "A lightweight responsive framework built on Bourbon & Neat",
"version": "0.4.9",
"version": "0.5.0",
"main": "exprecss.css",
"ignore": [
".*",
Expand Down
5 changes: 2 additions & 3 deletions exprecss.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/_exprecss.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version: 'v0.4.9'
$version: 'v0.5.0'
$year: '2016'
$license: 'WTFPL'

Expand All @@ -11,8 +11,8 @@ $license: 'WTFPL'
* /
// Import the Bourbon & Neat Libraries
@import "../vendor/bourbon/dist/bourbon/"
@import "../vendor/neat/app/assets/stylesheets/neat"
@import "../vendor/bourbon/dist/_bourbon.scss"
@import "../vendor/neat/app/assets/stylesheets/_neat.scss"

// Import Modules (Required)
@import "modules/_variables"
Expand Down
29 changes: 0 additions & 29 deletions src/partials/_modals.sass
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,6 @@
@include media(mobile)
-webkit-overflow-scrolling: touch

// Angular classes for adding and remove the modal with a transition
&.ng
&-enter
@include animation(modal-open $ease-out-cubic $transition-modal-open)
@include media(mobile)
@include animation(modal-open-responsive $ease-out-cubic $transition-modal-open)

&-leave
@include animation(modal-hide $ease-in-cubic $transition-duration-default)
@include media(mobile)
@include animation(modal-close-responsive $ease-out-cubic $transition-duration-default)

// This call is added to the <body> when the modal is open
&-open
overflow: hidden
Expand Down Expand Up @@ -105,20 +93,3 @@
z-index: $z-index-alpha - 1
display: block
background: rgba($black, $alpha-modal-overlay)


// Angular classes for adding and remove the modal with a transition
&.ng
&-enter
@include transition(all $ease-out-cubic $transition-duration-default)
@include opacity(0)

&-active
@include opacity(1)

&-leave
@include transition(all $ease-in-cubic $transition-duration-default)
@include opacity(1)

&-active
@include opacity(0)

0 comments on commit 51030c4

Please sign in to comment.