@wizishop/angular-components 14.4.38 → 14.4.39
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/angular-components.scss
CHANGED
|
@@ -7,7 +7,7 @@ $wac-table-background-color: #fafafa!default;
|
|
|
7
7
|
$wac-bleu-color: #52aecd!default;
|
|
8
8
|
$wac-red-color: #ff1800!default;
|
|
9
9
|
$wac-border-color: #cfd4e4!default;
|
|
10
|
-
$wac-border-form: #
|
|
10
|
+
$wac-border-form: #C9D2D9!default;
|
|
11
11
|
$wac-border-light: #cfd4e4!default;
|
|
12
12
|
$wac-color-loader2: #a2c739!default;
|
|
13
13
|
$wac-color-loader: #4baed0!default;
|
|
@@ -112,7 +112,7 @@ $wac-button-tab-background: #EAEDF5!default;
|
|
|
112
112
|
|
|
113
113
|
$wac-color-success-popup-alert: #6DCC95!default;
|
|
114
114
|
|
|
115
|
-
$wac-background-indication: #
|
|
115
|
+
$wac-background-indication: #DEE2ED!default;
|
|
116
116
|
|
|
117
117
|
$wac-grey: #F5F8FA!default;
|
|
118
118
|
$wac-round-breadcrumbs: #DEE2ED!default;
|
|
@@ -123,6 +123,7 @@ $wac-google-preview-url: #202124!default;
|
|
|
123
123
|
$wac-google-preview-title: #1A0DAB!default;
|
|
124
124
|
$wac-google-preview-description: #4D5156!default;
|
|
125
125
|
$wac-charging-bar-background: #E1E6EA!default;
|
|
126
|
+
$wac-link-active: #38A3F1!default;
|
|
126
127
|
.zindexToggle {
|
|
127
128
|
z-index: 9!important;
|
|
128
129
|
position: relative;
|
|
@@ -3902,7 +3903,7 @@ wac-calendar {
|
|
|
3902
3903
|
justify-content: center;
|
|
3903
3904
|
align-items: center;
|
|
3904
3905
|
i {
|
|
3905
|
-
font-size: rem(
|
|
3906
|
+
font-size: rem(14);
|
|
3906
3907
|
font-weight: 400;
|
|
3907
3908
|
color: $wac-second-color;
|
|
3908
3909
|
}
|
|
@@ -5823,9 +5824,13 @@ wac-optional-disable-container {
|
|
|
5823
5824
|
.wac-summary {
|
|
5824
5825
|
p {
|
|
5825
5826
|
font-size: rem(14);
|
|
5826
|
-
line-height: rem(23);
|
|
5827
5827
|
color: $wac-main-text;
|
|
5828
|
-
|
|
5828
|
+
display: flex;
|
|
5829
|
+
margin: 0;
|
|
5830
|
+
min-height: 40px;
|
|
5831
|
+
align-items: center;
|
|
5832
|
+
line-height: 1.4;
|
|
5833
|
+
padding: 5px 20px;
|
|
5829
5834
|
transition: color .3s ease-in-out;
|
|
5830
5835
|
|
|
5831
5836
|
&.item-link {
|
|
@@ -5833,7 +5838,8 @@ wac-optional-disable-container {
|
|
|
5833
5838
|
cursor: pointer;
|
|
5834
5839
|
|
|
5835
5840
|
&.active {
|
|
5836
|
-
color: $wac-
|
|
5841
|
+
color: $wac-link-active;
|
|
5842
|
+
background-color: transparentize($wac-link-active, .9);
|
|
5837
5843
|
transition: color .3s ease-in-out;
|
|
5838
5844
|
}
|
|
5839
5845
|
}
|
|
@@ -7026,7 +7032,7 @@ span.wac-tooltip {
|
|
|
7026
7032
|
h1.wac-h1 {
|
|
7027
7033
|
font-size: rem(30);
|
|
7028
7034
|
line-height: rem(35);
|
|
7029
|
-
font-weight:
|
|
7035
|
+
font-weight: 600;
|
|
7030
7036
|
color: $wac-main-text;
|
|
7031
7037
|
@include media('<desktop') {
|
|
7032
7038
|
font-size: rem(22);
|
|
@@ -7470,15 +7476,15 @@ h4.wac-h4 {
|
|
|
7470
7476
|
right: 0;
|
|
7471
7477
|
top: 0;
|
|
7472
7478
|
height: 40px;
|
|
7473
|
-
color: $wac-
|
|
7479
|
+
color: $wac-second-color;
|
|
7474
7480
|
font-size: rem(14);
|
|
7475
|
-
padding: 7.5px
|
|
7481
|
+
padding: 7.5px 20px;
|
|
7476
7482
|
background-color: $wac-background-indication;
|
|
7477
7483
|
border: none;
|
|
7478
7484
|
border-radius: 3px 3px 0 0;
|
|
7479
7485
|
white-space: nowrap;
|
|
7480
7486
|
transition: .3s ease;
|
|
7481
|
-
font-weight:
|
|
7487
|
+
font-weight: 400;
|
|
7482
7488
|
display: flex;
|
|
7483
7489
|
align-items: center;
|
|
7484
7490
|
z-index: 2;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|