Skip to content
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 27 additions & 10 deletions wp-content/themes/tcs-responsive/css/challenge-detail-software.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@
width: 728px;
}

.challenge-detail .currentTab-checkpoints .grid-3-3 {
.challenge-detail .currentTab-checkpoints .grid-3-3,
.challenge-detail .currentTab-submissions .grid-3-3 {
float: none;
width: auto;
}
Expand All @@ -118,7 +119,8 @@
width: 282px;
}

.challenge-detail .currentTab-checkpoints .grid-1-3 {
.challenge-detail .currentTab-checkpoints .grid-1-3,
.challenge-detail .currentTab-submissions .grid-1-3{
display: none;
}

Expand Down Expand Up @@ -361,7 +363,8 @@
padding-right: 20px;
}

.challenge-detail .currentTab-checkpoints .tableWrap {
.challenge-detail .currentTab-checkpoints .tableWrap,
.challenge-detail .currentTab-submissions .tableWrap{
padding-right: 0;
}

Expand All @@ -377,6 +380,9 @@
.challenge-detail .currentTab-checkpoints .topRightTitleAlt {
display: block;
}
.challenge-detail .tableWrap ul li {
background: none;
}

.challenge-detail .topRightTitle a {
font-size: 16px;
Expand All @@ -395,10 +401,21 @@
background: #f7f7f7;
border: 1px solid #e1e1e1;
}

.challenge-detail .columnSideBar .sidebar {
display: block;
overflow: hidden;
#rightTitleOnFull {
display:none;
position:absolute;
top:-0px;
right:0px;
width:200px;
}
#rightTitleOnFull a{
font-size: 16px;
height: 26px;
line-height:20px;
float:right;
clear:both;
padding-left:32px;
background: url("../i/ico-contest-forum.png") no-repeat 0 0;
}

.challenge-detail .columnSideBar .inner {
Expand Down Expand Up @@ -1078,7 +1095,7 @@
display: inline;
text-align: center;
overflow: hidden;

max-width: 21px;
vertical-align: top;
height: 11px;
Expand Down Expand Up @@ -1156,8 +1173,8 @@

/*new css for topcoder view checkpoints and view submission */
/*disabled style for tab*/
/* dataChanges */
#submissions .pager {
/* dataChanges */
#submissions .pager{
font-size: 16px;
border-bottom: 1px solid #e7e7e7;
padding-bottom: 10px;
Expand Down
11 changes: 10 additions & 1 deletion wp-content/themes/tcs-responsive/css/register-login.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ hover style icons
/*
backgorund modal
*/
#bgModal {
#bgModal,#bgOverlapModal,#bgLoadingModal {
position: fixed;
width: 100%;
height: 100%;
Expand All @@ -121,6 +121,15 @@ backgorund modal
display: none;
z-index: 999;
}
#bgLoadingModal span {
display:block;
position: fixed;
width: 100px;
height: 100px;
top:50%;
left:50%;
background: transparent url(../i/ajax_loader_gray_256.gif) no-repeat;
}
/*
common
*/
Expand Down
10 changes: 10 additions & 0 deletions wp-content/themes/tcs-responsive/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ function FeedBlitz_9feab01d431311e39e69002590771423s(v) {


<div id="bgModal"></div><!-- background modal -->
<div id="bgOverlapModal"></div><!-- background modal -->
<div id="bgLoadingModal"><span></span></div><!-- background loading -->
<div id="thanks" class="modal">
<a href="javascript:;" class="closeBtn closeModal"></a>

Expand All @@ -170,6 +172,14 @@ function FeedBlitz_9feab01d431311e39e69002590771423s(v) {
</p>
</div>
</div><!-- END #registerSuccess -->

<div id="showSubmission" class="modal">
<a href="javascript:;" class="btnClose closePopupModal"></a>
<div class="content">
<img src="http://studio.topcoder.com/?module=DownloadSubmission&sbmid=177659&sbt=full&sfi=1" alt="" width="910" height="850">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a hard coded link to a submission?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@indytechcook , it will not be displayed for now. it should be on modal window. but since API / doc was beingdeveloped, i asked member to hardcoded it. SubmissionID would be from API later (next story - https://appirio-community.force.com/cmc/a4150000000ET0D?fId=0D5500000156sniD), and maybe will be rendered by Javascript instead of PHP since it require authentication.

this modal window should be displayed if user click magnifier icons. but for now i just linked to old site

</div>
</div><!-- END #show submission -->

<div id="registerFailed" class="modal">
<a href="javascript:;" class="btnClose closeModal"></a>
<div class="content">
Expand Down
Loading