@annalib/anna-core 14.6.10 → 14.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "14.6.10",
3
+ "version": "14.6.12",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^2.0.4",
6
6
  "@angular/common": "^15.2.9",
@@ -1,73 +0,0 @@
1
- @use "../anna-common-scss/gt-table" as *;
2
-
3
- $LightBlue: #EEF6FF;
4
- $LightOrange: #F9EADD;
5
- $LightYellow: #F7F2D1;
6
- $LightGreen: #E1FFED;
7
- $DeepBlue: #1565C0;
8
- $DeepOrange: #F97B07;
9
- $DeepYellow: #F3BD18;
10
- $DeepGreen: #00C853;
11
-
12
- @mixin rowStyling($backgroundColor, $buttonColor, $color, $shadow-map) {
13
- @include table-data((), $shadow-map, $backgroundColor);
14
-
15
- ::ng-deep .status-btn {
16
- background-color: $buttonColor !important;
17
- color: $color;
18
- border-radius: 2px !important;
19
- padding: 2px 6px;
20
- cursor: default !important;
21
- }
22
- }
23
-
24
- @mixin advertiser-listing-table-styling($advertiser-box-shadow-map, $advertiser-no-data-box-shadow-map, $row-height-map){
25
- :host ::ng-deep anna-core-non-editable-generic-table-lib {
26
- @include table-container-scroll-bar(0px, 2.625rem);
27
- @include table-header((), $advertiser-box-shadow-map);
28
- @include no-data-table(142px, $advertiser-no-data-box-shadow-map, $row-height-map);
29
-
30
- .loader {
31
- margin-bottom: 0;
32
- }
33
-
34
- tbody{
35
- tr {
36
- @include rowStyling(#fff,white, #000, $advertiser-box-shadow-map);
37
- }
38
-
39
- tr.AWAITING_BUYER_CONFIRMATION,
40
- tr.AWAITING_SELLER_CONFIRMATION {
41
- @include rowStyling($LightBlue, $DeepBlue, white, $advertiser-box-shadow-map);
42
- }
43
-
44
- tr.NEED_SELLER_CONFIRMATION,
45
- tr.NEED_BUYER_CONFIRMATION {
46
- @include rowStyling($LightOrange, $DeepOrange, white, $advertiser-box-shadow-map);
47
- }
48
-
49
- tr.NOTIFY_BUYER {
50
- @include rowStyling($LightYellow, $DeepYellow, white, $advertiser-box-shadow-map);
51
- }
52
-
53
- tr.APPROVED {
54
- @include rowStyling($LightGreen, $DeepGreen, white, $advertiser-box-shadow-map);
55
- }
56
-
57
- td{
58
- cursor: default !important;
59
- }
60
- }
61
-
62
- th,td{
63
- padding: 0 12px !important;
64
- }
65
-
66
- .no-data{
67
- margin-top: -63px !important;
68
- }
69
-
70
- @include table-bottom-border($advertiser-box-shadow-map);
71
-
72
- }
73
- }