Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update css
  • Loading branch information
ghostandthemachine committed Dec 5, 2012
1 parent 80bf343 commit 15d7912
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
20 changes: 12 additions & 8 deletions lib/public/css/site-styles.css
Expand Up @@ -165,7 +165,7 @@ width:350px;
.element.large h1 {
font-size:24px;
width: 350px;
position: abolsute;
position: absolute;
top: 200px;
}

Expand Down Expand Up @@ -311,28 +311,28 @@ border-bottom: 7px solid #00A3D9;

.element.large .window-pane-buttons btn {
display:inline-block;
*display:inline;
display:inline;
padding:4px 14px;
margin-bottom:0;
*margin-left:.3em;
margin-left:.3em;
font-size:14px;
line-height:20px;
*line-height:20px;
line-height:20px;
color:#333;
text-align:center;
text-shadow:0 1px 1px rgba(255,255,255,0.75);
vertical-align:middle;
cursor:pointer;
background-color:#f5f5f5;
*background-color:#e6e6e6;
background-color:#e6e6e6;
background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);
background-image:-o-linear-gradient(top,#fff,#e6e6e6);
background-image:linear-gradient(to bottom,#fff,#e6e6e6);
background-image:-moz-linear-gradient(top,#fff,#e6e6e6);
background-repeat:repeat-x;
border:1px solid #bbb;
*border:0;
border:0;
border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
border-color:#e6e6e6 #e6e6e6 #bfbfbf;
border-bottom-color:#a2a2a2;
Expand All @@ -341,7 +341,7 @@ border-bottom-color:#a2a2a2;
border-radius:4px;
filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
filter:progid:dximagetransform.microsoft.gradient(enabled=false);
*zoom:1;
zoom:1;
-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)
Expand Down Expand Up @@ -395,7 +395,7 @@ position:absolute;
bottom:0;
left:0;
width:100%;
height:<length>
/*height:<length>*/
}

.nav-search {
Expand Down Expand Up @@ -700,3 +700,7 @@ bottom:14px;
.unfollow-success-msg{
text-align: center;
}

.moz-tile-img {
position: relative;
}
2 changes: 1 addition & 1 deletion lib/views/looking_glass/tile.haml
Expand Up @@ -34,4 +34,4 @@
%a.event-load-btn{href: "/user/#{map[:user_name]}/event/#{map[:id]}"}
More Info
%a.google-event-btn{id: "google-btn-#{map[:id]}", href:"#", class: "#{map[:event].google_calendar_id ? "synched-btn-decoration" : ""}"}
Add to calendar
Add to calendar
7 changes: 7 additions & 0 deletions lib/views/user/dashboard.haml
Expand Up @@ -56,6 +56,9 @@
} else {
$(div_id_name).removeClass("synched-btn-decoration");
}
if ($.browser.mozilla) {
$('.element > img').addClass("moz-tile-img");
}
});
});

Expand Down Expand Up @@ -97,6 +100,10 @@
}
});
}
console.log($('.element > img').addClass("moz-tile-img"));
if ($.browser.mozilla) {
$('.element > img').addClass("moz-tile-img");
}
});
setTimeout(doStuff, 10000);
}
Expand Down

0 comments on commit 15d7912

Please sign in to comment.