Skip to content

Commit

Permalink
version 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VALLET Jonathan committed May 28, 2024
2 parents 7f7c7ae + fef6f59 commit bf638a8
Show file tree
Hide file tree
Showing 19 changed files with 290 additions and 431 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accessibility-extension",
"version": "0.24.1",
"version": "0.25.0",
"description": "Extension d'accessibilité",
"repository": {
"type": "git",
Expand Down
27 changes: 27 additions & 0 deletions styleguide/assets/css/rgaa-checker-content.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#rgaaChecker__highlightWrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2147483647;
pointer-events: none;
overflow: hidden;
}

#rgaaChecker__highlightCanvas {
position: fixed;
top: 0;
left: 0;
}

.-rgaachecker__highlight {
animation: rgaacheckerhighlightAnimation 0.5s ease-in-out;
}

@keyframes rgaacheckerhighlightAnimation {
0% { transform: scale(1); }
25% { transform: scale(1.15); }
75% { transform: scale(1.15); }
100% { transform: scale(1); }
}
6 changes: 2 additions & 4 deletions styleguide/assets/manifest_chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
},
"default_popup": "rgaa-checker-popup.html"
},
"permissions": [
"activeTab"
],
"background": {
"service_worker": "background.js"
},
Expand All @@ -40,7 +37,8 @@
"resources": [
"rgaa-checker-panel.html",
"app.js",
"app.css"
"app.css",
"rgaa-checker-content.css"
],
"matches": [
"<all_urls>"
Expand Down
152 changes: 0 additions & 152 deletions styleguide/assets/scripts/background_chrome.js

This file was deleted.

97 changes: 0 additions & 97 deletions styleguide/assets/scripts/background_firefox.js

This file was deleted.

Loading

0 comments on commit bf638a8

Please sign in to comment.