-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new extension design and logic, login with email and password +…
… bug fixes, added changelog.md
- Loading branch information
1 parent
4be3f70
commit 6229906
Showing
28 changed files
with
1,123 additions
and
659 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.7] | ||
|
||
### Added | ||
|
||
- You can log in with email and password. (You need to enable a password on notion website settings.) For security, each time you reload the server you need to log in again. This is because email and password is not saved anywhere. You hear correctly. | ||
- New revamped design and logic of the extension. Now its nicer, and shows always, even adding frome context menu. If you liked it, be careful with this update, you'll love it. | ||
|
||
### Fixed | ||
|
||
- Fixed server issues adding callback capabilities. Before some websites images were not added due to timeouts. | ||
|
||
|
||
[1.7]: https://github.com/elblogbruno/NotionAI-MyMind/releases/tag/1.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Notification Component | ||
*/ | ||
#naimm-notification { | ||
font-family: Avenir, sans-serif !important; | ||
position: fixed; | ||
right: 30px; | ||
top: 30px; | ||
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1); | ||
border-radius: 4px; | ||
width: 350px; | ||
box-sizing: border-box; | ||
user-select: none; | ||
|
||
animation: naimmNotificationSlideIn 300ms ease-out forwards; | ||
animation-delay: 300ms; | ||
opacity: 0; | ||
will-change: opacity, transform; | ||
z-index: 2147483647; | ||
} | ||
|
||
#naimm-notification[status="error"] .naimm-notification-inner { | ||
border: 2px solid #FF0000 !important; | ||
} | ||
|
||
#naimm-notification[status="limited"] .naimm-notification-inner { | ||
background: #FF5924 !important; | ||
border: none !important; | ||
} | ||
#naimm-notification[status="success"] .naimm-notification-inner { | ||
border: 2px solid coral!important; | ||
} | ||
|
||
#naimm-notification[closing="true"] { | ||
pointer-events: none !important; | ||
animation: naimmNotificationSlideOut 300ms ease-out forwards; | ||
} | ||
|
||
#naimm-notification .naimm-notification-wrap { | ||
overflow: hidden; | ||
border-radius: 4px; | ||
} | ||
|
||
#naimm-notification .naimm-notification-inner { | ||
border-radius: 4px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
align-items: center; | ||
background: #FFFFFF; | ||
color: #000000 !important; | ||
position: relative; | ||
z-index: 3; | ||
min-height: 90px; | ||
padding: 20px; | ||
box-sizing: border-box; | ||
border: 1px solid #EFEFEF; | ||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); | ||
cursor: pointer; | ||
} | ||
|
||
#naimm-notification .naimm-notification-inner img { | ||
width: 30px; | ||
margin: 0 20px; | ||
} | ||
|
||
#naimm-notification .naimm-notification-inner span { | ||
color: inherit !important; | ||
font-family: Avenir, sans-serif !important; | ||
font-weight: normal !important; | ||
font-size: 20px !important; | ||
line-height: 26px !important; | ||
letter-spacing: 0 !important; | ||
text-transform: none !important; | ||
} | ||
|
||
/* | ||
* Animations | ||
*/ | ||
|
||
@keyframes naimmNotificationSlideIn { | ||
0% { | ||
opacity: 0; | ||
transform: translateY(30px); | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
transform: translateY(0px); | ||
} | ||
} | ||
|
||
@keyframes naimmNotificationSlideOut { | ||
0% { | ||
opacity: 1; | ||
transform: translateY(0px); | ||
} | ||
|
||
100% { | ||
opacity: 0; | ||
transform: translateY(-30px); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.