-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update Nebular to 4.1.2 (#5451)
- Loading branch information
Showing
31 changed files
with
732 additions
and
1,113 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
132 changes: 0 additions & 132 deletions
132
src/app/@theme/services/window-mode-block-scroll.service.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@mixin ngx-layout() { | ||
@include media-breakpoint-down(is) { | ||
.row { | ||
margin-left: -10px; | ||
margin-right: -10px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,11 @@ | ||
@import './themes'; | ||
|
||
@mixin nb-overrides() { | ||
// overrides bootstrap svg style | ||
nb-icon svg { | ||
vertical-align: top; | ||
} | ||
|
||
nb-auth-block .links nb-icon { | ||
font-size: 2.5rem; | ||
} | ||
|
||
nb-select.size-medium button { | ||
padding: 0.4375rem 2.2rem 0.4375rem 1.125rem !important; | ||
|
||
nb-icon { | ||
right: 0.41rem !important; | ||
} | ||
} | ||
|
||
nb-flip-card { | ||
.front-container { | ||
-webkit-backface-visibility: visible; | ||
} | ||
.back-container { | ||
-webkit-backface-visibility: hidden; | ||
} | ||
|
||
.flipped { | ||
.front-container { | ||
-webkit-backface-visibility: hidden; | ||
} | ||
.back-container { | ||
-webkit-backface-visibility: visible; | ||
} | ||
} | ||
} | ||
|
||
nb-layout .layout .layout-container nb-sidebar { | ||
&, | ||
.main-container-fixed { | ||
top: nb-theme(header-height); | ||
} | ||
} | ||
|
||
@media screen and (min-width: nb-theme(layout-window-mode-max-width) + 20px) { | ||
@include f-window-mode(nb-theme(layout-window-mode-padding-top) / 4); | ||
} | ||
|
||
@media screen and (min-width: nb-theme(layout-window-mode-max-width) + 150px) { | ||
@include f-window-mode(nb-theme(layout-window-mode-padding-top) / 2); | ||
} | ||
|
||
@media screen and (min-width: nb-theme(layout-window-mode-max-width) + 300px) { | ||
@include f-window-mode(nb-theme(layout-window-mode-padding-top)); | ||
} | ||
} | ||
|
||
@mixin f-window-mode ($padding-top) { | ||
nb-layout.window-mode nb-layout-header.fixed { | ||
top: $padding-top; | ||
} | ||
|
||
nb-sidebar .main-container-fixed { | ||
height: calc(100vh - #{nb-theme(header-height)} - #{$padding-top}) !important; | ||
top: calc(#{nb-theme(header-height)} + #{$padding-top}) !important; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.