Changeset 545
- Timestamp:
- 06/07/06 13:40:00
- Files:
-
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/blue.css (modified) (6 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/common.css (modified) (2 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/default.xsl (modified) (4 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/green.css (modified) (3 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/red.css (modified) (3 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/soe.css (modified) (5 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/soe.xsl (modified) (3 diffs)
- trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/images/tentativeLines.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css (modified) (1 diff)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (1 diff)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/tentativeLines.gif (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/blue.css
r535 r545 46 46 color: #333; 47 47 text-decoration: none; 48 }49 #titleBar {50 display: none;51 48 } 52 49 #curDateRangeTable { … … 472 469 color: black; 473 470 } 471 #monthCalendarTable a.eventTentative:link, 472 #monthCalendarTable a.eventTentative:visited, 473 #monthCalendarTable a.eventTentative:active { 474 display: block; 475 padding: 0.1em 0.2em 0.1em 0.2em; 476 text-decoration: none; 477 border-bottom: 1px solid #ccc; 478 border-top: 1px solid #ccc; 479 background: #f0eee5 url('../../images/tentativeLines.gif') top; 480 color: black; 481 } 474 482 #monthCalendarTable a.holiday:link, 475 483 #monthCalendarTable a.holiday:visited, … … 486 494 #monthCalendarTable a.eventLinkB:hover, 487 495 #monthCalendarTable a.eventCancelled:hover, 496 #monthCalendarTable a.eventTentative:hover, 488 497 #monthCalendarTable a.holiday:hover { 489 498 display: block; … … 523 532 padding: 4px; 524 533 border: 1px solid #333; 525 /*opacity: .80;526 filter: alpha(opacity=80);*/527 534 } 528 535 #monthCalendarTable a:hover span.eventTipReverse { … … 536 543 padding: 4px; 537 544 border: 1px solid #333; 538 /*opacity: .80;539 filter: alpha(opacity=80);*/540 545 } 541 546 #monthCalendarTable a:hover span.eventTipStatus { … … 688 693 color: black; 689 694 width: 100%; 695 } 696 #listTable td.description { 697 text-align: left; 698 background-color: white; 699 color: black; 700 width: 100%; 701 } 702 #listTable td.bwStatusCancelled { 703 background-color: #ddd; 704 color: black; 705 } 706 #listTable td.bwStatusTentative { 707 background: white url('../../images/tentativeLines.gif') top; 708 color: black; 690 709 } 691 710 #listTable td.description a { trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/common.css
r353 r545 7 7 border-left: 2px solid #aaa; 8 8 border-right: 2px solid #aaa; 9 background-color: #eee;10 color: black;11 9 } 12 10 h2 a:link, … … 17 15 background-color: inherit; 18 16 text-decoration: none; 17 } 18 h2.bwStatusConfirmed { 19 background-color: #eee; 20 color: black; 21 } 22 h2.bwStatusCancelled { 23 background-color: #eee; 24 color: black; 25 } 26 h2.bwStatusTentative { 27 background: #eee url('../../images/tentativeLines.gif') top; 19 28 } 20 29 /* Header IDs and classes */ trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/default.xsl
r535 r545 64 64 <xsl:variable name="nextdate" select="/bedework/nextdate"/> 65 65 <xsl:variable name="curdate" select="/bedework/currentdate/date"/> 66 <xsl:variable name="skin">default</xsl:variable>67 66 68 67 … … 506 505 <!--==== SINGLE EVENT ====--> 507 506 <xsl:template match="event"> 508 <h2> 507 <xsl:variable name="statusClass"> 508 <xsl:choose> 509 <xsl:when test="status='CANCELLED'">bwStatusCancelled</xsl:when> 510 <xsl:when test="status='TENTATIVE'">bwStatusTentative</xsl:when> 511 <xsl:otherwise>bwStatusConfirmed</xsl:otherwise> 512 </xsl:choose> 513 </xsl:variable> 514 <h2 class="{$statusClass}"> 509 515 <xsl:if test="status='CANCELLED'">CANCELLED: </xsl:if> 510 516 <xsl:choose> … … 758 764 <xsl:variable name="descriptionClass"> 759 765 <xsl:choose> 760 <xsl:when test="status='CANCELLED'">description cancelled</xsl:when> 766 <xsl:when test="status='CANCELLED'">description bwStatusCancelled</xsl:when> 767 <xsl:when test="status='TENTATIVE'">description bwStatusTentative</xsl:when> 761 768 <xsl:otherwise>description</xsl:otherwise> 762 769 </xsl:choose> … … 890 897 <!-- Special styles for the month grid --> 891 898 <xsl:when test="status='CANCELLED'">eventCancelled</xsl:when> 899 <xsl:when test="status='TENTATIVE'">eventTentative</xsl:when> 892 900 <xsl:when test="calendar/name='Holidays'">holiday</xsl:when> 893 901 <!-- Alternating colors for all standard events --> trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/green.css
r496 r545 467 467 color: black; 468 468 } 469 #monthCalendarTable a.eventTentative:link, 470 #monthCalendarTable a.eventTentative:visited, 471 #monthCalendarTable a.eventTentative:active { 472 display: block; 473 padding: 0.1em 0.2em 0.1em 0.2em; 474 text-decoration: none; 475 border-bottom: 1px solid #ccc; 476 border-top: 1px solid #ccc; 477 background: #f0eee5 url('../../images/tentativeLines.gif') top; 478 color: black; 479 } 469 480 #monthCalendarTable a.holiday:link, 470 481 #monthCalendarTable a.holiday:visited, … … 481 492 #monthCalendarTable a.eventLinkB:hover, 482 493 #monthCalendarTable a.eventCancelled:hover, 494 #monthCalendarTable a.eventTentative:hover, 483 495 #monthCalendarTable a.holiday:hover { 484 496 display: block; … … 680 692 #listTable td.description { 681 693 text-align: left; 682 background-color: #fff;683 color: black; 684 width: 100%; 685 } 686 #listTable td. cancelled {694 background-color: white; 695 color: black; 696 width: 100%; 697 } 698 #listTable td.bwStatusCancelled { 687 699 background-color: #ddd; 700 color: black; 701 } 702 #listTable td.bwStatusTentative { 703 background: white url('../../images/tentativeLines.gif') top; 688 704 color: black; 689 705 } trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/red.css
r496 r545 467 467 color: black; 468 468 } 469 #monthCalendarTable a.eventTentative:link, 470 #monthCalendarTable a.eventTentative:visited, 471 #monthCalendarTable a.eventTentative:active { 472 display: block; 473 padding: 0.1em 0.2em 0.1em 0.2em; 474 text-decoration: none; 475 border-bottom: 1px solid #ccc; 476 border-top: 1px solid #ccc; 477 background: #f0eee5 url('../../images/tentativeLines.gif') top; 478 color: black; 479 } 469 480 #monthCalendarTable a.holiday:link, 470 481 #monthCalendarTable a.holiday:visited, … … 481 492 #monthCalendarTable a.eventLinkB:hover, 482 493 #monthCalendarTable a.eventCancelled:hover, 494 #monthCalendarTable a.eventTentative:hover, 483 495 #monthCalendarTable a.holiday:hover { 484 496 display: block; … … 680 692 #listTable td.description { 681 693 text-align: left; 682 background-color: #fff;683 color: black; 684 width: 100%; 685 } 686 #listTable td. cancelled {694 background-color: white; 695 color: black; 696 width: 100%; 697 } 698 #listTable td.bwStatusCancelled { 687 699 background-color: #ddd; 700 color: black; 701 } 702 #listTable td.bwStatusTentative { 703 background: white url('../../images/tentativeLines.gif') top; 688 704 color: black; 689 705 } trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/soe.css
r538 r545 469 469 color: black; 470 470 } 471 #monthCalendarTable a.eventTentative:link, 472 #monthCalendarTable a.eventTentative:visited, 473 #monthCalendarTable a.eventTentative:active { 474 display: block; 475 padding: 0.1em 0.2em 0.1em 0.2em; 476 text-decoration: none; 477 border-bottom: 1px solid #ccc; 478 border-top: 1px solid #ccc; 479 background: #f0eee5 url('../../images/tentativeLines.gif') top; 480 color: black; 481 } 471 482 #monthCalendarTable a.holiday:link, 472 483 #monthCalendarTable a.holiday:visited, … … 483 494 #monthCalendarTable a.eventLinkB:hover, 484 495 #monthCalendarTable a.eventCancelled:hover, 496 #monthCalendarTable a.eventTentative:hover, 485 497 #monthCalendarTable a.holiday:hover { 486 498 display: block; … … 686 698 width: 100%; 687 699 } 688 #listTable td. cancelled {700 #listTable td.bwStatusCancelled { 689 701 background-color: #ddd; 702 color: black; 703 } 704 #listTable td.bwStatusTentative { 705 background: white url('../../images/tentativeLines.gif') top; 690 706 color: black; 691 707 } … … 819 835 border-left: 2px solid #aaa; 820 836 border-right: 2px solid #aaa; 821 background-color: #eee;822 color: black;823 837 } 824 838 h2 a:link, … … 829 843 background-color: inherit; 830 844 text-decoration: none; 845 } 846 h2.bwStatusConfirmed { 847 background-color: #eee; 848 color: black; 849 } 850 h2.bwStatusCancelled { 851 background-color: #eee; 852 color: black; 853 } 854 h2.bwStatusTentative { 855 background: #eee url('../../images/tentativeLines.gif') top; 831 856 } 832 857 /* Header IDs and classes */ trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/soe.xsl
r535 r545 510 510 <!--==== SINGLE EVENT ====--> 511 511 <xsl:template match="event"> 512 <h2> 512 <xsl:variable name="statusClass"> 513 <xsl:choose> 514 <xsl:when test="status='CANCELLED'">bwStatusCancelled</xsl:when> 515 <xsl:when test="status='TENTATIVE'">bwStatusTentative</xsl:when> 516 <xsl:otherwise>bwStatusConfirmed</xsl:otherwise> 517 </xsl:choose> 518 </xsl:variable> 519 <h2 class="{$statusClass}"> 513 520 <xsl:if test="status='CANCELLED'">CANCELLED: </xsl:if> 514 521 <xsl:choose> … … 762 769 <xsl:variable name="descriptionClass"> 763 770 <xsl:choose> 764 <xsl:when test="status='CANCELLED'">description cancelled</xsl:when> 771 <xsl:when test="status='CANCELLED'">description bwStatusCancelled</xsl:when> 772 <xsl:when test="status='TENTATIVE'">description bwStatusTentative</xsl:when> 765 773 <xsl:otherwise>description</xsl:otherwise> 766 774 </xsl:choose> … … 894 902 <!-- Special styles for the month grid --> 895 903 <xsl:when test="status='CANCELLED'">eventCancelled</xsl:when> 904 <xsl:when test="status='TENTATIVE'">eventTentative</xsl:when> 896 905 <xsl:when test="calendar/name='Holidays'">holiday</xsl:when> 897 906 <!-- Alternating colors for all standard events --> trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r476 r545 360 360 margin: 0em; 361 361 padding: 0.3em 0 0.3em 1em; 362 border-left : 1px solid #333;363 border-right : 1px solid #333;362 border-left : 2px solid #333; 363 border-right : 2px solid #333; 364 364 border-bottom: 1px solid Gray; 365 365 color: black; trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r513 r545 22 22 this should be changed to point to a 23 23 web server over https to avoid mixed content errors, e.g., 24 <xsl:variable name="resourcesRoot" select="'https://mywebserver.edu/myresourcesdir'"/>24 <xsl:variable name="resourcesRoot">https://mywebserver.edu/myresourcesdir</xsl:variable> 25 25 --> 26 26 <xsl:variable name="resourcesRoot" select="/bedework/approot"/>
