I'd really like to see date formatting on the columns. I'd also like to see a divider between the dates so it is clear which time choices correspond to which dates.

CommentFileSizeAuthor
#3 scheduler.png15.06 KBndstate
#2 479848.patch511 bytesSimon Georges
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

CarbonPig’s picture

You can do this by modifying the pollpanel.css file.

Try adding something like this:

table#pollpanel th{
text-align: center;
font-size: 15px;
border: 1px solid #000000;

You will then see dividers.

Simon Georges’s picture

FileSize
511 bytes

Patch for CSS file (as suggested by @CarbonPig), I just changed the color to match the already existing ones, and only add the color on th.bleft.

ndstate’s picture

FileSize
15.06 KB

Hello,

Is the attached image what it is suppose to look like? I see the added lines in the top row, but is it possible to make those lines darker and go all the way down?

Is my pollpanel.css file correct? I think I had some issues with patching. Thanks!

table#poll_panel th{ border: 1px solid #D6E7F7; }

table#pollpanel td{
font-size: 11px;
border: 1px solid #D6E7F7;
}

table#pollpanel td.ct{ text-align: center; }

table#pollpanel th{  
	text-align: center;
	font-size: 11px;
}
table#pollpanel th.bleft {
  border: 1px solid #D6E7F7;
}

table#pollpanel td.voted_ok{ background: #8DFC92; }
table#pollpanel td.voted_maybe{ background: #F1DE5F; }
table#pollpanel td.voted_no{ background: #FF8B8B; }
table#pollpanel td.green{ background: #8DFC92; }
table#pollpanel td.yellow{ background: #F1DE5F; }
table#pollpanel td.red{ background: #FF8B8B; }
form#makemeeting-pollpanel-form div {
overflow: auto;
}
Simon Georges’s picture

@pmp6nl, I think you patched it fine, you see the separation between dates, so I guess at least the patch works.

I'll try to look into what you're asking tonight regarding darker & all-the-way down lines.

Best regards,

ndstate’s picture

Thank you for your awesome help Simon!

Simon Georges’s picture

@pmp6nl I've looked into it. The patch to have the line all the way done is a little bit too time-consuming for me now, I'd rather have some rewriting of the module by the maintainer. Otherwise, one day, when I have time... ;)

To have the line darker, just add this line :border-left: 2px solid black; into table#pollpanel th.bleft {}. So the final result would be :

table#pollpanel th.bleft {
  border: 1px solid #D6E7F7;
  border-left: 2px solid black;
}

Best regards,
Simon

SebCorbin’s picture

Version: 6.x-1.0 » 6.x-1.x-dev
Status: Active » Closed (fixed)

Patch #2 added.