mirror of
https://github.com/reality/dbot.git
synced 2024-12-25 04:02:39 +01:00
make more l33t
This commit is contained in:
parent
dbac28cad6
commit
3c4974d5ef
@ -23,7 +23,7 @@ var pages = function(dbot) {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
'/grid/:connection': function(req, res) {
|
'/profile/:connection': function(req, res) {
|
||||||
var connection = req.params.connection;
|
var connection = req.params.connection;
|
||||||
var profiles = dbot.db.profiles[connection];
|
var profiles = dbot.db.profiles[connection];
|
||||||
|
|
||||||
|
@ -193,3 +193,34 @@ li.option-votes {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* spaceinvader's thumbnails
|
||||||
|
*/
|
||||||
|
span.nicks {
|
||||||
|
display: none;
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
position: absolute;
|
||||||
|
left: 0px;
|
||||||
|
top: 10px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
div.imgwrap {
|
||||||
|
background-color: #000;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
div.imgwrap > img {
|
||||||
|
-webkit-transition: all 0.2s ease-in-out;
|
||||||
|
-moz-transition: all 0.2s ease-in-out;
|
||||||
|
-o-transition: all 0.2s ease-in-out;
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail:hover > div.imgwrap > img {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail:hover > div.imgwrap > span.nicks {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
@ -92,3 +92,6 @@ block content
|
|||||||
#{chan.fields.wpl.data}
|
#{chan.fields.wpl.data}
|
||||||
td
|
td
|
||||||
#{chan.fields.in_mentions.data}
|
#{chan.fields.in_mentions.data}
|
||||||
|
ul.pager
|
||||||
|
li.previous
|
||||||
|
a(href='/profile/'+connection) ← Back to #{connection}.
|
||||||
|
@ -4,10 +4,11 @@ block content
|
|||||||
div.page-header.profile_page-header
|
div.page-header.profile_page-header
|
||||||
h1
|
h1
|
||||||
#{connection}
|
#{connection}
|
||||||
div.span9
|
ul.thumbnails
|
||||||
each profile, key in profiles
|
each profile, key in profiles
|
||||||
if profile.hasOwnProperty('profile') && profile.profile.avatar
|
if profile.hasOwnProperty('profile') && profile.profile.avatar
|
||||||
div.span2
|
li.span2
|
||||||
a(href='/profile/'+connection+'/'+encodeURIComponent(key))
|
a.thumbnail(href='/profile/'+connection+'/'+encodeURIComponent(key))
|
||||||
h3= profile.profile.primary
|
div.imgwrap
|
||||||
img.profile_avatar(src="#{profile.profile.avatar}")
|
img(src="#{profile.profile.avatar}", alt="#{key}'s photo")
|
||||||
|
span.nicks #{profile.profile.primary}
|
||||||
|
@ -7,4 +7,4 @@ block content
|
|||||||
#modulelinks
|
#modulelinks
|
||||||
-each connection in connections
|
-each connection in connections
|
||||||
a.module(href='/channels/'+connection) #{connection}
|
a.module(href='/channels/'+connection) #{connection}
|
||||||
a.module(href='/grid/'+connection) #{connection} headshots
|
a.module(href='/profile/'+connection) #{connection} headshots
|
||||||
|
Loading…
Reference in New Issue
Block a user