Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.
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 app/assets/stylesheets/less/_page.less
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@
color: #2cb400;
}
}

.d2-program:hover {
background-color:#5f5f5f;
text-decoration:none;
Expand Down Expand Up @@ -2086,7 +2086,7 @@ label.inline-list {
&.over { color:#f36c22; }
}
}

.progress-wrap {
overflow: hidden;
color: #999;
Expand Down Expand Up @@ -3008,7 +3008,7 @@ div.markdown-loader {
min-height: 140px;
padding: 15px 20px;
text-align: left;
clear: both;
clear: both;
}

div.markdown-preview {
Expand Down Expand Up @@ -3420,9 +3420,9 @@ label.issue-item-row {
text-decoration: none;
}

&.name {
&.name {
color : #333;

&:hover {
color:#333;
}
Expand Down Expand Up @@ -3472,15 +3472,15 @@ label.issue-item-row {
&.item-icon {
background-color:#F7F7F7;
color:#3592b5;
font-size: 9px;
font-size: 9px;
padding-top:2px;
line-height: 12px;
border-left:1px solid #EEE;

&:first-child {
border-left:none;
}

&.strong {
color:@primary;
}
Expand Down Expand Up @@ -3619,7 +3619,7 @@ label.issue-item-row {
min-height:30px;
}


.write-comment-box { padding:0; margin-top:20px; }
}

Expand Down Expand Up @@ -4132,7 +4132,10 @@ label.issue-item-row {
}
.listitem {
border-bottom:1px solid #efefef;
.filename { font-size:10pt; white-space:nowrap; .text-overflow; }
.filename {
font-size:10pt; white-space:nowrap; .text-overflow;
a { cursor:pointer;}
}
.commitMsg { font-size:10pt; color:#7e7e7e; .text-overflow; }
.commitDate { font-size:8pt; color:#7e7e7e; white-space:nowrap; text-align:right; padding-right:5px; }
}
Expand Down Expand Up @@ -5579,7 +5582,7 @@ div.diff-body[data-outdated="true"] tr:hover .icon-comment {
text-decoration:none;
background-color:#fafafa;
}

&.open {
.box-shadow(inset 5px 0px 0px @state-open);
}
Expand Down Expand Up @@ -5761,7 +5764,7 @@ div.diff-body[data-outdated="true"] tr:hover .icon-comment {
margin-top: 15px;
font-weight: normal;
padding:0 15px;

strong {
color:#f36c22;
}
Expand Down Expand Up @@ -5868,7 +5871,7 @@ div.diff-body[data-outdated="true"] tr:hover .icon-comment {
margin-top:10px;
font-size: 13px;
color:#999;
padding-left:20px;
padding-left:20px;

&.np {
padding-left:0 !important;
Expand All @@ -5886,7 +5889,7 @@ div.diff-body[data-outdated="true"] tr:hover .icon-comment {
}
}

.user-link {
.user-link {
color: #3592b5 !important;
font-weight: bold;
}
Expand Down
2 changes: 1 addition & 1 deletion app/views/code/partial_view_folder.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@defining(fieldText(file, "type")) { fileType =>
<div id="cb-@listPath@fileName" class="row-fluid listitem" data-path="@getDataPath(listPath, fileName)">
<div class="span6 filename">
<a href="@getCorrectedPath(filePath, fileName)@if(fileType.eq(" folder")){#cb-@listPath@fileName}"
<a onclick="location.href='@getCorrectedPath(filePath, fileName)@if(fileType.eq(" folder")){#cb-@listPath@fileName}'"
class="@getFileClass(file)" title="@fileName" @if(fileType.eq("folder")){data-type="folder"}
data-targetPath="@getDataPath(listPath, fileName)">
<span class="dynatree-icon vmiddle"></span>@fileName
Expand Down