update: wip on the 'Leave button'

This commit is contained in:
gaelle morin 2020-04-13 10:41:04 +02:00
parent 43d17d7b1c
commit 55c8b2019c
No known key found for this signature in database
GPG Key ID: 028426702B95CF9C
3 changed files with 64 additions and 32 deletions

View File

@ -1,7 +1,7 @@
script(src="/scripts/index.js")
//- Scripts - use add `"libLocal" = true` on config.json to use your local `lib` folder
if libLocal
//-if libLocal
script(type="module" src="/lib/sib-oidc/index.js")
script(type="module" src="/lib/sib-router/src/index.js")
script(type="module" src="/lib/sib-notifications/index.js")
@ -20,7 +20,7 @@ if libLocal
if endpoints.dashboard || (endpoints.get && endpoints.get.dashboard)
>>>>>>> 7e58f36... update: test in dependencies
script(type="module" src="/lib/sib-dashboard/sib-dashboard.js")
else
//-else
script(type="module" src="https://unpkg.com/@startinblox/oidc@0.8")
script(type="module" src="https://unpkg.com/@startinblox/core@0.9")
script(type="module" src="https://unpkg.com/@startinblox/router@0.7")
@ -48,36 +48,36 @@ else
//- script(src="/scripts/index.js")
//- Scripts - use add `"libLocal" = true` on config.json to use your local `lib` folder
//-
if libLocal
script(type="module" src="/lib/sib-oidc/index.js")
script(type="module" src="/lib/sib-router/src/index.js")
script(type="module" src="/lib/sib-notifications/index.js")
if endpoints.users || (endpoints.get && endpoints.get.users)
script(type="module" src="/lib/sib-chat/sib-chat.js")
if endpoints.events || (endpoints.get && endpoints.get.events)
script(type="module" src="/lib/sib-event/sib-event.js")
if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers)
script(type="module" src="/lib/sib-job-board/sib-job-board.js")
script(type="module" src="/lib/sib-conversation/sib-conversation.js")
if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users))
script(type="module" src="/lib/sib-directory/sib-directory.js")
else
script(type="module" src="https://unpkg.com/@startinblox/oidc@0.8")
script(type="module" src="https://unpkg.com/@startinblox/core@0.9")
script(type="module" src="https://unpkg.com/@startinblox/router@0.7")
script(type="module" src="https://unpkg.com/@startinblox/component-notifications@0.3")
if endpoints.users || (endpoints.get && endpoints.get.users)
script(type="module" src="https://unpkg.com/@startinblox/component-chat@0.5")
if endpoints.events || (endpoints.get && endpoints.get.events)
script(type="module" src="https://unpkg.com/@startinblox/component-event@0.1")
if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers)
script(type="module" src="https://unpkg.com/@startinblox/component-job-board@0.3")
script(type="module" src="https://unpkg.com/@startinblox/component-conversation@0.3")
if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users))
script(type="module" src="https://unpkg.com/@startinblox/component-directory@0.3")
script(type="module" src="/lib/sib-dashboard/sib-dashboard.js")
if libLocal
script(type="module" src="/lib/sib-oidc/index.js")
script(type="module" src="/lib/sib-router/src/index.js")
script(type="module" src="/lib/sib-notifications/index.js")
if endpoints.users || (endpoints.get && endpoints.get.users)
script(type="module" src="/lib/sib-chat/sib-chat.js")
if endpoints.events || (endpoints.get && endpoints.get.events)
script(type="module" src="/lib/sib-event/sib-event.js")
if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers)
script(type="module" src="/lib/sib-job-board/sib-job-board.js")
script(type="module" src="/lib/sib-conversation/sib-conversation.js")
if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users))
script(type="module" src="/lib/sib-directory/sib-directory.js")
else
script(type="module" src="https://unpkg.com/@startinblox/oidc@0.8")
script(type="module" src="https://unpkg.com/@startinblox/core@0.9")
script(type="module" src="https://unpkg.com/@startinblox/router@0.7")
script(type="module" src="https://unpkg.com/@startinblox/component-notifications@0.3")
if endpoints.users || (endpoints.get && endpoints.get.users)
script(type="module" src="https://unpkg.com/@startinblox/component-chat@0.5")
if endpoints.events || (endpoints.get && endpoints.get.events)
script(type="module" src="https://unpkg.com/@startinblox/component-event@0.1")
if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers)
script(type="module" src="https://unpkg.com/@startinblox/component-job-board@0.3")
script(type="module" src="https://unpkg.com/@startinblox/component-conversation@0.3")
if publicDirectory && (endpoints.users || (endpoints.get && endpoints.get.users))
script(type="module" src="https://unpkg.com/@startinblox/component-directory@0.3")
script(type="module" src="/lib/sib-dashboard/sib-dashboard.js")

View File

@ -6,4 +6,36 @@
.admin-header__title {
@extend h3;
}
}
#admin-circle-list {
/* Allow click on the sib-delete instead of only on the button */
sib-delete {
background: none;
border: none;
position: relative;
background: purple;
border: purple;
width: 122px;
height: 17px;
}
.patate>button {
display: inline-block;
background: none;
border: none;
position: absolute;
z-index: 1000;
left: 0;
color: white;
width: 100%;
text-align: center;
}
}
sib-delete::before{
position: absolute;
z-index: 900;
left: 1rem;
}

View File

@ -46,7 +46,7 @@
sib-widget(name='admin-circle-leave-button')
template
sib-delete(
class='button text-bold text-uppercase reversed button-dark bordered with-icon icon-close'
class='button text-bold text-uppercase reversed button-dark bordered with-icon icon-close patate'
data-src="${src}"
data-label='Leave circle'
)