Skip to content

Commit

Permalink
#7685 fix scrollbar buttons missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek committed Oct 23, 2018
1 parent 6ad3569 commit d471ce4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions js/notebook/src/tableDisplay/dataGrid/style/dataGrid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,11 @@ a.dtmenu {
}

.p-ScrollBar {
.p-ScrollBar-button {
font: normal normal normal 14px/1 FontAwesome;
text-align: center;
}

&[data-orientation='horizontal'] {
min-height: 16px;
max-height: 16px;
Expand All @@ -525,6 +530,19 @@ a.dtmenu {
border-left: $gridBorder;
border-right: $gridBorder;
}

.p-ScrollBar-button {
&[data-action='increment'] {
&:before {
content: "\f0da";
}
}
&[data-action='decrement'] {
&:before {
content: "\f0d9";
}
}
}
}

&[data-orientation='vertical'] {
Expand All @@ -541,6 +559,20 @@ a.dtmenu {
border-top: $gridBorder;
border-bottom: $gridBorder;
}


.p-ScrollBar-button {
&[data-action='increment'] {
&:before {
content: "\f0d7";
}
}
&[data-action='decrement'] {
&:before {
content: "\f0d8";
}
}
}
}
}

Expand Down

0 comments on commit d471ce4

Please sign in to comment.