From: <fg...@us...> - 2010-02-03 14:15:16
|
Revision: 1794 http://openutils.svn.sourceforge.net/openutils/?rev=1794&view=rev Author: fgiust Date: 2010-02-03 14:15:10 +0000 (Wed, 03 Feb 2010) Log Message: ----------- MEDIA-64 minor graphic changes Modified Paths: -------------- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/folderView.css trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaFolderViewPage.html Modified: trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/folderView.css =================================================================== --- trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/folderView.css 2010-02-03 11:45:55 UTC (rev 1793) +++ trunk/openutils-mgnlmedia/src/main/resources/mgnl-resources/media/css/folderView.css 2010-02-03 14:15:10 UTC (rev 1794) @@ -1,26 +1,3 @@ -/** - * - * Magnolia SimpleMedia Module (http://www.openmindlab.com/lab/products/media.html) - * Copyright (C)2008 - 2010, Openmind S.r.l. http://www.openmindonline.it - * - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * You may obtain a copy of the License at - * - * http://www.gnu.org/licenses/lgpl-2.1.html - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ html,body { margin: 2px 2px 2px 2px; padding: 0; @@ -28,6 +5,10 @@ font-family: Verdana; } +body#mediafolderview { + background-color: #eaeaea; +} + #navigation { position: relative; width: 100%; @@ -89,7 +70,10 @@ height: 195px; font-size: 0.8em; position: relative; - background-color: #f6f6f6; + background-color: #f8f8f8; + -moz-box-shadow: 3px 3px 3px #666; + -webkit-box-shadow: 3px 3px 3px #666; + box-shadow: 3px 3px 3px #666; } .mediaList li.selectMedia { @@ -122,7 +106,8 @@ } body.bg-transparent .image { - background-color: transparent; + background-image: url(../assets/squares.png); + background-repeat: repeat; } body.bg-black .image { @@ -165,16 +150,15 @@ .mediaheader { position: relative; - border-bottom: dotted 1px #cfcfcf; - margin: 0px 3px 5px 3px; - padding: 5px 0 5px 0; + margin: 0px 10px 0 10px; + padding: 5px 0 3px 0; text-align: left; } .mediaheader span.edit { float: right; background: transparent url(images/arrow.gif) no-repeat center right; - padding-right: 8px; + padding-right: 12px; margin-right: 2px; cursor: pointer; } @@ -184,17 +168,28 @@ right: 0; top: 20px; width: 120px; - height: 130px; + height: 140px; background-color: #ffffff; border: 1px solid #cfcfcf; + opacity: 0.90; + filter: alpha(opacity = 90); + -moz-box-shadow: 3px 3px 3px #666; + -webkit-box-shadow: 3px 3px 3px #666; + box-shadow: 3px 3px 3px #666; } .mediaheader .icons a { - padding: 0 0px 0 1px; text-decoration: none; display: block; + color: #000; + height: 20px; + line-height: 18px; } +.mediaheader .icons a.disabled { + color: #666; +} + .mediaheader .icons a span { vertical-align: middle; } @@ -252,11 +247,6 @@ filter: alpha(opacity = 75); } -.multibox img { - background-image: url(../assets/squares.png); - background-repeat: repeat; -} - .sexy-tooltip { font-size: 0.8em; } \ No newline at end of file Modified: trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaFolderViewPage.html =================================================================== --- trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaFolderViewPage.html 2010-02-03 11:45:55 UTC (rev 1793) +++ trunk/openutils-mgnlmedia/src/main/resources/net/sourceforge/openutils/mgnlmedia/media/pages/MediaFolderViewPage.html 2010-02-03 14:15:10 UTC (rev 1794) @@ -90,7 +90,7 @@ showDelay: 100, hideDelay: 200 }); - + $$('.tips').each(function(item){ item.addEvent('click', Tips1.elementEnter.bindWithEvent(Tips1, item)); }); @@ -100,7 +100,7 @@ }); </script> </head> - <body> + <body id="mediafolderview"> <form action="" style="display:none" id="actionForm" method="POST"> <input type="hidden" id="actionCmd" name="command" value="delete" /> <input type="hidden" id="actionPath" name="path" value="${this.path!""}" /> @@ -225,7 +225,7 @@ <span>${this.msgs.get('media.activate')}</span> </a> <#else> - <a title="${this.msgs.get('media.activate')}"> + <a title="${this.msgs.get('media.activate')}" class="disabled"> <img src="${this.request.contextPath}/.resources/media/icons/arrow_right_green_inactive.gif" border="0" align="middle" /> <span>${this.msgs.get('media.activate')}</span> @@ -237,7 +237,7 @@ <span>${this.msgs.get('media.deactivate')}</span> </a> <#else> - <a title="${this.msgs.get('media.deactivate')}"> + <a title="${this.msgs.get('media.deactivate')}" class="disabled"> <img src="${this.request.contextPath}/.resources/icons/16/arrow_left_red_inactive.gif" border="0" align="middle" /> <span>${this.msgs.get('media.deactivate')}</span> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |