Many changes. See further for more details.

- Notification API
- New Modal API
- Vault JSON import and export
- Improved Page Cache
- Adding Context Menu API
- Adding Vault Deletion
- Fixing Sync Issues
- Implementing Share Target API
- Implementing Share To API
This commit is contained in:
Fabian
2019-03-04 21:48:31 -05:00
parent 313f5aee97
commit 3ef36ab6ca
38 changed files with 2117 additions and 1852 deletions

View File

@ -0,0 +1,48 @@
.notifications_container {
position: fixed;
top: 0;
right: 0;
z-index: 128;
margin-top: 35px;
}
.notifications_success {
background: #2ECC40;
color: white;
}
.notifications_warning {
background: #FCA624;
color: white;
}
.notifications_error {
background: #FF4136;
color: white;
}
.notifications_info {
background: #0074D9;
color: white;
}
.notifications_notification {
h4 {
font-weight: bold;
margin: 0;
}
span {
margin-left: 3px;
word-break: break-word;
word-wrap: break-word;
}
position: static;
margin-top:10px;
margin-right:35px;
padding: 0.5em;
width: 300px;
}