From: <m_h...@us...> - 2006-07-31 20:33:28
|
Revision: 244 Author: m_hildebrand Date: 2006-07-31 13:33:18 -0700 (Mon, 31 Jul 2006) ViewCVS: http://svn.sourceforge.net/tcdb/?rev=244&view=rev Log Message: ----------- Added more icons Modified Paths: -------------- Website/App_Themes/Python/Python.skin Website/App_Themes/Python/python.css Website/Includes/ActionItems.ascx Website/Includes/Assignments.ascx.cs Added Paths: ----------- Website/App_Themes/Python/Images/priority_high_large.png Website/App_Themes/Python/Images/priority_high_small.png Removed Paths: ------------- Website/App_Themes/Python/Images/important.png Deleted: Website/App_Themes/Python/Images/important.png =================================================================== (Binary files differ) Added: Website/App_Themes/Python/Images/priority_high_large.png =================================================================== (Binary files differ) Property changes on: Website/App_Themes/Python/Images/priority_high_large.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Copied: Website/App_Themes/Python/Images/priority_high_small.png (from rev 242, Website/App_Themes/Python/Images/important.png) =================================================================== (Binary files differ) Modified: Website/App_Themes/Python/Python.skin =================================================================== --- Website/App_Themes/Python/Python.skin 2006-07-31 20:21:40 UTC (rev 243) +++ Website/App_Themes/Python/Python.skin 2006-07-31 20:33:18 UTC (rev 244) @@ -22,4 +22,7 @@ --%> <asp:GridView runat="server" SkinId="assignments" Width="100%" /> <asp:Image runat="server" SkinId="newUserImage" ImageUrl="Images/user_add_32.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="" /> +<asp:Image runat="server" SkinId="priority_normal_large" ImageUrl="" /> \ No newline at end of file Modified: Website/App_Themes/Python/python.css =================================================================== --- Website/App_Themes/Python/python.css 2006-07-31 20:21:40 UTC (rev 243) +++ Website/App_Themes/Python/python.css 2006-07-31 20:33:18 UTC (rev 244) @@ -597,6 +597,43 @@ } /************** END Filters Content *************/ +/************* BEGIN Priority Classes ************/ +.priority_high_small, .priority_high_large, .priority_normal_small, .priority_normal_large +{ + display: inline; + padding: 0; + margin: 0; +} + +.priority_high_small +{ + background-image: url(images/priority_high_small.png); + margin-left: 1px; + background-repeat: no-repeat; + width: 12px; + height: 11px; + min-width: 12px; + min-height: 11px; + display: block; +} + +#aiContent .top .priority +{ + display: inline; + position: relative; + top: 2px; +} + +.priority_high_large +{ + background-image: url(images/priority_high_large.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; + padding: 1px 9px 1px 9px; +} +/************ END Priority Classes *************/ + /************* DEBUGGING ***************/ /* #MainContent @@ -649,66 +686,13 @@ */ -#Assignments .priority_high, #Assignments .priority_normal -{ - display: inline; -} -#Assignments .priority_high -{ - background-image: url(images/important.png); - padding: 0; - margin: 0 0 0 1px; - background-repeat: no-repeat; - width: 12px; - height: 11px; - min-width: 12px; - min-height: 11px; - display: block; -} -.priority_normal -{ - display: inline; -} -.priority_high -{ - color: red; - text-align: center; - display: inline; -} /* -#aiContent .top .priority -{ - display: inline; - position: relative; - top: 2px; -} -#ActionItem .priority_high, #ActionItem .priority_normal, #WorkOrder .priority_high, #WorkOrder .priority_normal -{ - display: inline; -} -#ActionItem .priority_high, #WorkOrder .priority_high -{ - background-image: url(images/priority_high_large.gif); - padding: 0; - margin: 0; - background-repeat: no-repeat; - width: 11px; - height: 11px; - min-width: 11px; - min-height: 11px; - display: block; -} - - - - - #ActionItem { width: 100%; Modified: Website/Includes/ActionItems.ascx =================================================================== --- Website/Includes/ActionItems.ascx 2006-07-31 20:21:40 UTC (rev 243) +++ Website/Includes/ActionItems.ascx 2006-07-31 20:33:18 UTC (rev 244) @@ -62,7 +62,7 @@ <div class="top"> <h2> <asp:Literal ID="priority_high" runat="server" Visible='<%# Eval("highPriority") %>' - Text='<div class="priority_high"></div>'></asp:Literal> + Text='<div class="priority_high_large"> </div>'></asp:Literal> <asp:Label ID="nameLabel" runat="server" Text='<%# Eval("name") %>'></asp:Label></h2> </div> <div class="bottom"> Modified: Website/Includes/Assignments.ascx.cs =================================================================== --- Website/Includes/Assignments.ascx.cs 2006-07-31 20:21:40 UTC (rev 243) +++ Website/Includes/Assignments.ascx.cs 2006-07-31 20:33:18 UTC (rev 244) @@ -124,10 +124,11 @@ // Set priority image bool priority = Convert.ToBoolean(data["highPriority"].ToString()); if (priority) - gRow.Cells[0].Text = "<div class=\"priority_high\"></div>"; + gRow.Cells[0].Text = "<div class=\"priority_high_small\"></div>"; + else - gRow.Cells[0].Text = "<div class=\"priority_normal\"></div>"; - + gRow.Cells[0].Text = "<div class=\"priority_normal_small\"></div>"; + // Set Hyperlink URL int cid = Convert.ToInt32(data["childID"]); String type = data["aType"].ToString(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |