diff options
| author | HumairAK <humair88@hotmail.com> | 2016-08-26 23:10:20 +0000 |
|---|---|---|
| committer | HumairAK <humair88@hotmail.com> | 2016-08-26 23:10:20 +0000 |
| commit | 17a4b5f57e0223b211ab8ff601e587920e6e1bef (patch) | |
| tree | 24db71046a122602ca53e9729a8d5385c5aca55c /assets | |
| parent | 7deb83c56e680769ccc72527d719dbc411c20469 (diff) | |
added some user profile inbox functionality
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/user_profile.css | 13 | ||||
| -rw-r--r-- | assets/js/user_profile.js | 10 |
2 files changed, 21 insertions, 2 deletions
diff --git a/assets/css/user_profile.css b/assets/css/user_profile.css index 39d86b0..042d842 100644 --- a/assets/css/user_profile.css +++ b/assets/css/user_profile.css @@ -1,4 +1,4 @@ -/*** USER PROFILE PAGE ***/ + /*** USER PROFILE PAGE ***/ .user-info-content img{ max-width: 120px; @@ -135,5 +135,16 @@ nav .nav-o:hover .nav-o-container{ } +/* Inbox */ + + +.u-table-row { + display:table-row; + cursor: pointer; +} +.u-table tbody tr:hover{ + background-color: #ededed; +} + /*** USER PROFILE PAGE END ***/
\ No newline at end of file diff --git a/assets/js/user_profile.js b/assets/js/user_profile.js index 73c7897..c26299b 100644 --- a/assets/js/user_profile.js +++ b/assets/js/user_profile.js @@ -42,5 +42,13 @@ function main(){ default: console.log("Error: User page not found"); } - });} + }); + + + + +} + + + $(document).ready(main);
\ No newline at end of file |
