Skip to content

Commit

Permalink
v0.3.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeshwarpatlolla committed Jun 3, 2016
1 parent 9405d5f commit e602a73
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/ionic-toast.bundle.min.js

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

54 changes: 54 additions & 0 deletions src/ionic-toast.css
@@ -0,0 +1,54 @@

.ionic_toast {
color: #FFF;
cursor: default;
font-size: 1em;
display: none;
border-radius: 2px;
opacity: 1;
padding: 10px 25px;
margin: 10px;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 9999;
background-color: rgba(0, 0, 0, 0.80);
}

.ionic_toast_top {
top: 10px;
}

.ionic_toast_middle {
top: 40%;
}

.ionic_toast_bottom {
bottom: 10px;
}

.ionic_toast_close {
border-radius: 2px;
color: #CCCCCC;
cursor: pointer;
display: none;
position: absolute;
right: 4px;
top: 4px;
width: 20px;
height: 20px;
}

.toast_close_icon {
position: relative;
top: 1px;
}

.ionic_toast_sticky .ionic_toast_close {
display: block;
}

.ionic_toast_close:active {
background-color: #555555;
}

0 comments on commit e602a73

Please sign in to comment.