Skip to content

Commit

Permalink
Calendar - update the indigo theme to match the latest design from th…
Browse files Browse the repository at this point in the history
…e UI kits (#14496)
  • Loading branch information
desig9stein authored Jul 31, 2024
1 parent 56b32d2 commit 9ce0ef5
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 58 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@types/source-map": "0.5.2",
"express": "^4.19.2",
"fflate": "^0.8.1",
"igniteui-theming": "^10.0.0",
"igniteui-theming": "v10.1.0-beta.3",
"igniteui-trial-watermark": "^3.0.2",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@
@extend %date-selected-special !optional;
}

@include e(date, $mods: ('selected', 'special', 'active')) {
@extend %date-selected-special-active !optional;
}

@include e(date, $mods: ('selected', 'range')) {
@extend %date-selected-range !optional;
}
Expand Down Expand Up @@ -219,10 +223,22 @@
@extend %date-range-selected-special-last !optional;
}

@include e(date, $mods: ('selected', 'special', 'first', 'last')) {
@include e(date, $mods: ('range', 'selected', 'special', 'first', 'last')) {
@extend %date-selected-special-first-last !optional;
}

@include e(date, $mods: ('selected', 'special', 'current', 'first', 'last')) {
@extend %date-selected-special-current-first-last !optional;
}

@include e(date, $mods: ('selected', 'special', 'current', 'preview', 'first')) {
@extend %date-selected-special-current-last !optional;
}

@include e(date, $mods: ('selected', 'special', 'current', 'preview', 'last')) {
@extend %date-selected-special-current-first !optional;
}

@include e(date, $mods: ('range', 'selected', 'active')) {
@extend %date-range-selected-active !optional;
}
Expand Down Expand Up @@ -307,16 +323,26 @@
@extend %date-special-current !optional;
}

@include e(date, $mods: ('special', 'current', 'selected')) {
@extend %date-special-current-selected !optional;
}

@include e(date, $mods: ('special', 'current', 'selected', 'active')) {
@extend %date-special-current-selected-active !optional;
}

@include e(date, $mods: ('special' 'active')) {
@extend %date-special-active !optional;
}

@include e(date, $mods: ('special', 'current', 'active')) {
@extend %date-special-current !optional;
@extend %date-special-current-active !optional;
}

@include e(date, $mods: ('special', 'current', 'active', 'range')) {
@extend %date-special-current !optional;
@extend %date-special-current-active !optional;
}

@include e(date, 'first') {
Expand Down
Loading

0 comments on commit 9ce0ef5

Please sign in to comment.