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:
48
src/components/notifications.scss
Normal file
48
src/components/notifications.scss
Normal 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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user