Skip to content

Commit

Permalink
Enhanced result snippet highlighting. Removed useless debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
flekschas committed Jun 29, 2015
1 parent f97c69a commit 4859a13
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
17 changes: 11 additions & 6 deletions refinery/static/source/styles/less/refinery-style.less
Original file line number Diff line number Diff line change
Expand Up @@ -522,12 +522,6 @@ ul#externalToolListPopover li{
border-top: none;
}
}

a > em {
font-weight: bold;
font-style: normal;
background: fade(lighten(@blueLight, 25%), 15%);
}
}

ul.results.search {
Expand All @@ -536,6 +530,12 @@ ul#externalToolListPopover li{
color: #006f99;
}

a.title > em {
font-weight: bold;
font-style: normal;
background: fade(lighten(@blueLight, 25%), 15%);
}

a.title:hover {
color: inherit;
}
Expand All @@ -549,6 +549,11 @@ ul#externalToolListPopover li{
margin: 2px 0 0 0;
color: lighten(@gray, 10%);
}

p.snippet > em {
font-weight: bold;
font-style: normal;
}
}

ul.controls {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ PermissionEditorCtrl.prototype.save = function () {
})
.$promise
.then(function () {
console.log('Sweet permissions are saved');
that.$modalInstance.dismiss('saved');
})
.catch(function (error) {
Expand Down

0 comments on commit 4859a13

Please sign in to comment.