Skip to content

Commit

Permalink
#65 | UI improvements for self defined links and popup
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-null committed Nov 24, 2016
1 parent a46660e commit d4e8127
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions app/chrome/popup/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,18 @@ ul.header-navigation {
}

.wrapper{
height: 350px;
max-height: 350px;
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
}


::-webkit-scrollbar {
width: 12px;
}

::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
background: rgba(136,136,136,0.8);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
box-shadow: #000;
}
2 changes: 1 addition & 1 deletion app/options/views/links.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h4>Type</h4>
</div>
<div ng-repeat="link in links | orderBy:'1*order' track by $index" ng-class="{completed: link.completed, editing: link == editedLink}">
<form ng-submit="vm.doneEditing(link)" class="col-lg-12">
<div class="col-lg-1"><input class="form-control order" ng-model="link.order"/></div>
<div class="col-lg-1"><input class="form-control order" ng-model="link.order" ng-model-options="{ updateOn: 'blur'}"/></div>
<div class="col-lg-2"><input class="form-control" ng-model="link.name" /></div>
<div class="col-lg-5"><input class="form-control" ng-model="link.url" /></div>
<div class="col-lg-2">
Expand Down

0 comments on commit d4e8127

Please sign in to comment.