Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
29 changes: 16 additions & 13 deletions wp-content/themes/tcs-responsive/css/challenge-detail-software.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,22 @@
color: #00AEFF;
font-size: 18px;
}

/*Bugfix refactored-challenge-details-26: font color adjusted to same as noPrize prizes for N/A value*/
.challenge-detail.develop #stepBox .middleColumn table .noPrize .realibilityPara span {
color: #d1d1d1;
}
.challenge-detail.develop #stepBox .middleColumn table .realibilityPara span {
color: #228400;
}

#stepBox .middleColumn table .drPointsPara span {
color: #a1a1a1;
/*Bugfix refactored-challenge-details-26: font color adjusted to same as noPrize prizes for N/A value*/
#stepBox .middleColumn table .noPrize .drPointsPara span {
color: #d1d1d1;
font-size: 18px;
}

#stepBox .middleColumn table .drPointsPara span {
color: #228400;
font-size: 18px;
}
#stepBox .rightColumn {
display: inline;
float: left;
Expand Down Expand Up @@ -754,24 +760,21 @@
cursor: default;
margin: 0 10px;
}

/*Bugfix for refactored-challenge-details-26: set min-width to fix cut-off of more-payments element in some challenges*/
.morePayments {
width: 19px;
min-width: 19px;
background: url("../i/more-payments.png") no-repeat;
background-color: #fafafa;
}

#stepBox .middleColumn.studio table {
table-layout: fixed;
}

#stepBox .middleColumn.studio table p {
font-size: 12px;
padding-top: 2px;
padding-bottom: 2px;
}

#stepBox .middleColumn table .noPrize h2, #stepBox .middleColumn table .noPrize h3 {
/*Bugfix for refactored-challenge-details-26: more specific CSS selector for develop challenges to override previous styles for prizes*/
#stepBox .middleColumn table .noPrize h2, #stepBox .middleColumn table .noPrize h3,
.challenge-detail.develop #stepBox .middleColumn table .noPrize h2, .challenge-detail.develop #stepBox .middleColumn table .noPrize h3{
color: #d1d1d1;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
<h3><small>$</small><span ng-bind="challenge.prize[j]"></span></h3>
</td>
</tr>
<tr>
<td ng-if="!isDesign" colspan="{{challenge.challengeType == 'Code' ? '2' : ''}}">
<tr><!-- Bugfix: Added noPrize class when challenge has no reliability bonus -->
<td ng-if="!isDesign" colspan="{{challenge.challengeType == 'Code' ? '2' : ''}}" class="{{!challenge.reliabilityBonus ? 'noPrize' : ''}}">
<p class="realibilityPara">
Reliability Bonus
<span ng-if="reliabilityBonus" ng-bind-template="${{challenge.reliabilityBonus}}">
Expand All @@ -91,8 +91,8 @@
N/A
</span>
</p>
</td>
<td ng-if="!isDesign" colspan="{{challenge.challengeType = 'Code' ? '3' : ''}}">
</td><!-- Bugfix: Added noPrize class when challenge has no DR points -->
<td ng-if="!isDesign" colspan="{{challenge.challengeType = 'Code' ? '3' : ''}}" class="{{!challenge.digitalRunPoints ? 'noPrize' : ''}}">
<p class="drPointsPara">DR Points <span ng-bind="challenge.digitalRunPoints ? challenge.digitalRunPoints : 'N/A'"></span></p>
</td>
</td>
Expand Down