forked from EsupPortail/Esup-Pod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request EsupPortail#971 from EsupPortail/develop
[DONE] Develop EsupPortail#3.4.1
- Loading branch information
Showing
68 changed files
with
3,352 additions
and
2,999 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,41 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "script" | ||
}, | ||
"rules": { | ||
"indent": [ | ||
"error", | ||
2, | ||
{"SwitchCase": 1} | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"semi": [ | ||
"error", | ||
"always", | ||
], | ||
/*"camelcase": ["warn", {"ignoreGlobals": true}],*/ | ||
/* First capital letter is reserved for "new" Objects. */ | ||
"new-cap": ["warn", { "capIsNew": true }] | ||
}, | ||
/* functions and Objects that will not trigger a "not defined" error. */ | ||
"globals": { | ||
"Cookies": "readonly", | ||
"gettext": "readonly", | ||
"interpolate": "readonly", | ||
"bootstrap": "readonly", | ||
"videojs": "readonly", | ||
"send_form_data": "writable", | ||
"showalert": "writable", | ||
} | ||
}; |
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 |
---|---|---|
|
@@ -17,9 +17,11 @@ jobs: | |
git config user.email [email protected] | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | ||
# Prettify js code with prettier | ||
# Prettify js+css code with prettier | ||
- name: Running prettier | ||
run: npx prettier --write pod/*/static/**/*.js | ||
run: | | ||
npx prettier --write pod/*/static/**/*.js | ||
npx prettier --write pod/*/static/**/*.css | ||
- name: Check for modified files | ||
id: prettier-git-check | ||
|
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
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,3 @@ | ||
{ | ||
"extends": "stylelint-config-standard" | ||
} |
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
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
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
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
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 |
---|---|---|
@@ -1,15 +1,22 @@ | ||
/** | ||
* Esup-Pod BBB styles | ||
*/ | ||
|
||
#bbb_meetings_list .card-header { | ||
background: var(--color-black-alpha); | ||
padding: 0 .25rem; | ||
padding: 0 0.25rem; | ||
z-index: 9; | ||
} | ||
#bbb_meetings_list .card-header .text-muted{ | ||
color: var(--color-white) !important; | ||
|
||
#bbb_meetings_list .card-header .text-muted { | ||
color: var(--color-white) !important; | ||
} | ||
|
||
/* To always see publish button */ | ||
#bbb_meetings_list .infinite-item .card-body{ | ||
height: auto !important; | ||
#bbb_meetings_list .infinite-item .card-body { | ||
height: auto !important; | ||
} | ||
|
||
#bbb_meetings_list .infinite-item .card-body footer a { | ||
width: 100% !important; | ||
} | ||
#bbb_meetings_list .infinite-item .card-body footer a{ | ||
width: 100% !important; | ||
} |
Oops, something went wrong.