Skip to content
This repository has been archived by the owner on Apr 18, 2020. It is now read-only.

Commit

Permalink
build added #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dbtek committed Nov 25, 2014
1 parent 9ed4c3d commit 2fd2904
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 41 deletions.
58 changes: 20 additions & 38 deletions dist/css/angular-aside.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* angular-aside - v1.1.0
* https://github.com/dbtek/angular-aside
* 2014-10-23
* 2014-11-25
* Copyright (c) 2014 İsmail Demirbilek
* License: MIT
*/
Expand Down Expand Up @@ -157,17 +157,18 @@ Copyright (c) 2014 Daniel Eden
}

.ng-aside.horizontal {
transition: none !important;
-webkit-transition: none !important;
transform: none !important;
-webkit-transform: none !important;
transition: none;
-webkit-transition: none;
transform: none;
-webkit-transform: none;
height: 100%;
}

.ng-aside.horizontal.left.in {
animation: fadeInLeft 150ms;
-webkit-animation: fadeInLeft 150ms;
}

.ng-aside.horizontal.right.in {
animation: fadeInRight 150ms;
-webkit-animation: fadeInRight 150ms;
Expand All @@ -179,10 +180,10 @@ Copyright (c) 2014 Daniel Eden
height: 100%;
margin: 0;
padding: 0;
transition: none !important;
-webkit-transition: none !important;
transform: none !important;
-webkit-transform: none !important;
transition: none;
-webkit-transition: none;
transform: none;
-webkit-transform: none;
}

.ng-aside.horizontal.left .modal-dialog {
Expand All @@ -199,23 +200,11 @@ Copyright (c) 2014 Daniel Eden
border-radius: 0;
}

.ng-aside.horizontal .modal-dialog.modal-md {
width: 400px;
}

.ng-aside.horizontal .modal-dialog.modal-lg {
width: 600px;
}

/*
vertical aside
*/

.ng-aside.vertical {
transition: none !important;
-webkit-transition: none !important;
transform: none !important;
-webkit-transform: none !important;
transition: none;
-webkit-transition: none;
transform: none;
-webkit-transform: none;
width: 100%!important;
overflow: hidden;
}
Expand All @@ -227,16 +216,17 @@ vertical aside
margin: 0;
padding: 0;
width: 100%!important;
transition: none !important;
-webkit-transition: none !important;
transform: none !important;
-webkit-transform: none !important;
transition: none;
-webkit-transition: none;
transform: none;
-webkit-transform: none;
}

.ng-aside.vertical.top.in {
animation: fadeInTop 150ms;
-webkit-animation: fadeInTop 150ms;
}

.ng-aside.vertical.bottom.in {
animation: fadeInBottom 150ms;
-webkit-animation: fadeInBottom 150ms;
Expand All @@ -252,15 +242,7 @@ vertical aside

.ng-aside.vertical .modal-dialog .modal-content {
border: none;
width: 100%!important;
width: 100%;
height: 100%;
border-radius: 0;
}

.ng-aside.vertical .modal-dialog.modal-md {
height: 400px;
}

.ng-aside.vertical .modal-dialog.modal-lg {
height: 600px;
}
2 changes: 1 addition & 1 deletion dist/css/angular-aside.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/js/angular-aside.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*!
* angular-aside - v1.1.0
* https://github.com/dbtek/angular-aside
* 2014-10-23
* 2014-11-25
* Copyright (c) 2014 İsmail Demirbilek
* License: MIT
*/
Expand All @@ -15,7 +15,6 @@ angular.module('ngAside')
* @description
* Factory to create a modal instance to use it as aside. It simply wraps $modal by overriding open() method and sets a class on modal window.
* @function
* @author İsmail Demirbilek
*/
.factory('$aside', function($modal) {
var defaults = this.defaults = {
Expand Down

0 comments on commit 2fd2904

Please sign in to comment.