-
Notifications
You must be signed in to change notification settings - Fork 59
Sup 2409 mobile dashboard #543
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
.sitemap-container | ||
h1.page-header SITEMAP | ||
.sitemap-wrapper | ||
section.sitemap-nav | ||
h2.sitemap-header Compete | ||
ul | ||
li | ||
a(href="/challenges/design/active") Design Challenges | ||
li | ||
a(href="/challenges/develop/active") Development Challenges | ||
li | ||
a(href="/challenges/data/active") Data Science Challenges | ||
li | ||
a(href="//arena.topcoder.com/") Single Round Matches | ||
section.sitemap-nav.hide-small | ||
h2.sitemap-header Learn | ||
ul | ||
li | ||
a(href="/community/design") Design | ||
li | ||
a(href="/community/devlopment") Development | ||
li | ||
a(href="/community/data-science") Data Science | ||
li | ||
a(href="/community/competitive programming") Competitive Programming | ||
section.sitemap-nav | ||
h2.sitemap-header Community | ||
ul | ||
li | ||
a(href="/community") Home | ||
li | ||
a(href="/community/members") Members | ||
li | ||
a(href="/community/member-programs") Programs | ||
li | ||
a(href="//apps.topcoder.com/forums") Forums | ||
li | ||
a(href="/community/statistics") Statistics | ||
li | ||
a(href="/community/events") Events | ||
li | ||
a(href="/blog") Blog | ||
section.sitemap-nav.hide-small | ||
h2.sitemap-header My Account | ||
ul | ||
li | ||
a(href="/my-dashboard") Dashboard | ||
li | ||
a(href="/members/") My Profile | ||
li | ||
a(href="/settings/profile") Settings | ||
h1.page-header SITE MAP | ||
.sitemap-wrapper | ||
section.sitemap-nav | ||
h2.sitemap-header Compete | ||
ul | ||
li | ||
a(href="/challenges/design/active") Design Challenges | ||
li | ||
a(href="/challenges/develop/active") Development Challenges | ||
li | ||
a(href="/challenges/data/active") Data Science Challenges | ||
li | ||
a(href="//arena.topcoder.com/") Single Round Matches | ||
section.sitemap-nav.hide-small | ||
h2.sitemap-header Learn | ||
ul | ||
li | ||
a(href="/community/design") Design | ||
li | ||
a(href="/community/devlopment") Development | ||
li | ||
a(href="/community/data-science") Data Science | ||
li | ||
a(href="/community/competitive programming") Competitive Programming | ||
section.sitemap-nav | ||
h2.sitemap-header Community | ||
ul | ||
li | ||
a(href="/community") Home | ||
li | ||
a(href="/community/members") Members | ||
li | ||
a(href="/community/member-programs") Programs | ||
li | ||
a(href="//apps.topcoder.com/forums") Forums | ||
li | ||
a(href="/community/statistics") Statistics | ||
li | ||
a(href="/community/events") Events | ||
li | ||
a(href="/blog") Blog | ||
section.sitemap-nav.hide-small | ||
h2.sitemap-header My Account | ||
ul | ||
li | ||
a(href="/my-dashboard") Dashboard | ||
li | ||
a(href="/members/") My Profile | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This link is in correct? Shouldn't this be dynamic? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't make any changes to this file except adding a space between SITE and MAP, the rest is improper indenting that Sublime Text auto fixed. I haven't taken a look at the site map code - but I can make the necessary updates if we want to change it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please fix these. These are minor issues so hopefully it doesn't take too On Mon, Nov 9, 2015 at 12:36 PM, Nicholas Litwin [email protected]
Thanks |
||
li | ||
a(href="/settings/profile") Settings | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be "ui-sref"? |
||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,19 @@ | |
height: 27px; | ||
} | ||
} | ||
|
||
.bottom-footer nav { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moves the footer links up to connect with the mobile nav links. |
||
position: absolute; | ||
top: 997px; | ||
left: 0; | ||
width: 100%; | ||
padding: 20px; | ||
background-color: $gray-darkest; | ||
|
||
ul a { | ||
color: $white; | ||
} | ||
} | ||
} | ||
|
||
@media only screen and (min-width : 1025px) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,17 +148,18 @@ | |
|
||
.search-wrapper { | ||
input { | ||
font-weight: bold; | ||
border: 1px solid #7f7f7f; | ||
color: #fff; | ||
border-radius: 4px; | ||
display: block; | ||
box-sizing: border-box; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. border-box fixes the search bar going off the screen |
||
height: 32px; | ||
width: 100%; | ||
padding: 0 15px 0 37px; | ||
background: transparent; | ||
outline: none; | ||
border: 1px solid #7f7f7f; | ||
border-radius: 4px; | ||
box-shadow: none; | ||
outline: none; | ||
font-weight: bold; | ||
color: #fff; | ||
|
||
&:focus { | ||
outline: none; | ||
|
@@ -193,13 +194,20 @@ | |
width: 31px; | ||
vertical-align: middle; | ||
border-radius: 50%; | ||
@media only screen and (max-width: 1024px) { | ||
margin-right: 10px; | ||
} | ||
} | ||
|
||
.username { | ||
vertical-align: middle; | ||
&.underline { | ||
padding-bottom: 12px; | ||
border-bottom: 2px $primary solid; | ||
@media only screen and (max-width: 1024px) { | ||
padding-bottom: 0; | ||
border-bottom: none; | ||
} | ||
} | ||
} | ||
|
||
|
@@ -212,8 +220,17 @@ | |
text-transform: uppercase; | ||
} | ||
|
||
.user-menu .submenu { | ||
padding-top: 5px; | ||
} | ||
|
||
.submenu { | ||
font-size: 14px; | ||
@media only screen and (max-width: 1024px) { | ||
.submenu-item { | ||
margin-top: 3px; | ||
} | ||
} | ||
} | ||
|
||
.suggestion-list { | ||
|
@@ -297,11 +314,11 @@ | |
} | ||
|
||
.top-header { | ||
padding: 0 20px; | ||
padding: 0 20px 20px; | ||
|
||
.logo-link:after { | ||
margin-top: 17px; | ||
margin-left: 4px; | ||
margin-top: 21px; | ||
margin-left: -3px; | ||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes links work locally and per environment