ui : members & job-offers form search
This commit is contained in:
parent
723419b6b3
commit
5d4f9fd214
@ -1,20 +1,5 @@
|
|||||||
div.containerH
|
div.containerH.reverse
|
||||||
div.containerV.grow
|
|
||||||
h1 New offers
|
|
||||||
span Here you can find and post offers
|
|
||||||
sib-display#offers-list(
|
|
||||||
data-src=`${sdn}/job-offers/`,
|
|
||||||
data-fields='date, user-thumb, title, description, skills',
|
|
||||||
widget-skills='sib-display-lookuplist',
|
|
||||||
set-user-thumb='author.member.avatar, author.first_name, author.last_name'
|
|
||||||
widget-author.member.avatar='sib-display-img',
|
|
||||||
set-date='closingDate, creationDate',
|
|
||||||
widget-closingDate='hdapp-closing-date',
|
|
||||||
set-searchset='title, description, skills',
|
|
||||||
search-fields='searchset'
|
|
||||||
)
|
|
||||||
div.containerV.fix
|
div.containerV.fix
|
||||||
|
|
||||||
div.containerH.containerCenter.action-link
|
div.containerH.containerCenter.action-link
|
||||||
div.containerV.fix.icon-plus
|
div.containerV.fix.icon-plus
|
||||||
div.containerV.fix
|
div.containerV.fix
|
||||||
@ -27,3 +12,17 @@ div.containerH
|
|||||||
div.containerV.fix.icon-idea
|
div.containerV.fix.icon-idea
|
||||||
div.containerV.grow
|
div.containerV.grow
|
||||||
sib-trigger() How to set notification ?
|
sib-trigger() How to set notification ?
|
||||||
|
div.containerV.grow
|
||||||
|
h1 New offers
|
||||||
|
span Here you can find and post offers
|
||||||
|
sib-display#offers-list(
|
||||||
|
data-src=`${sdn}/job-offers/`,
|
||||||
|
data-fields='date, user-thumb, title, description, skills',
|
||||||
|
widget-skills='sib-display-lookuplist',
|
||||||
|
set-user-thumb='author.member.avatar, author.first_name, author.last_name'
|
||||||
|
widget-author.member.avatar='sib-display-img',
|
||||||
|
set-date='closingDate, creationDate',
|
||||||
|
widget-closingDate='hdapp-closing-date',
|
||||||
|
set-content='title, description',
|
||||||
|
search-fields='content,skills,open'
|
||||||
|
)
|
||||||
|
@ -1,4 +1,13 @@
|
|||||||
div.containerH
|
div.containerH.reverse
|
||||||
|
div.containerV.fix
|
||||||
|
div.containerH.containerCenter.how-link
|
||||||
|
div.containerV.fix.icon-idea
|
||||||
|
div.containerV.grow
|
||||||
|
sib-trigger() How To...
|
||||||
|
div.containerH.containerCenter.how-link
|
||||||
|
div.containerV.fix.icon-idea
|
||||||
|
div.containerV.grow
|
||||||
|
sib-trigger() How to complete my profile ?
|
||||||
div.containerV.grow
|
div.containerV.grow
|
||||||
h1 Members
|
h1 Members
|
||||||
sib-display#profiles-list(
|
sib-display#profiles-list(
|
||||||
@ -16,8 +25,8 @@ div.containerH
|
|||||||
widget-cell='hdapp-usercell',
|
widget-cell='hdapp-usercell',
|
||||||
widget-roles='sib-display-lookuplist',
|
widget-roles='sib-display-lookuplist',
|
||||||
widget-skills='sib-display-lookuplist',
|
widget-skills='sib-display-lookuplist',
|
||||||
set-searchset='pseudo',
|
set-name='pseudo,user.first_name',
|
||||||
search-fields='pseudo, skills, roles',
|
search-fields='name, skills, roles',
|
||||||
next='member')
|
next='member')
|
||||||
|
|
||||||
//- sib-display#profiles-list(
|
//- sib-display#profiles-list(
|
||||||
@ -35,12 +44,3 @@ div.containerH
|
|||||||
set-searchset='last_name',
|
set-searchset='last_name',
|
||||||
search-fields='searchset',
|
search-fields='searchset',
|
||||||
next='member')
|
next='member')
|
||||||
div.containerV.fix
|
|
||||||
div.containerH.containerCenter.how-link
|
|
||||||
div.containerV.fix.icon-idea
|
|
||||||
div.containerV.grow
|
|
||||||
sib-trigger() How To...
|
|
||||||
div.containerH.containerCenter.how-link
|
|
||||||
div.containerV.fix.icon-idea
|
|
||||||
div.containerV.grow
|
|
||||||
sib-trigger() How to complete my profile ?
|
|
||||||
|
@ -226,6 +226,38 @@ hdapp-available {
|
|||||||
grid-gap: 1em;
|
grid-gap: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#profiles-list>sib-form>form{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 50% 50%;
|
||||||
|
label{
|
||||||
|
flex-basis :5em;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
input{
|
||||||
|
flex-grow:1;
|
||||||
|
min-width:0;
|
||||||
|
}
|
||||||
|
input[type="submit"]{
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#offers-list>sib-form>form{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 50% 50%;
|
||||||
|
label{
|
||||||
|
flex-basis :5em;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
input{
|
||||||
|
flex-grow:1;
|
||||||
|
min-width:0;
|
||||||
|
}
|
||||||
|
input[type="submit"]{
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#member-profile,
|
#member-profile,
|
||||||
#profiles-list {
|
#profiles-list {
|
||||||
ul {
|
ul {
|
||||||
|
@ -105,3 +105,8 @@ sib-form {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sib-form-label-text{
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
@ -276,6 +276,7 @@ sib-trigger.back {
|
|||||||
|
|
||||||
.containerH {
|
.containerH {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.containerV {
|
.containerV {
|
||||||
@ -298,3 +299,7 @@ sib-trigger.back {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.reverse{
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user