Changeset 1285
- Timestamp:
- 02/12/07 02:06:12
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r1284 r1285 690 690 table.scheduling td { 691 691 white-space: nowrap; 692 } 693 table.scheduling td.acls { 694 white-space: normal; 695 } 696 table.scheduling .grant { 697 color: #080; 698 background-color: inherit; 699 } 700 table.scheduling .deny { 701 color: #800; 702 background-color: inherit; 692 703 } 693 704 table#manage td { trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1284 r1285 3468 3468 <input type="text" name="who" size="20"/> 3469 3469 <input type="radio" value="user" name="whoType" checked="checked"/> user 3470 <input type="radio" value="group" name="whoType"/> group 3471 </p> 3472 <p>OR</p> 3473 <p> 3474 <input type="radio" value="auth" name="whoType"/> authenticated<br/> 3475 <input type="radio" value="other" name="whoType"/> other users 3476 </p> 3477 <p> 3470 <input type="radio" value="group" name="whoType"/> group<br/> 3471 OR 3472 <input type="radio" value="auth" name="whoType"/> authenticated 3473 <input type="radio" value="other" name="whoType"/> other users<br/> 3478 3474 <em>note: this will set a user or group's access to 3479 3475 "read-free-busy" and any … … 6712 6708 </xsl:choose> 6713 6709 </td> 6714 <td >6710 <td class="acls"> 6715 6711 <xsl:if test="grant"> 6716 6712 grant: 6717 <xsl:for-each select="grant/*"> 6718 <xsl:value-of select="name(.)"/> 6719 <xsl:if test="position() != last()">, </xsl:if> 6720 </xsl:for-each><br/> 6713 <span class="grant"> 6714 <xsl:for-each select="grant/*"> 6715 <xsl:value-of select="name(.)"/> 6716 <xsl:if test="position() != last()">, </xsl:if> 6717 </xsl:for-each> 6718 </span><br/> 6721 6719 </xsl:if> 6722 6720 <xsl:if test="deny"> 6723 6721 deny: 6724 <xsl:for-each select="deny/*"> 6725 <xsl:value-of select="name(.)"/> 6726 <xsl:if test="position() != last()">, </xsl:if> 6727 </xsl:for-each> 6722 <span class="deny"> 6723 <xsl:for-each select="deny/*"> 6724 <xsl:value-of select="name(.)"/> 6725 <xsl:if test="position() != last()">, </xsl:if> 6726 </xsl:for-each> 6727 </span> 6728 6728 </xsl:if> 6729 6729 </td>
