From: <m_h...@us...> - 2006-07-31 17:09:37
|
Revision: 241 Author: m_hildebrand Date: 2006-07-31 10:09:29 -0700 (Mon, 31 Jul 2006) ViewCVS: http://svn.sourceforge.net/tcdb/?rev=241&view=rev Log Message: ----------- Added "add user" icon and appropriate css styles for it Changed the order of items in the footer Modified Paths: -------------- Website/Administration.aspx Website/App_Themes/Python/python.css Website/Includes/Footer.ascx Added Paths: ----------- Website/App_Themes/Python/Images/user_add_32.png Modified: Website/Administration.aspx =================================================================== --- Website/Administration.aspx 2006-07-31 15:39:18 UTC (rev 240) +++ Website/Administration.aspx 2006-07-31 17:09:29 UTC (rev 241) @@ -9,7 +9,7 @@ <tr> <td align="center" valign="middle"> <!-- ***NONPRODUCTION***<asp:LinkButton ID="newProduct" runat="server" PostBackUrl="~/Product.aspx?mode=new">New Product</asp:LinkButton> --> - <asp:LinkButton ID="newUser" runat="server" PostBackUrl="~/UserSettings.aspx?mode=new">New User</asp:LinkButton></td> + <div class="button"><asp:LinkButton ID="newUser" runat="server" PostBackUrl="~/UserSettings.aspx?mode=new"><img src="App_Themes/Python/Images/user_add_32.png" alt="New User" />New User</asp:LinkButton></div></td> </tr> </table> </asp:Content> Added: Website/App_Themes/Python/Images/user_add_32.png =================================================================== (Binary files differ) Property changes on: Website/App_Themes/Python/Images/user_add_32.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: Website/App_Themes/Python/python.css =================================================================== --- Website/App_Themes/Python/python.css 2006-07-31 15:39:18 UTC (rev 240) +++ Website/App_Themes/Python/python.css 2006-07-31 17:09:29 UTC (rev 241) @@ -121,6 +121,18 @@ list-style-type: circle; } +.button +{ + display: inline; +} + +.button IMG +{ + display: block; + border: none; +} + + /********** END Global Classes **********/ /********** BEGIN Calendar Classes **********/ Modified: Website/Includes/Footer.ascx =================================================================== --- Website/Includes/Footer.ascx 2006-07-31 15:39:18 UTC (rev 240) +++ Website/Includes/Footer.ascx 2006-07-31 17:09:29 UTC (rev 241) @@ -1,6 +1,5 @@ <%@ Control Language="C#" AutoEventWireup="true" Inherits="Footer" CodeFile="Footer.ascx.cs" %> -\xA9 2006 <a href="http://www.quest.com">Quest Software, Inc.</a> | TCDB -<%= TCDB.Common.ConfigDB.GetConfigString("tcdb_version") %> +\xA9 2006 <a href="http://www.quest.com">Quest Software, Inc.</a> <% if (m_user.ISAUTHENTICATED) { @@ -9,5 +8,7 @@ Map</a><% } %> + | TCDB +<%= TCDB.Common.ConfigDB.GetConfigString("tcdb_version") %> | Page loaded in <%= PageLoad() %> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |