Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit a2fbc95

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
add pagination icon color SASS variable
1 parent dd07ba9 commit a2fbc95

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

src/app/modules/angular-slickgrid/styles/_variables.scss

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
/* SlickGrid Bootstrap variables */
88
/* Used by slick-bootstrap.scss */
9-
$border-color: #dddddd !default;
9+
$border-color: #dddddd !default;
1010
$font-size-base: 14px !default;
1111
$font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !default;
1212

@@ -19,8 +19,8 @@ $container-border-left: 0 none !default;
1919
/* grid */
2020
$grid-border-color: fade(black, 3%) !default;
2121
$grid-border-style: solid !default;
22-
$grid-header-background: rgba(255, 255, 255, .6) !default;
23-
$grid-cell-color: rgb(255, 255, 255) !default;
22+
$grid-header-background: rgba(255, 255, 255, .6) !default;
23+
$grid-cell-color: rgb(255, 255, 255) !default;
2424

2525
/* cell */
2626
$cell-border-top: 1px solid $border-color !default;
@@ -30,7 +30,7 @@ $cell-border-left: 0 none !default;
3030
$cell-odd-background-color: darken($grid-cell-color, 2.5%) !default;
3131
$cell-odd-active-background-color: darken($grid-cell-color, 5%) !default;
3232
$cell-padding: 5px 7.5834px !default;
33-
$selected-hover-color: rgb(245, 245, 204) !default;
33+
$selected-hover-color: rgb(245, 245, 204) !default;
3434

3535
/* cell default slickgrid values */
3636
$cell-padding-top: 4px !default;
@@ -42,7 +42,7 @@ $cell-padding-left: 4px !default;
4242
$header-input-height: 27px !default; // height of the filter form element (input, textarea, select)
4343
$header-input-width: 100% !default; // width of the filter form element (input, textarea, select)
4444
$header-input-padding: 0 6px !default; // padding of the filter form element (input, textarea, select)
45-
$header-row-background-color: #ffffff !default;
45+
$header-row-background-color: #ffffff !default;
4646
$header-row-count: 2 !default; // how many rows to display on the header
4747
$header-column-height: (16px * $header-row-count) !default; // header is calculated by rows to show
4848
$header-border-top: 0 none !default;
@@ -57,27 +57,28 @@ $icon-font-family: "FontAwesome" !default; //
5757
$icon-font-size: 14px !default;
5858
$icon-sort-asc: "\f0d8" !default;
5959
$icon-sort-desc: "\f0d7" !default;
60-
$icon-sort-color: rgb(76, 128, 190) !default;
60+
$icon-sort-color: rgb(76, 128, 190) !default;
6161
$table-background: transparent !default;
6262
$container-border: 0px solid $border-color !default;
63-
$link-color: #08c !default;
63+
$link-color: #08c !default;
6464
$link-color-hover: darker($link-color, 15%) !default;
65-
$table-bg-accent: #f9f9f9 !default; // for striping every second row
66-
$gray-dark: #333 !default;
65+
$table-bg-accent: #f9f9f9 !default; // for striping every second row
66+
$gray-dark: #333 !default;
6767
$text-color: $gray-dark !default;
6868
$navbar-default-link-hover-color: $gray-dark !default;
6969

7070
/* Column picker */
71-
$column-picker-background-color: #f8f8f8 !default;
71+
$column-picker-background-color: #f8f8f8 !default;
7272
$column-picker-border: 1px solid #b8b8b8 !default;
7373
$column-picker-border-radius: 3px !default;
7474
$column-picker-close-background-color: 1px solid #9c9c9c !default;
7575
$column-picker-close-border: 1px solid #9c9c9c !default;
7676
$column-picker-close-opacity: 0.9 !default;
7777

7878
/* pagination variables */
79-
$pagination-button-hover-color: #E6E6E6 !default;
80-
$pagination-border-color: #ddd !default;
79+
$pagination-button-hover-color: #E6E6E6 !default;
80+
$pagination-border-color: #ddd !default;
81+
$pagination-icon-color: #337ab7 !default;
8182
$pagination-icon-seek-first: "\f100" !default;
8283
$pagination-icon-seek-end: "\f101" !default;
8384
$pagination-icon-seek-next: "\f105" !default;
@@ -88,4 +89,4 @@ $pagination-border-top: 0 none !default;
8889
$pagination-border-right: 0 none !default;
8990
$pagination-border-bottom: 0 none !default;
9091
$pagination-border-left: 0 none !default;
91-
$pagination-text-color: #808080 !default;
92+
$pagination-text-color: #808080 !default;

src/app/modules/angular-slickgrid/styles/slick-pagination.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
cursor: pointer;
5656

5757
a[class*="icon-seek-"] {
58-
text-decoration: none;
59-
font-family: $icon-font-family;
60-
-webkit-text-stroke: $pagination-icon-seek-text-stroke;
61-
62-
border-color: $pagination-button-border;
58+
border-color: $pagination-button-border;
59+
color: $pagination-icon-color;
60+
text-decoration: none;
61+
font-family: $icon-font-family;
62+
-webkit-text-stroke: $pagination-icon-seek-text-stroke;
6363
}
6464
a[class*="icon-seek-"]:hover {
6565
background-color: $pagination-button-hover-color;

0 commit comments

Comments
 (0)