From: <m_h...@us...> - 2006-07-31 21:10:27
|
Revision: 246 Author: m_hildebrand Date: 2006-07-31 14:10:19 -0700 (Mon, 31 Jul 2006) ViewCVS: http://svn.sourceforge.net/tcdb/?rev=246&view=rev Log Message: ----------- More pretty icons Modified Paths: -------------- Website/Administration.aspx Website/App_Themes/Python/Python.skin Website/App_Themes/Python/python.css Added Paths: ----------- Website/App_Themes/Python/Images/user_role_48.png Modified: Website/Administration.aspx =================================================================== --- Website/Administration.aspx 2006-07-31 20:39:34 UTC (rev 245) +++ Website/Administration.aspx 2006-07-31 21:10:19 UTC (rev 246) @@ -9,7 +9,15 @@ <tr> <td align="center" valign="middle"> <!-- ***NONPRODUCTION***<asp:LinkButton ID="newProduct" runat="server" PostBackUrl="~/Product.aspx?mode=new">New Product</asp:LinkButton> --> - <div class="button"><asp:LinkButton ID="newUser" runat="server" PostBackUrl="~/UserSettings.aspx?mode=new"><asp:Image runat="server" SkinID="newUserImage" AlternateText="New User" />New User</asp:LinkButton></div></td> + <div class="button"> + <asp:LinkButton ID="newUser" runat="server" PostBackUrl="~/UserSettings.aspx?mode=new"> + <asp:Image ID="newUserIcon" runat="server" SkinID="newUserImage" AlternateText="New User" />New + User</asp:LinkButton></div> + <div class="button"> + <asp:LinkButton ID="userRole" runat="server" PostBackUrl="~/AdminRole.aspx?p=1"> + <asp:Image ID="userRoleIcon" runat="server" SkinID="userRoleImage" AlternateText="User Roles" />User + Roles</asp:LinkButton></div> + </td> </tr> </table> </asp:Content> Added: Website/App_Themes/Python/Images/user_role_48.png =================================================================== (Binary files differ) Property changes on: Website/App_Themes/Python/Images/user_role_48.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: Website/App_Themes/Python/Python.skin =================================================================== --- Website/App_Themes/Python/Python.skin 2006-07-31 20:39:34 UTC (rev 245) +++ Website/App_Themes/Python/Python.skin 2006-07-31 21:10:19 UTC (rev 246) @@ -22,6 +22,7 @@ --%> <asp:GridView runat="server" SkinId="assignments" Width="100%" /> <asp:Image runat="server" SkinId="newUserImage" ImageUrl="Images/user_add_48.png" /> +<asp:Image runat="server" SkinId="userRoleImage" ImageUrl="Images/user_role_48.png" /> <asp:Image runat="server" SkinId="priority_high_small" ImageUrl="Images/priority_high_small.png" /> <asp:Image runat="server" SkinId="priority_high_large" ImageUrl="Images/priority_high_large.png" /> <asp:Image runat="server" SkinId="priority_normal_small" ImageUrl="" /> Modified: Website/App_Themes/Python/python.css =================================================================== --- Website/App_Themes/Python/python.css 2006-07-31 20:39:34 UTC (rev 245) +++ Website/App_Themes/Python/python.css 2006-07-31 21:10:19 UTC (rev 246) @@ -124,12 +124,34 @@ .button { display: inline; + position: relative; + top: 15px; + left: -20px; } +.button LABEL +{ + position: relative; + left: -30px; + top: 3px; + text-decoration: none; +} + +.button A +{ + text-decoration: none; + font-weight: bold; +} + + .button IMG { - display: block; + /*display: block;*/ border: none; + position: relative; + left: 30px; + top: -3px; + z-index: -10; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |