Skip to content

Commit

Permalink
made pagination buttons non selectable
Browse files Browse the repository at this point in the history
closes #11
  • Loading branch information
Leonardo Menezes committed Nov 30, 2016
1 parent c2d21e8 commit e371c25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ body { padding-top: 50px; font-weight: normal; }
.content { padding-top: 20px; padding-bottom: 10px; height: 100%; min-height: 100%; }

/** Overview **/
table.shard-map { table-layout: fixed; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
table.shard-map { table-layout: fixed; }

@-moz-document url-prefix() {
table.shard-map {
Expand Down Expand Up @@ -106,3 +106,5 @@ table.shard-map { table-layout: fixed; -webkit-touch-callout: none; -webkit-user
.pager-text { border: none !important; }

.info-text { color: #6F7579; }

.noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
2 changes: 1 addition & 1 deletion public/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
</div>

<table class="table table-bordered table-condensed table-rounded table-inverse shard-map">
<table class="table table-bordered table-condensed table-rounded table-inverse shard-map noselect">
<thead>
<tr>
<td>
Expand Down
2 changes: 1 addition & 1 deletion public/pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="col-lg-12">

<nav class="pull-right">
<ul class="pager">
<ul class="pager noselect">
<li>
<span class="pager-text">{{page.first | number:0}}-{{page.last | number:0}} of {{page.total | number:0}}</span>
</li>
Expand Down
4 changes: 3 additions & 1 deletion src/app/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ body { padding-top: 50px; font-weight: normal; }
.content { padding-top: 20px; padding-bottom: 10px; height: 100%; min-height: 100%; }

/** Overview **/
table.shard-map { table-layout: fixed; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
table.shard-map { table-layout: fixed; }

@-moz-document url-prefix() {
table.shard-map {
Expand Down Expand Up @@ -106,3 +106,5 @@ table.shard-map { table-layout: fixed; -webkit-touch-callout: none; -webkit-user
.pager-text { border: none !important; }

.info-text { color: #6F7579; }

.noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

0 comments on commit e371c25

Please sign in to comment.