Skip to content

Commit

Permalink
Mise a jour du système de status en Presence
Browse files Browse the repository at this point in the history
Ajout d'assets scss Bootstrap v5.3.0.
Ajout d'assets scss App-Bootstrap.
Modification du contrôleur User.
Suppression du contrôleur Security.
Suppression UserLocationListener.
Renommage de la table UserStatus en UserPresence.
Création de la table Config.
Mise a jour du système de Status en Presence.
  • Loading branch information
GsKizuna committed Jul 12, 2024
1 parent 670b9ea commit d4df394
Show file tree
Hide file tree
Showing 162 changed files with 25,765 additions and 1,262 deletions.
36 changes: 36 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,40 @@
"workbench.iconTheme": "material-icon-theme",
"php.version": "8.3",
"CodeGPT.apiKey": "CodeGPT Plus Beta",
"liveSassCompile.settings.formats": [
// This is the default.
{
"format": "expanded",
"extensionName": ".css",

// null for all three -> denotes the same path as the SASS file
"savePathReplacementPairs": {
"/assets/Scss": "/assets/Css"
}
},
// You can add more
{
"format": "compressed",
"extensionName": ".min.css",

// / -> denotes relative to the workspace root
"savePathReplacementPairs": {
"/assets/Scss": "/assets/Css"
}
}
],
"liveSassCompile.settings.partialsList": [
"/**/_*.s[ac]ss",
"/_Partials/_*.s[ac]ss",
"/**/_Partials/_*.s[ac]ss",
"/assets/Scss/_Partials/_*.s[ac]ss",
"/**/assets/Scss/_Partials/_*.s[ac]ss"
],
"liveSassCompile.settings.watchOnLaunch": true,
"liveSassCompile.settings.excludeList": [
"/**/node_modules/**",
"/.vscode/**",
"/.git/**"
],
"liveSassCompile.settings.generateMap": true,
}
39 changes: 39 additions & 0 deletions assets/Css/App-Bootstrap.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.navbar.bg-primary, .footer.bg-primary {
background: rgba(var(--bs-primary-rgb), 0.5) !important;
z-index: 2;
-webkit-backdrop-filter: blur(10px) saturate(125%);
backdrop-filter: blur(10px) saturate(125%);
}

.navbar.bg-secondary, .footer.bg-secondary {
background: rgba(var(--bs-secondary-rgb), 0.5) !important;
z-index: 2;
-webkit-backdrop-filter: blur(10px) saturate(125%);
backdrop-filter: blur(10px) saturate(125%);
}

.navbar.bg-white, .footer.bg-white {
background: rgba(var(--bs-white-rgb), 0.5) !important;
z-index: 2;
-webkit-backdrop-filter: blur(10px) saturate(125%);
backdrop-filter: blur(10px) saturate(125%);
}

.navbar.bg-light, .footer.bg-light {
background: rgba(var(--bs-light-rgb), 0.5) !important;
z-index: 2;
-webkit-backdrop-filter: blur(10px) saturate(125%);
backdrop-filter: blur(10px) saturate(125%);
}

.navbar.bg-dark, .footer.bg-dark {
background: rgba(var(--bs-dark-rgb), 0.5) !important;
z-index: 2;
-webkit-backdrop-filter: blur(10px) saturate(125%);
backdrop-filter: blur(10px) saturate(125%);
}

.bi {
vertical-align: -0.125em;
fill: currentColor;
}/*# sourceMappingURL=App-Bootstrap.css.map */
1 change: 1 addition & 0 deletions assets/Css/App-Bootstrap.css.map

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

1 change: 1 addition & 0 deletions assets/Css/App-Bootstrap.min.css

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

1 change: 1 addition & 0 deletions assets/Css/App-Bootstrap.min.css.map

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

Loading

0 comments on commit d4df394

Please sign in to comment.