update: fixing the css for polls in circles as far as I can

This commit is contained in:
Benoit Alessandroni 2020-09-11 19:36:17 +02:00
parent a65a5301e6
commit 5d56589312
3 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,6 @@
.views-container
solid-poll(data-src=`${endpoints.polls || (endpoints.get && endpoints.get.polls)}`
range-base-polls=`${endpoints.pollRangeBase || (endpoints.get && endpoints.get.pollRangeBase)}`
upload-dir=`${endpoints.uploads || (endpoints.get && endpoints.get.uploads)}`
solid-poll(
data-src=`${endpoints.polls || (endpoints.get && endpoints.get.polls)}`
range-base-polls=`${endpoints.pollRangeBase || (endpoints.get && endpoints.get.pollRangeBase)}`
upload-dir=`${endpoints.uploads || (endpoints.get && endpoints.get.uploads)}`
)

View File

@ -8,7 +8,7 @@ solid-poll > div {
text-transform: inherit;
}
/*style of poll listing*/
#pollListing {
#default-pollListing, #circles-pollListing {
margin: auto;
.headline {
h2 {
@ -158,7 +158,7 @@ solid-poll > div {
}
}
/*personnalise css on poll page*/
#pollPage {
#default-pollPage, #circles-pollPage {
width: 90%;
max-width: 1110px;
margin: auto;
@ -368,11 +368,11 @@ solid-poll > div {
}
}
#polls {
#polls, #default-polls, #circles-polls {
.views-container {
background-color: #f0f3f6;;
}
#add-survey {
#circles-add-survey, #default-add-survey {
background-color: white;
padding: 50px 0;
margin: -20px auto;
@ -508,7 +508,7 @@ solid-poll > div {
}
}
#circle-polls #pollListing .all-polls solid-form solid-form-placeholder-text input {
#circle-polls #circles-pollListing .all-polls solid-form solid-form-placeholder-text input {
background-color: #f0f3f6;
}

View File

@ -1,5 +1,9 @@
#circle-polls
solid-poll(
class='w700'
id-prefix='circles'
bind-resources
nested-field="polls"
range-base-polls=`${endpoints.pollRangeBase || (endpoints.get && endpoints.get.pollRangeBase)}`
upload-dir=`${endpoints.uploads || (endpoints.get && endpoints.get.uploads)}`
)