Skip to content

Commit

Permalink
Changed top menu functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Tonoli committed May 3, 2011
1 parent 0a5a2ea commit b321e75
Show file tree
Hide file tree
Showing 10 changed files with 451 additions and 190 deletions.
2 changes: 1 addition & 1 deletion src/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ RewriteEngine on
#
# Internally rewrite shortened URL requests to de-shortened URL lookup script filepath plus query string
RewriteRule ^([\w\d]{4})$ decode.php?decode=$1 [L]
<FilesMatch "\.(gif|jpg|png|js|css)$">
<FilesMatch "\.(gif|jpg|png|js)$">
ExpiresDefault "access plus 10 years"
</FilesMatch>
2 changes: 2 additions & 0 deletions src/container/twitter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div onmouseover="$(this).css('z-index', '100')" onmouseout="$(this).css('z-index', '10')" id="twitter_container" class="draggable panel">

<span>
<div class="header-left" title="Shows latest tweets in the surrounding area for people that have chosen to share their location (100 tweets maximum, English only).">
Twitter
Expand All @@ -22,4 +23,5 @@
<div id="twitter_footer" class="footer"></div>
</div>
</span>
</div>
9 changes: 4 additions & 5 deletions src/css/displaybox.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#displaybox {
z-index: 10000;
filter: alpha(opacity = 50); /*older IE*/
filter: alpha(opacity = 50);
filter: progid : DXImageTransform.Microsoft.Alpha ( opacity =
50 );
/* IE */
-moz-opacity: .50; /*older Mozilla*/
-khtml-opacity: 0.5; /*older Safari*/
opacity: 0.5; /*supported by current Mozilla, Safari, and Opera*/
-moz-opacity: .50;
-khtml-opacity: 0.5;
opacity: 0.5;
background-color: #000000;
position: fixed;
top: 0px;
Expand Down
Loading

0 comments on commit b321e75

Please sign in to comment.