diff --git a/README.md b/README.md index e82f7c8dc46712b32c098d5ce7c825673f2cca71..44a215314fa82ca07d7666bd9b7e5ea0bd6a6195 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,19 @@ Disclaimer: PUG could need to be installed globally as root `sudo npm i -g pug` ## Installation -1. Clone the associated [coopstarter-server](https://git.happy-dev.fr/startinblox/applications/coop-starter/coopstarter-server) repository and follow its installation procedure described in the `README.md` +### Server setup +1. Clone the associated [coopstarter-data](https://git.happy-dev.fr/startinblox/applications/coop-starter/coopstarter-data) repository and follow the server installation procedure described in the `README.md` 2. Launch this server and ensure it's running on `127.0.0.1:8000/admin/` + +### Frontend application setup + 3. Open a new console tab 4. Clone this repository in your preferred location (your workspace) 5. Move to the root of the directory : `cd coopstarter-front` 6. Install all needed dependencies using npm: `npm install` -7. Edit the configuration file located in `./src/` to ensure the `sdn` variable is properly set -8. Build or watch the project: `make build` or `make watch` -9. In a new tab, serve the project using the node server: `make serve` +7. Edit the configuration file located in `./src/` to ensure the `sdn` and all the `endpoints` variables are properly set +8. Build or watch the project: `npm run build` or `npm run watch` +10. In a new tab, serve the project using the node server: `node server` +11. If you have no CSS when loading the project local URL, edit and save the `src/styles/index.scss` file with any kind of modifications to force the compilation. -You should now be able to access the application using your preferred browser on `http://localhost:3000/` +You should now be able to access the application using your preferred browser on `http://localhost:9000/` diff --git a/copy_lib.js b/copy_lib.js index 4cc69325d027bde0e037b037da819d910710b638..a0f1cc530e1cec45917d765f28005abf879515ea 100644 --- a/copy_lib.js +++ b/copy_lib.js @@ -14,7 +14,6 @@ exec(`mkdir -p ${distDir}`, () => { ? distDir : join(distDir, filename); const cmd = `rsync -ru ${path} ${dest}`; - console.log(cmd); exec(cmd); }); }); diff --git a/server.js b/server.js index 7b0f15646c86abf3e02456c5f4f0665a4ea6ed1a..21a3c704467f9fc41505c7e7147b99d3cd8cac9f 100644 --- a/server.js +++ b/server.js @@ -10,7 +10,7 @@ app .use(express.static(distPath)) // .use('/src', express.static(join(__dirname, 'src'))) .get(/^[^.]*$/, (req, rep) => - rep.sendFile(join(__dirname, distPath, '/index.html')), + rep.sendFile(join(__dirname, distPath, '/index.html')) ) .listen(port); diff --git a/src/includes/components/widgets.pug b/src/includes/components/widgets.pug index a716dcc4d9080e9df430a5871084660eed1a4749..6bf93e5e4f1bd7e58b61050108115cbbe2e4940b 100644 --- a/src/includes/components/widgets.pug +++ b/src/includes/components/widgets.pug @@ -48,9 +48,13 @@ sib-widget(name='cs-resource-format-name') div p ${value.name} +sib-widget(name='cs-resource-reviewer') + template + p <b>Resource validated by: </b> ${value} + sib-widget(name='cs-resource-status') template - div.button_base.button_pending ${value == 'pending' ? ( value == 'to_improve' ? `Improvement required` : `Refused` ) : `Pending validation`} + div.button_base.button_pending ${value == 'pending' ? `Pending validation` : ( value == 'to_improve' ? `Improvement required` : ( value == 'validated' ? `Validated` : `Refused` ) ) } sib-widget(name='cs-validate-action') template @@ -83,7 +87,15 @@ sib-widget(name='cs-delete-action') data-src="\${src}" next="\${value}" ) <i class="fas fa-trash-alt"></i> - + +sib-widget(name='cs-broken-action') + template + p + sib-link( + data-src="\${src}" + next="\${value}" + ) <i class="fas fa-heart-broken"></i> ${label} + sib-widget(name='cs-section_introduction') template div diff --git a/src/includes/entrepreneur/create.pug b/src/includes/entrepreneur/create.pug index 2cc9a0be6595d94b12c29bec1031f2e879e60ea2..1a07b3822f25844da13eaa7304eb218c0702815a 100644 --- a/src/includes/entrepreneur/create.pug +++ b/src/includes/entrepreneur/create.pug @@ -1,8 +1,16 @@ include ../components/widgets -h2.title_form Complete your entrepreneur account +figure.logo + img(src="../images/logo.png" + alt="Coopstarter") -sib-form( +figure.logo.img_log + img(src="../images/fusee.png" + alt="Create an entrepreneur account") + +h2.title_create Complete your entrepreneur account + +sib-form.block_log.block_creat_count( bind-user fields="last_name, first_name, entrepreneur_profile.organisation, username" diff --git a/src/includes/mentor/components/menu.pug b/src/includes/mentor/components/menu.pug index 6d8811b97ac7a3a927c1eedb272da862ac97c79b..8dc3954f695aeb56a8e3ca2cbe71c2d066ef0ae2 100644 --- a/src/includes/mentor/components/menu.pug +++ b/src/includes/mentor/components/menu.pug @@ -6,7 +6,4 @@ sib-router(default-route='mentor-resource-list') sib-ac-checker(permission="acl:Write" bind-resources) sib-route(id-prefix=`${endpoints.resources}`, name='mentor-resource-edit', use-id) sib-route(name='resource-creation-confirmation') - sib-ac-checker(permission="acl:Write" bind-resources) - sib-route(id-prefix=`${endpoints.resources}`, name='mentor-resource-detail', use-id) - sib-route(name='mentor-database') - sib-route(id-prefix=`${endpoints.resources}`, name='mentor-resource-validate', use-id) \ No newline at end of file + sib-route(name='mentor-database') \ No newline at end of file diff --git a/src/includes/mentor/create.pug b/src/includes/mentor/create.pug index 35804186c2dcda75913900a4b2216404d2729d7b..3b6d162d18bce98a36375810fc0f4c5639acab02 100644 --- a/src/includes/mentor/create.pug +++ b/src/includes/mentor/create.pug @@ -36,6 +36,7 @@ sib-form.block_log.block_creat_count( label-mentor_profile.fields="Fields" label-account.picture="Photo" label-mentor_profile.headline="Headline or current position" + class-mentor_profile.headline="w_75" label-mentor_profile.city="City" label-mentor_profile.country="Country" label-mentor_profile.biography="Tell us more about your activities" diff --git a/src/includes/mentor/dashboard.pug b/src/includes/mentor/dashboard.pug index cb14552241f071af827ad4ebdfa2e35fb2052a2f..77b3b6035392b82f59cea967415e3a0fb9175d02 100644 --- a/src/includes/mentor/dashboard.pug +++ b/src/includes/mentor/dashboard.pug @@ -14,24 +14,29 @@ section#home #mentor-resource-list(hidden).no-sidebar.container include resources/list.pug + sib-router + sib-ac-checker(permission="acl:Write" bind-resources) + sib-route(id-prefix=`${endpoints.resources}`, name='mentor-resource-detail', use-id) + sib-route(id-prefix=`${endpoints.resources}`, name='mentor-resource-validate', use-id) + + dialog#mentor-resource-detail.no-sidebar.container + include resources/detail.pug + sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard + + dialog#mentor-resource-validate.no-sidebar.container + include resources/validate.pug + sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard + #mentor-resource-create(hidden).no-sidebar.container sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard include resources/create.pug #mentor-resource-edit(hidden).no-sidebar.container - sib-link(class="backlink", next="mentor-resource-detail") Back to the resource + sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard include resources/edit.pug - #mentor-resource-validate(hidden).no-sidebar - sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard - include resources/validate.pug - #resource-creation-confirmation(hidden).no-sidebar.container include resources/confirmation.pug - - #mentor-resource-detail(hidden).no-sidebar.container - sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard - include resources/detail.pug #mentor-database(hidden) sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard diff --git a/src/includes/mentor/profile.pug b/src/includes/mentor/profile.pug index 60bfd52abaa3758cbe037d0a6b5393e41a9d0403..55c9374b73295a8c7c57a8d8a8ee59c1031ae65c 100644 --- a/src/includes/mentor/profile.pug +++ b/src/includes/mentor/profile.pug @@ -57,7 +57,9 @@ div.block_list.flex bind-user fields='email, mentor_profile.phone, mentor_profile.linkedin, mentor_profile.twitter' label-email='Email:' + class-email="contact_profil" label-mentor_profile.phone='Phone number:' + class-mentor_profile.phone="contact_profil" widget-email='cs-display-resource-property' widget-mentor_profile.phone='cs-display-resource-property' widget-mentor_profile.linkedin='cs-display-link' diff --git a/src/includes/mentor/resources/create.pug b/src/includes/mentor/resources/create.pug index b735b925aab5d6d1a5098c9bcffca70948dd47f3..7ba9d9b1219fe2de81020f2ab2a37b7e3620a757 100644 --- a/src/includes/mentor/resources/create.pug +++ b/src/includes/mentor/resources/create.pug @@ -77,5 +77,5 @@ p.p_entete Thank you for enriching our database ! widget-publication_year='sib-form-number' submit-button='Send for validation ->' - next="mentor-resource-list" + next="resource-creation-confirmation" ) \ No newline at end of file diff --git a/src/includes/mentor/resources/detail.pug b/src/includes/mentor/resources/detail.pug index 15d3aae26d47455b540a92d4ba368abd4887c0e2..84265290b564741b382d19c245edba48ffce5d43 100644 --- a/src/includes/mentor/resources/detail.pug +++ b/src/includes/mentor/resources/detail.pug @@ -3,17 +3,16 @@ include ../../components/widgets .block_log.block_creat_count sib-display( bind-resources, - fields='steps, format, content(name, preview_image, description, tags),\ - submitter_info(submitter.name, \ + fields='name, steps, format, content(preview_image, tags),\ + submitter_info(submitter.account.picture, submitter.name, \ submitter.mentor_profile.organisation.name, skills, uri, broken),\ - review.reviewer.name, copyright, specifications(\ + description, review.status, review.reviewer.account.picture, review.reviewer.name, copyright, specifications(\ header_specifications, author, country, language.name,\ - publication_year, field, type.name, sharing), \ + publication_year, fields, sharing), \ edit', widget-submitter.name='cs-display-resource-property', widget-edit='sib-action', - widget-review.reviewer.name='cs-display-resource-property', widget-author='cs-display-resource-property', widget-country='cs-display-resource-property', widget-submitter.mentor_profile.organisation.name='cs-display-resource-property' @@ -22,17 +21,22 @@ include ../../components/widgets widget-skills='cs-display-resource-property' widget-description='cs-display-property' widget-name='cs-display-property' - widget-type.name="cs-display-resource-property" widget-publication_year='cs-display-resource-property' widget-sharing='cs-display-resource-property' widget-language.name='cs-display-resource-property' + widget-submitter.account.picture='cs-account-picture' + widget-broken='cs-broken-action' + widget-review.status='cs-resource-status' + widget-review.reviewer.account.picture='cs-account-picture' + widget-review.reviewer.name='cs-resource-reviewer' + widget-header_specifications='cs-section_header' - label-type.name='Type:' + label-broken='Report broken link' label-sharing='Access:' label-language.name='Language:' - label-publication_year='Publication year:' - label-header_specifications='Specifications' - each-label-format="Format:" + label-publication_year='Year of publication:' + label-header_specifications='Resource specifications' + each-label-format='' label-format='' multiple-format @@ -41,28 +45,43 @@ include ../../components/widgets each-label-steps="Step" multiple-steps - widget-field='cs-display-multiple-property' - label-field='' - each-label-field='Field:' - multiple-field + widget-fields='cs-display-multiple-property' + label-fields='' + each-label-fields='Field:' + multiple-fields label-skills='With this resource, you will be able to:' label-uri='Link to resource' name-uri='original-link' - label-country='Country:', - label-review.reviewer.name='Resource validated by:', + label-country='Country:' label-submitter.mentor_profile.organisation.name='Organisation:', label-author='Author :', label-submitter.name='Resource posted by:', label-edit='Edit', - action-edit='mentor-resource-edit' + label-review='' + action-edit='mentor-resource-edit', + action-broken='resource-report-broken-link' ) sib-display( bind-resources fields="" nested-field="likes" - counter-template="${counter} likes here" + counter-template="<p><i class='fas fa-thumbs-up'></i>${counter}</p>" + ) + + sib-display( + bind-resources + fields="" + nested-field="dislikes" + counter-template="<p><i class='fas fa-thumbs-down'></i>${counter}</p>" + ) + + sib-display( + bind-resources + fields="" + nested-field="conversations" + counter-template="<p>Comments (${counter})</p>" ) sib-conversation( @@ -72,14 +91,13 @@ include ../../components/widgets sib-display( bind-resources, - fields="related_title, related" + nested-field="related" + fields="name, detail" - label-related_title="Related resources:" - widget-related_title='cs-display-title' - label-related="" - widget-related='cs-action' - action-related="mentor-resource-detail" - multiple-related + widget-name='cs-display-property' + label-detail='' + widget-detail='sib-action' + action-detail='mentor-resource-detail' ) diff --git a/src/includes/mentor/resources/list.pug b/src/includes/mentor/resources/list.pug index b077b81270ca6a5560bf56cd97e8fd9a065645e5..185e7b695b0fecef4c7167ea191fbebd36365ed5 100644 --- a/src/includes/mentor/resources/list.pug +++ b/src/includes/mentor/resources/list.pug @@ -41,11 +41,20 @@ div.block_list ) div(id='requests', class="tabcontent") - sib-display( + sib-display.request_accordeon( data-src=`${endpoints.requests}` - fields='content(name, description), field, language.name, target, create', - - label-create='Create associated resource' + fields='content(name, description), info(fields, language.name, target), create', + + label-target='Target audience:' + label-language.name='Language:' + label-fields='Fields:' + each-label-fields='' + multiple-fields + widget-fields='cs-display-multiple-property' + widget-language.name='cs-display-resource-property' + widget-target='cs-display-resource-property' + + label-create='Post a resource' action-create="mentor-resource-create" widget-create='cs-validate-action' ) @@ -54,14 +63,20 @@ div.block_list sib-display#resources-history( bind-user nested-field='resources' - fields='content(name, format, publication_year), actions(review, edit, detail, delete)', - + + fields='content(name, format, publication_year), actions(review.status, detail, edit, delete)', + widget-review.status='cs-resource-status', + + class-name="tit_element_list" widget-format='cs-display-multiple-property' - label-format='Formats: ' + label-format='Formats:' + class-format="contenu_list" + each-label-format='' multiple-format + + class-publication_year="contenu_list" - widget-review='cs-resource-status' widget-publication_year='cs-display-resource-property' label-publication_year='Date of publication:' diff --git a/src/includes/mentor/resources/validate.pug b/src/includes/mentor/resources/validate.pug index 27c1ebd160ecfaea1af79a9c13caa0461c3992f4..fc3853f80b5323c312db84d1ca801bd9f05ca11d 100644 --- a/src/includes/mentor/resources/validate.pug +++ b/src/includes/mentor/resources/validate.pug @@ -8,12 +8,12 @@ sib-router .block_log.block_creat_count sib-display#detail-view( bind-resources, - fields='format, steps, content(name, preview_image, description, tags),\ - submitter_info(submitter.name, \ - submitter.mentor_profile.organisation.name, skills, uri, broken), copyright, specifications(\ + fields='name, steps, format, content(preview_image, tags),\ + submitter_info(submitter.account.picture, submitter.name, \ + submitter.mentor_profile.organisation.name, skills, uri),\ + description, copyright, specifications(\ header_specifications, author, country, language.name,\ - publication_year, field, type.name, sharing), \ - related, improve, refuse', + publication_year, fields, sharing)', widget-submitter.name='cs-display-resource-property', widget-author='cs-display-resource-property', @@ -24,17 +24,19 @@ sib-router widget-skills='cs-display-resource-property' widget-description='cs-display-property' widget-name='cs-display-property' - widget-type.name="cs-display-resource-property" widget-publication_year='cs-display-resource-property' widget-sharing='cs-display-resource-property' widget-language.name='cs-display-resource-property' + widget-submitter.account.picture='cs-account-picture' + widget-broken='cs-broken-action' + widget-header_specifications='cs-section_header' - label-type.name='Type:' + label-broken='Report broken link' label-sharing='Access:' label-language.name='Language:' - label-publication_year='Publication year:' - label-header_specifications='Specifications' - each-label-format="Format:" + label-publication_year='Year of publication:' + label-header_specifications='Resource specifications' + each-label-format='' label-format='' multiple-format @@ -43,37 +45,43 @@ sib-router each-label-steps="Step" multiple-steps - label-related_title="Related resources" - widget-related_title='cs-display-label' - label-related='' - widget-related='cs-display-related-property' - multiple-related - - widget-field='cs-display-multiple-property' - label-field='' - each-label-field='Field:' - multiple-field + widget-fields='cs-display-multiple-property' + label-fields='' + each-label-fields='Field:' + multiple-fields label-skills='With this resource, you will be able to:' label-uri='Link to resource' name-uri='original-link' - label-country='Country:', + label-country='Country:' label-submitter.mentor_profile.organisation.name='Organisation:', label-author='Author :', - label-submitter.name='Resource posted by:', + label-submitter.name='Resource posted by:' + ) - widget-improve='sib-action' - label-improve='Require improvement' - action-improve='improvement-dialog' - class-improve='button_base' + p.p_entete + sib-display.action_button( + bind-resources + fields='improve' - widget-refuse='sib-action' - label-refuse='Report as inappropriate' - action-refuse='refusal-dialog' - class-refuse='button_base' - ) + widget-improve='sib-action' + label-improve='Require improvement' + action-improve='improvement-dialog' + class-improve='button_base' + ) + + p.p_entete + sib-display.action_button( + bind-resources + fields='refuse' + + widget-refuse='sib-action' + label-refuse='Report as inappropriate' + action-refuse='refusal-dialog' + class-refuse='button_base' + ) - sib-form#validation-form( + sib-form#validation-form.action_button( bind-resources nested-field='review' fields='status, reviewer', diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js index 1a58ce4e02e70199cdb95a74d3789a36f08d742c..73ff168c2b5ea01386cdfd1e3bdebaa7d5778070 100644 --- a/src/scripts/coopstarter.js +++ b/src/scripts/coopstarter.js @@ -14,18 +14,21 @@ function openTab(pageName, elmnt) { elmnt.classList.add("active"); } -function linkDatasetToField(detail, targetForm, inputName) { - const validationForm = document.getElementById(targetForm); - const resourceField = validationForm.querySelector(`input[name="${inputName}"]`); - if (resourceField) { - resourceField.value = JSON.stringify({ '@id': detail.dataset.src }); - } +function linkDatasetToField(detail, targetFormName, inputName) { + let targetForm = document.getElementById(targetFormName); + targetForm.addEventListener("populate", event => { + let resourceField = targetForm.querySelector(`input[name="${inputName}"]`); + if (resourceField) { + resourceField.value = JSON.stringify({ '@id': detail.dataset.src }); + resourceField.setAttribute('value', JSON.stringify({ '@id': detail.dataset.src })); + } + }); } function refreshList(formId, listId) { - const form = document.getElementById(formId); + let form = document.getElementById(formId); form.addEventListener("save", event => { - const list = document.getElementById(listId); + let list = document.getElementById(listId); list.dataset.src = list.dataset.src; }); } @@ -33,20 +36,16 @@ function refreshList(formId, listId) { jQuery(document).ready(function($) { // Get the element with id="defaultOpen" and click on it document.getElementById("defaultOpen").click(); - const detail = document.getElementById("detail-view"); - console.log('user account picture', detail); - detail.addEventListener("populate", event => { - const userAccountDataSrc = document.getElementById("user-account-picture"); - console.log('user account picture', userAccountDataSrc); - linkDatasetToField(userAccountDataSrc, 'validation-form', 'reviewer'); - linkDatasetToField(userAccountDataSrc, 'refusal-dialog-form', 'reviewer'); - linkDatasetToField(userAccountDataSrc, 'improvement-dialog-form', 'reviewer'); - }); - - refreshList("resource-creation-form", "resources-history"); - refreshList("validation-form", "pending-resources"); - refreshList("refusal-dialog-form", "pending-resources"); - refreshList("improvement-dialog-form", "pending-resources"); + + let userAccountDataSrc = document.getElementById("user-account-picture"); + linkDatasetToField(userAccountDataSrc, 'validation-form', 'reviewer'); + linkDatasetToField(userAccountDataSrc, 'improvement-dialog-form', 'reviewer'); + linkDatasetToField(userAccountDataSrc, 'refusal-dialog-form', 'reviewer'); + + refreshList("resource-creation-form", "resources-history"); + refreshList("validation-form", "pending-resources"); + refreshList("refusal-dialog-form", "pending-resources"); + refreshList("improvement-dialog-form", "pending-resources"); const logoutButton = document.getElementById('logout-button'); logoutButton.addEventListener('click', function() { diff --git a/src/styles/index.scss b/src/styles/index.scss index 74a46edf5c9b07365a745d255aa31aeb996b27bb..6f55b44dc2f1b5becaf762a14d0a5fb2a5864e80 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -122,14 +122,14 @@ img{ width: auto; } -.flex, sib-set-default,#resources-history>div div{ +.flex, sib-set-default,#resources-history>div div, #entrepreneur-new-account sib-form form{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } -.flex_espace, sib-set-default,#resources-history>div div{ +.flex_espace, sib-set-default,#resources-history>div div, #entrepreneur-new-account sib-form form{ justify-content: space-between; } sib-set-default[name="actions"]{ @@ -218,7 +218,7 @@ body{ margin: 0 auto; } -.button_base, input[type="submit"]{ +.button_base, input[type="submit"], #mentor-resource-detail a,.sib-conversation form input[type="submit"]{ transition: all .3s ease-in-out; background-color: var(--bg-btn-base); color: var(--bg-block); @@ -231,8 +231,9 @@ body{ box-shadow: none; border-radius: 20px; width: auto; + cursor: pointer; } -.button_base:hover,, input[type="submit"]:hover{ +.button_base:hover, input[type="submit"]:hover, #mentor-resource-detail a:hover,.sib-conversation form input[type="submit"]:hover{ background-color: var(--bg-block); color: var(--bg-btn-base); } @@ -249,6 +250,7 @@ body{ border: 2px solid #444C4D; box-shadow: none; width: auto; + cursor: pointer; } .button_dark:hover{ background-color: var(--bg-block); @@ -279,6 +281,7 @@ p{ font-family: 'var(--typo-btn)'; transition: all .3s ease-in-out; margin: 3rem; + cursor: pointer; } .backlink:hover{ @@ -299,6 +302,7 @@ p{ display: inline-block; text-align: center; text-decoration: none; + cursor: pointer; } .add_browse:hover{ @@ -317,6 +321,7 @@ p{ font-size: 1.4rem; border:none; position: relative; + cursor: pointer; } .btn_filtre:after{ font-family: "Font Awesome 5 pro"; @@ -333,7 +338,7 @@ p{ /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX ICONES XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ -.ico_gauche{ +.ico_gauche, #mentor-resource-detail a{ padding-left: 3.5rem; position: relative; } @@ -342,7 +347,7 @@ p{ position: relative; } -.ico_gauche:before,ico_droite:before{ +.ico_gauche:before,ico_droite:before, #mentor-resource-detail a:before{ font-family: "Font Awesome 5 pro"; font-weight: 900; position : absolute; @@ -366,6 +371,9 @@ ico_droite:before{ .ico_search:before{ content: "\f002"; } +#mentor-resource-detail a:before{ /* ico link to ressource dans détail ressources*/ + content:"\f0c1"; +} /*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx FIN ICONE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ @@ -424,7 +432,7 @@ input, textarea, select, form .ss-main .ss-multi-selected{ input:focus, textarea:focus{ background: var(--bg-form-focus); } -.title_form, cs-section_introduction h2{ +.title_form, cs-section_introduction h2, div#mentor-resource-detail cs-display-property[name="name"] p{ font-family: 'var(--typo)'; font-size: 2.2rem; text-align: left; @@ -470,6 +478,14 @@ input:focus, textarea:focus{ border-radius: 50%; margin: 0 3rem 0 0; background: url(../images/telecharger.png) no-repeat 52% 67% var(--bg-form); + cursor: pointer; +} + +.input_photo label>input[type="file"]{ + position: absolute; + left: 0; + height: 100px; + opacity: 0; } sib-form-label-text[name="iframe_link"] div{ @@ -640,7 +656,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ } .button__actions>div { - display: inline-block + display: inline-block; } /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX @@ -661,6 +677,15 @@ h2.title_create{ } +/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +XXXXXXXXXXXXXXXXXXXXXXXX PAGE CREATE COMPTE ENTREPRISE XXXXX +XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ + +#entrepreneur-new-account sib-form form input[type="submit"]{ //Tempo en fonction champs present + margin-top: 10rem; +} + /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXX LISTE RESSOURCE XXXXXXXXXXXXXXXXXX @@ -759,13 +784,33 @@ sib-set-default[name="content"]>*{ font-size: 1.4rem; } +div .tit_element_list{ + color: var(--clr-roll-black); + font-size: 1.6rem; +} + +.contenu_list{ + height: 0; +} + +.contenu_list cs-display-multiple-property{ + display: block; +} + +div .contenu_list p, div .contenu_list label{ + color: var(--clr-typo-base); + font-size: 1.4rem; + float: left; + margin-right: 1rem; +} + sib-display-value,sib-multiple label,cs-resource-status div{ font-weight: bold; } sib-multiple label{ margin-right: 1rem; } -#resources-history cs-resource-status[name="review"]{ +#resources-history cs-resource-status[name="review.status"]{ width: 100%; display: block; text-align: right; @@ -783,7 +828,7 @@ sib-multiple label{ &:hover{ color: var(--clr-roll-black); } - } +} sib-multiple label, cs-resource-status[name="review.status"]+*{ float: left; width: auto; @@ -801,7 +846,101 @@ sib-multiple label, cs-resource-status[name="review.status"]+*{ /*XXXXXXXXXXXXXXXXXXXXX DETAIL RESSOURCES XXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ +cs-display-step-property[label="Step"] p{ + font-weight: bold; + border-bottom: #5DC6F2 solid 3px; + width: auto; + float: left; + padding-bottom: .5rem; +} +cs-display-multiple-property[label="Format:"] p{ + width: auto; + float: right; + padding-bottom: .5rem; +} +sib-multiple[name="format"] + *{ + clear: both; +} +sib-set-default[name="submitter_info"]{ + display: block; + cs-display-resource-property:first-child b{ + display: block; + } + p{ + font-size: 1.4rem; + margin-bottom: 1rem; + } +} +#mentor-resource-detail a{ + text-decoration: none; + display: inline-block; + margin: 3rem 0; +} + +sib-set-default[name="specifications"]>cs-display-resource-property, +sib-set-default[name="specifications"]>sib-multiple { + display: block; + float: left; + width: 33%; + border: 1px solid var(--bg-page); + padding: 2rem 0; + background: var(--bg-form-focus); + margin-top: 1px; + p{ + text-align: center; + margin:0; + font-size: 1.4rem; + } +} + +.sib-conversation div.conversation-form{ + border: none; + position: relative; +} + +div.sib-conversation textarea{ + border-radius: 0; + background: white; + height: 4.5rem; + padding: 1.5rem 1rem 1rem 3.2rem; + font-size: 1.6rem; +} + +div.sib-conversation div.conversation-form:before{ + content: "\f27a"; + font-family: "Font Awesome 5 pro"; + font-weight: 900; + position : absolute; + display: block; + width: 1.5rem; + height: 1.5rem; + top: 5.5rem; + left: 2rem; + color: var(--bg-btn-base); +} +.sib-conversation form{ + overflow: hidden; + input[type="submit"]{ + float: right; + } +} + +div#requests.tabcontent sib-display.request_accordeon div div> sib-display-value{ + font-family: 'var(--typo-btn)'; + font-size: 1.2rem; + color: var(--clr-typo-base); + float: left; +} + +div#requests.tabcontent sib-display.request_accordeon div div> sib-set-default >sib-display-value{ + color: #444C4D; +} + +cs-validate-action div{ + clear: both; + text-align: right; + } /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXX PROFILE XXXXXXXXXXXXXXXXXXXXX @@ -864,6 +1003,10 @@ cs-display-property[name="mentor_profile.country"] p{ clear: both; } +.contact_profil p{ + color: var(--bg-block); + cursor: pointer; +} /* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXX MEDIA QUERIES XXXXXXXXXXXXXXXXXXXXX