@posiwise/core-styles 1.0.11 → 1.0.13
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/app.scss +10 -7
- package/package.json +1 -1
- package/scss/_dynamic-styles.scss +8 -7
- package/scss/_public-pages.scss +4 -4
- package/scss/_shared.scss +3 -3
- package/scss/_variables.scss +5 -5
- package/scss/common/landing-page-a/landing-page-style-1.scss +5 -4
- package/scss/common/landing-page-b/banner.scss +2 -2
- package/scss/common/landing-page-b/contact-us.scss +2 -2
- package/scss/common/landing-page-b/explainer.scss +3 -3
- package/scss/common/landing-page-b/explainer2.scss +3 -3
- package/scss/common/landing-page-b/header.scss +10 -4
- package/scss/common/landing-page-b/landing-page-style-2.scss +1 -1
- package/scss/custom-bootstrap/_badge.scss +96 -95
- package/scss/custom-bootstrap/_bootstrap_variables.scss +3 -1
- package/scss/custom-bootstrap/_card.scss +14 -5
- package/scss/custom-bootstrap/_forms.scss +15 -13
- package/scss/custom-bootstrap/_popover.scss +3 -2
- package/scss/custom-bootstrap/_reboot.scss +5 -3
- package/scss/custom-bootstrap/_type.scss +7 -6
- package/scss/dashboard/_bootstrap-social.scss +11 -7
- package/scss/dashboard/_chat.scss +6 -4
- package/scss/dashboard/_components.scss +15 -14
- package/scss/dashboard/_horizontal-timeline.scss +15 -11
- package/scss/dashboard/_icons.scss +2 -1
- package/scss/dashboard/_misc.scss +11 -10
- package/scss/dashboard/_palette.scss +36 -26
- package/scss/dashboard/_search.scss +2 -1
- package/scss/dashboard/_sidebar-content.scss +14 -12
- package/scss/dashboard/_tabs.scss +13 -11
- package/scss/dashboard/_vertical-timeline.scss +8 -4
- package/scss/dashboard/mixins/_buttons.scss +9 -8
- package/scss/dashboard/mixins/_typography.scss +3 -2
- package/scss/dashboard/mixins/_utilities.scss +7 -6
- package/scss/plugins/_plugin-nouislider.scss +15 -12
- package/scss/plugins/perfect-scrollbar/_mixins.scss +21 -18
- package/scss/plugins/perfect-scrollbar/_ps-custom.scss +5 -4
- package/scss/public-pages/_buttons.scss +2 -1
- package/scss/public-pages/_layout.scss +2 -0
- package/scss/public-pages/mixins/_buttons.scss +4 -2
- package/scss/shared/_prime-ng-tables.scss +2 -0
- package/scss/shared/_prime-ng.scss +4 -1
- package/scss/variables/_app-colors-variables.scss +61 -60
- package/scss/variables/_primeng-variables.scss +5 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
// Search Navbar
|
|
2
3
|
#search-nav {
|
|
3
4
|
.nav {
|
|
@@ -6,7 +7,7 @@
|
|
|
6
7
|
|
|
7
8
|
.nav-link {
|
|
8
9
|
&.active {
|
|
9
|
-
border-bottom: 2px solid map
|
|
10
|
+
border-bottom: 2px solid map.get($primary, base);
|
|
10
11
|
margin-bottom: -2px;
|
|
11
12
|
padding-bottom: 6px;
|
|
12
13
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
@use 'sass:map';
|
|
1
3
|
.wrapper {
|
|
2
4
|
height: 100vh;
|
|
3
5
|
position: relative;
|
|
@@ -13,7 +15,7 @@
|
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
.content-sub-header {
|
|
16
|
-
color:
|
|
18
|
+
color: color.adjust($body-bg, $lightness: -60%);
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
.app-sidebar {
|
|
@@ -238,7 +240,7 @@
|
|
|
238
240
|
|
|
239
241
|
&::before {
|
|
240
242
|
background: rgb(200 200 200 / 20%);
|
|
241
|
-
border-right: solid 5px map
|
|
243
|
+
border-right: solid 5px map.get($danger, base);
|
|
242
244
|
content: '';
|
|
243
245
|
display: block;
|
|
244
246
|
height: 100%;
|
|
@@ -428,23 +430,23 @@
|
|
|
428
430
|
}
|
|
429
431
|
|
|
430
432
|
&[data-background-color='primary'] {
|
|
431
|
-
@include set-background-color(map
|
|
433
|
+
@include set-background-color(map.get($primary, base));
|
|
432
434
|
}
|
|
433
435
|
|
|
434
436
|
&[data-background-color='info'] {
|
|
435
|
-
@include set-background-color(map
|
|
437
|
+
@include set-background-color(map.get($info, base));
|
|
436
438
|
}
|
|
437
439
|
|
|
438
440
|
&[data-background-color='success'] {
|
|
439
|
-
@include set-background-color(map
|
|
441
|
+
@include set-background-color(map.get($success, base));
|
|
440
442
|
}
|
|
441
443
|
|
|
442
444
|
&[data-background-color='warning'] {
|
|
443
|
-
@include set-background-color(map
|
|
445
|
+
@include set-background-color(map.get($warning, base));
|
|
444
446
|
}
|
|
445
447
|
|
|
446
448
|
&[data-background-color='danger'] {
|
|
447
|
-
@include set-background-color(map
|
|
449
|
+
@include set-background-color(map.get($danger, base));
|
|
448
450
|
}
|
|
449
451
|
|
|
450
452
|
// Gradient Background Colors
|
|
@@ -499,23 +501,23 @@
|
|
|
499
501
|
}
|
|
500
502
|
|
|
501
503
|
&[data-color='blue'] {
|
|
502
|
-
@include set-background-color-button(map
|
|
504
|
+
@include set-background-color-button(map.get($info, base));
|
|
503
505
|
}
|
|
504
506
|
|
|
505
507
|
&[data-color='green'] {
|
|
506
|
-
@include set-background-color-button(map
|
|
508
|
+
@include set-background-color-button(map.get($success, base));
|
|
507
509
|
}
|
|
508
510
|
|
|
509
511
|
&[data-color='orange'] {
|
|
510
|
-
@include set-background-color-button(map
|
|
512
|
+
@include set-background-color-button(map.get($warning, base));
|
|
511
513
|
}
|
|
512
514
|
|
|
513
515
|
&[data-color='red'] {
|
|
514
|
-
@include set-background-color-button(map
|
|
516
|
+
@include set-background-color-button(map.get($danger, base));
|
|
515
517
|
}
|
|
516
518
|
|
|
517
519
|
&[data-color='purple'] {
|
|
518
|
-
@include set-background-color-button(map
|
|
520
|
+
@include set-background-color-button(map.get($primary, base));
|
|
519
521
|
}
|
|
520
522
|
}
|
|
521
523
|
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
// Tabs/Navs/Pills
|
|
3
|
+
|
|
2
4
|
.tab-content {
|
|
3
5
|
padding: 30px 0 20px;
|
|
4
6
|
}
|
|
@@ -16,7 +18,7 @@
|
|
|
16
18
|
&.active {
|
|
17
19
|
background-color: transparent;
|
|
18
20
|
border: 0;
|
|
19
|
-
border-bottom: 3px map
|
|
21
|
+
border-bottom: 3px map.get($primary, base) solid;
|
|
20
22
|
}
|
|
21
23
|
}
|
|
22
24
|
|
|
@@ -32,12 +34,12 @@
|
|
|
32
34
|
|
|
33
35
|
/* Tab style shared by TabMenu and Tabs (active state) */
|
|
34
36
|
.tab-style {
|
|
35
|
-
background-color: map
|
|
37
|
+
background-color: map.get($primary, base) !important;
|
|
36
38
|
box-shadow: none !important;
|
|
37
39
|
color: rgb(255 255 255) !important;
|
|
38
40
|
|
|
39
41
|
&:hover {
|
|
40
|
-
background-color: map
|
|
42
|
+
background-color: map.get($primary, base) !important;
|
|
41
43
|
color: rgb(255 255 255) !important;
|
|
42
44
|
}
|
|
43
45
|
}
|
|
@@ -49,15 +51,15 @@
|
|
|
49
51
|
border: 0;
|
|
50
52
|
margin-top: 40px;
|
|
51
53
|
/* Design tokens so PrimeNG applies active tab styling */
|
|
52
|
-
--p-tabs-tab-active-background: #{map
|
|
54
|
+
--p-tabs-tab-active-background: #{map.get($primary, base)};
|
|
53
55
|
--p-tabs-tab-active-color: rgb(255 255 255);
|
|
54
|
-
--p-tabs-tab-color: #{map
|
|
56
|
+
--p-tabs-tab-color: #{map.get($primary, base)};
|
|
55
57
|
/* Ink bar removed: active tab uses solid fill + .p-tablist border-bottom; ink bar misaligns with gap/border */
|
|
56
58
|
--p-tabs-active-bar-background: transparent;
|
|
57
59
|
|
|
58
60
|
.p-tablist {
|
|
59
61
|
background: $background-nav-tabs;
|
|
60
|
-
border-bottom: 4px solid map
|
|
62
|
+
border-bottom: 4px solid map.get($primary, base);
|
|
61
63
|
flex-wrap: wrap;
|
|
62
64
|
justify-content: flex-start;
|
|
63
65
|
overflow: hidden;
|
|
@@ -80,7 +82,7 @@
|
|
|
80
82
|
padding: 6px !important;
|
|
81
83
|
background: transparent;
|
|
82
84
|
border-radius: 0;
|
|
83
|
-
color: map
|
|
85
|
+
color: map.get($primary, base);
|
|
84
86
|
font-size: 14px;
|
|
85
87
|
font-weight: 400;
|
|
86
88
|
line-height: 1.3;
|
|
@@ -131,7 +133,7 @@
|
|
|
131
133
|
|
|
132
134
|
.p-tabmenu-nav {
|
|
133
135
|
background: $background-nav-tabs;
|
|
134
|
-
border-bottom: 4px solid map
|
|
136
|
+
border-bottom: 4px solid map.get($primary, base);
|
|
135
137
|
flex-wrap: wrap;
|
|
136
138
|
justify-content: flex-start;
|
|
137
139
|
overflow: hidden;
|
|
@@ -154,12 +156,12 @@
|
|
|
154
156
|
}
|
|
155
157
|
|
|
156
158
|
.tab-style {
|
|
157
|
-
background-color: map
|
|
159
|
+
background-color: map.get($primary, base) !important;
|
|
158
160
|
box-shadow: none !important;
|
|
159
161
|
color: rgb(255 255 255) !important;
|
|
160
162
|
|
|
161
163
|
&:hover {
|
|
162
|
-
background-color: map
|
|
164
|
+
background-color: map.get($primary, base) !important;
|
|
163
165
|
color: rgb(255 255 255) !important;
|
|
164
166
|
}
|
|
165
167
|
}
|
|
@@ -182,7 +184,7 @@
|
|
|
182
184
|
.p-menuitem-link {
|
|
183
185
|
border: 0 !important;
|
|
184
186
|
border-radius: 0;
|
|
185
|
-
color: map
|
|
187
|
+
color: map.get($primary, base);
|
|
186
188
|
|
|
187
189
|
.p-menuitem-text {
|
|
188
190
|
font-size: 14px;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
1
2
|
@import 'mixins/custom'; // custom mixins
|
|
2
3
|
@import 'layout'; // responsive grid and media queries
|
|
3
4
|
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
|
|
23
24
|
&::before {
|
|
24
25
|
/* this is the vertical line */
|
|
25
|
-
background:
|
|
26
|
+
background: color.adjust($background, $lightness: -5%);
|
|
26
27
|
content: '';
|
|
27
28
|
height: 100%;
|
|
28
29
|
left: 18px;
|
|
@@ -61,7 +62,10 @@
|
|
|
61
62
|
|
|
62
63
|
.cd-timeline-img {
|
|
63
64
|
border-radius: 50%;
|
|
64
|
-
box-shadow:
|
|
65
|
+
box-shadow:
|
|
66
|
+
0 0 0 4px $color-3,
|
|
67
|
+
inset 0 2px 0 rgba(#000, 0.08),
|
|
68
|
+
0 3px 0 4px rgba(#000, 0.05);
|
|
65
69
|
height: 40px;
|
|
66
70
|
left: 0;
|
|
67
71
|
position: absolute;
|
|
@@ -161,7 +165,7 @@
|
|
|
161
165
|
@include clearfix;
|
|
162
166
|
|
|
163
167
|
background: $color-3;
|
|
164
|
-
box-shadow: 0 3px 0
|
|
168
|
+
box-shadow: 0 3px 0 color.adjust($background, $lightness: -5%);
|
|
165
169
|
margin-left: 60px;
|
|
166
170
|
padding: 1em;
|
|
167
171
|
position: relative;
|
|
@@ -246,7 +250,7 @@
|
|
|
246
250
|
padding: 0.8em 1em;
|
|
247
251
|
|
|
248
252
|
.no-touch &:hover {
|
|
249
|
-
background-color:
|
|
253
|
+
background-color: color.adjust($link, $lightness: 5%);
|
|
250
254
|
}
|
|
251
255
|
}
|
|
252
256
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
1
2
|
// from bs mixins/buttons button-variant
|
|
2
3
|
|
|
3
4
|
// For Social Buttons
|
|
@@ -13,29 +14,29 @@
|
|
|
13
14
|
|
|
14
15
|
&:focus,
|
|
15
16
|
&.focus {
|
|
16
|
-
background-color:
|
|
17
|
-
border-color:
|
|
17
|
+
background-color: color.adjust($background, $lightness: -10%) !important;
|
|
18
|
+
border-color: color.adjust($border, $lightness: -25%);
|
|
18
19
|
color: $color;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
&:hover {
|
|
22
|
-
background-color:
|
|
23
|
-
border-color:
|
|
23
|
+
background-color: color.adjust($background, $lightness: -10%) !important;
|
|
24
|
+
border-color: color.adjust($border, $lightness: -12%);
|
|
24
25
|
color: $color;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
&:active,
|
|
28
29
|
&.active,
|
|
29
30
|
.open > &.dropdown-toggle {
|
|
30
|
-
background-color:
|
|
31
|
-
border-color:
|
|
31
|
+
background-color: color.adjust($background, $lightness: -10%) !important;
|
|
32
|
+
border-color: color.adjust($border, $lightness: -12%);
|
|
32
33
|
color: $color;
|
|
33
34
|
|
|
34
35
|
&:hover,
|
|
35
36
|
&:focus,
|
|
36
37
|
&.focus {
|
|
37
|
-
background-color:
|
|
38
|
-
border-color:
|
|
38
|
+
background-color: color.adjust($background, $lightness: -17%) !important;
|
|
39
|
+
border-color: color.adjust($border, $lightness: -25%);
|
|
39
40
|
color: $color;
|
|
40
41
|
}
|
|
41
42
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@mixin font-weight($weight) {
|
|
2
3
|
$weights: (
|
|
3
4
|
thin: 100,
|
|
@@ -21,8 +22,8 @@
|
|
|
21
22
|
);
|
|
22
23
|
$output: $weight;
|
|
23
24
|
|
|
24
|
-
@if map
|
|
25
|
-
$output: map
|
|
25
|
+
@if map.has-key($weights, $weight) {
|
|
26
|
+
$output: map.get($weights, $weight);
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
font-weight: $output;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
1
2
|
@function calc-top($line-height-base, $font-size, $component-height) {
|
|
2
3
|
@return (($line-height-base * $font-size) - $component-height) / 2; // vertical center of line-height
|
|
3
4
|
}
|
|
@@ -24,13 +25,13 @@
|
|
|
24
25
|
$color-brightness: brightness($color);
|
|
25
26
|
$dark-text-brightness: brightness($dark);
|
|
26
27
|
$light-text-brightness: brightness($light);
|
|
28
|
+
@if abs($color-brightness - $light-text-brightness) >
|
|
29
|
+
abs($color-brightness - $dark-text-brightness)
|
|
30
|
+
{
|
|
31
|
+
@return $light;
|
|
32
|
+
}
|
|
27
33
|
|
|
28
|
-
@return
|
|
29
|
-
abs($color-brightness - $light-text-brightness) >
|
|
30
|
-
abs($color-brightness - $dark-text-brightness),
|
|
31
|
-
$light,
|
|
32
|
-
$dark
|
|
33
|
-
);
|
|
34
|
+
@return $dark;
|
|
34
35
|
}
|
|
35
36
|
}
|
|
36
37
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
// This file has been autogenerated by grunt task lessToSass. Any changes will be overwritten.
|
|
2
3
|
|
|
3
4
|
.noUi-target,
|
|
@@ -33,7 +34,9 @@
|
|
|
33
34
|
|
|
34
35
|
// WARNING: Property with star prefix found. Checks for the star property hack (targets IE6/7) (star-property-hack) Browsers: All
|
|
35
36
|
.noUi-state-tap .noUi-origin {
|
|
36
|
-
transition:
|
|
37
|
+
transition:
|
|
38
|
+
left 0.3s,
|
|
39
|
+
top 0.3s;
|
|
37
40
|
}
|
|
38
41
|
|
|
39
42
|
.noUi-state-drag * {
|
|
@@ -48,7 +51,7 @@
|
|
|
48
51
|
@include box-shadow($shadow-2dp);
|
|
49
52
|
|
|
50
53
|
background: rgb(255 255 255);
|
|
51
|
-
border: 5px solid map
|
|
54
|
+
border: 5px solid map.get($primary, base);
|
|
52
55
|
border-radius: 100%;
|
|
53
56
|
box-sizing: border-box;
|
|
54
57
|
cursor: pointer;
|
|
@@ -147,53 +150,53 @@
|
|
|
147
150
|
|
|
148
151
|
.slider {
|
|
149
152
|
&.noUi-connect {
|
|
150
|
-
background-color: map
|
|
153
|
+
background-color: map.get($primary, base);
|
|
151
154
|
}
|
|
152
155
|
|
|
153
156
|
.noUi-handle {
|
|
154
|
-
border-color: map
|
|
157
|
+
border-color: map.get($primary, base);
|
|
155
158
|
}
|
|
156
159
|
|
|
157
160
|
&.slider-info {
|
|
158
161
|
.noUi-connect {
|
|
159
|
-
background-color: map
|
|
162
|
+
background-color: map.get($info, base);
|
|
160
163
|
}
|
|
161
164
|
|
|
162
165
|
.noUi-handle {
|
|
163
|
-
border-color: map
|
|
166
|
+
border-color: map.get($info, base);
|
|
164
167
|
}
|
|
165
168
|
}
|
|
166
169
|
|
|
167
170
|
&.slider-success {
|
|
168
171
|
& .noUi-connect,
|
|
169
172
|
&.noUi-connect {
|
|
170
|
-
background-color: map
|
|
173
|
+
background-color: map.get($success, base);
|
|
171
174
|
}
|
|
172
175
|
|
|
173
176
|
.noUi-handle {
|
|
174
|
-
border-color: map
|
|
177
|
+
border-color: map.get($success, base);
|
|
175
178
|
}
|
|
176
179
|
}
|
|
177
180
|
|
|
178
181
|
&.slider-warning {
|
|
179
182
|
& .noUi-connect,
|
|
180
183
|
&.noUi-connect {
|
|
181
|
-
background-color: map
|
|
184
|
+
background-color: map.get($warning, base);
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
.noUi-handle {
|
|
185
|
-
border-color: map
|
|
188
|
+
border-color: map.get($warning, base);
|
|
186
189
|
}
|
|
187
190
|
}
|
|
188
191
|
|
|
189
192
|
&.slider-danger {
|
|
190
193
|
& .noUi-connect,
|
|
191
194
|
&.noUi-connect {
|
|
192
|
-
background-color: map
|
|
195
|
+
background-color: map.get($danger, base);
|
|
193
196
|
}
|
|
194
197
|
|
|
195
198
|
.noUi-handle {
|
|
196
|
-
border-color: map
|
|
199
|
+
border-color: map.get($danger, base);
|
|
197
200
|
}
|
|
198
201
|
}
|
|
199
202
|
}
|
|
@@ -1,25 +1,28 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@mixin scrollbar-rail-default($theme) {
|
|
2
|
-
border-radius:
|
|
3
|
+
border-radius: map.get($theme, border-radius);
|
|
3
4
|
display: none;
|
|
4
|
-
opacity:
|
|
5
|
+
opacity: map.get($theme, rail-default-opacity);
|
|
5
6
|
position: absolute; /* please don't change 'position' */
|
|
6
|
-
transition:
|
|
7
|
+
transition:
|
|
8
|
+
background-color 0.2s linear,
|
|
9
|
+
opacity 0.2s linear;
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
@mixin scrollbar-rail-hover($theme) {
|
|
10
|
-
background-color:
|
|
11
|
-
opacity:
|
|
13
|
+
background-color: map.get($theme, rail-hover-bg);
|
|
14
|
+
opacity: map.get($theme, rail-hover-opacity);
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
@mixin scrollbar-default($theme) {
|
|
15
|
-
background-color:
|
|
16
|
-
border-radius:
|
|
18
|
+
background-color: map.get($theme, bar-container-hover-bg);
|
|
19
|
+
border-radius: map.get($theme, border-radius);
|
|
17
20
|
position: absolute; /* please don't change 'position' */
|
|
18
21
|
transition: background-color 0.2s linear;
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
@mixin scrollbar-hover($theme) {
|
|
22
|
-
background-color:
|
|
25
|
+
background-color: map.get($theme, bar-hover-bg);
|
|
23
26
|
}
|
|
24
27
|
|
|
25
28
|
@mixin in-scrolling($theme) {
|
|
@@ -54,47 +57,47 @@
|
|
|
54
57
|
|
|
55
58
|
&.ps-active-x > .ps-scrollbar-x-rail,
|
|
56
59
|
&.ps-active-y > .ps-scrollbar-y-rail {
|
|
57
|
-
background-color:
|
|
60
|
+
background-color: map.get($theme, bar-bg);
|
|
58
61
|
display: block;
|
|
59
62
|
}
|
|
60
63
|
|
|
61
64
|
> .ps-scrollbar-x-rail {
|
|
62
65
|
@include scrollbar-rail-default($theme);
|
|
63
66
|
|
|
64
|
-
bottom:
|
|
67
|
+
bottom: map.get(
|
|
65
68
|
$theme,
|
|
66
69
|
scrollbar-x-rail-bottom
|
|
67
70
|
); /* there must be 'bottom' for ps-scrollbar-x-rail */
|
|
68
|
-
height:
|
|
71
|
+
height: map.get($theme, scrollbar-x-rail-height);
|
|
69
72
|
|
|
70
73
|
> .ps-scrollbar-x {
|
|
71
74
|
@include scrollbar-default($theme);
|
|
72
75
|
|
|
73
|
-
bottom:
|
|
76
|
+
bottom: map.get(
|
|
74
77
|
$theme,
|
|
75
78
|
scrollbar-x-bottom
|
|
76
79
|
); /* there must be 'bottom' for ps-scrollbar-x */
|
|
77
|
-
height:
|
|
80
|
+
height: map.get($theme, scrollbar-x-height);
|
|
78
81
|
}
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
> .ps-scrollbar-y-rail {
|
|
82
85
|
@include scrollbar-rail-default($theme);
|
|
83
86
|
|
|
84
|
-
right:
|
|
87
|
+
right: map.get(
|
|
85
88
|
$theme,
|
|
86
89
|
scrollbar-y-rail-right
|
|
87
90
|
); /* there must be 'right' for ps-scrollbar-y-rail */
|
|
88
|
-
width:
|
|
91
|
+
width: map.get($theme, scrollbar-y-rail-width);
|
|
89
92
|
|
|
90
93
|
> .ps-scrollbar-y {
|
|
91
94
|
@include scrollbar-default($theme);
|
|
92
95
|
|
|
93
|
-
right:
|
|
96
|
+
right: map.get(
|
|
94
97
|
$theme,
|
|
95
98
|
scrollbar-y-right
|
|
96
99
|
); /* there must be 'right' for ps-scrollbar-y */
|
|
97
|
-
width:
|
|
100
|
+
width: map.get($theme, scrollbar-y-width);
|
|
98
101
|
}
|
|
99
102
|
}
|
|
100
103
|
|
|
@@ -103,7 +106,7 @@
|
|
|
103
106
|
|
|
104
107
|
> .ps-scrollbar-x-rail,
|
|
105
108
|
> .ps-scrollbar-y-rail {
|
|
106
|
-
opacity:
|
|
109
|
+
opacity: map.get($theme, rail-container-hover-opacity);
|
|
107
110
|
}
|
|
108
111
|
|
|
109
112
|
> .ps-scrollbar-x-rail:hover {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@import 'main';
|
|
2
3
|
|
|
3
4
|
// Colors
|
|
@@ -31,7 +32,7 @@ $ps-scrollbar-y-width: 8px !default;
|
|
|
31
32
|
|
|
32
33
|
.ps-theme-dark {
|
|
33
34
|
@include ps-container(
|
|
34
|
-
map
|
|
35
|
+
map.merge(
|
|
35
36
|
$ps-theme-default,
|
|
36
37
|
(
|
|
37
38
|
border-radius: $ps-border-radius,
|
|
@@ -53,7 +54,7 @@ $ps-scrollbar-y-width: 8px !default;
|
|
|
53
54
|
|
|
54
55
|
.ps-theme-light {
|
|
55
56
|
@include ps-container(
|
|
56
|
-
map
|
|
57
|
+
map.merge(
|
|
57
58
|
$ps-theme-default,
|
|
58
59
|
(
|
|
59
60
|
border-radius: $ps-border-radius,
|
|
@@ -76,7 +77,7 @@ $ps-scrollbar-y-width: 8px !default;
|
|
|
76
77
|
.menu-collapsed {
|
|
77
78
|
.ps-theme-dark {
|
|
78
79
|
@include ps-container(
|
|
79
|
-
map
|
|
80
|
+
map.merge(
|
|
80
81
|
$ps-theme-default,
|
|
81
82
|
(
|
|
82
83
|
border-radius: $ps-border-radius,
|
|
@@ -98,7 +99,7 @@ $ps-scrollbar-y-width: 8px !default;
|
|
|
98
99
|
|
|
99
100
|
ul.ps-theme-dark {
|
|
100
101
|
@include ps-container(
|
|
101
|
-
map
|
|
102
|
+
map.merge(
|
|
102
103
|
$ps-theme-default,
|
|
103
104
|
(
|
|
104
105
|
border-radius: $ps-border-radius,
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'variables/branding-variables' as branding;
|
|
2
|
+
|
|
1
3
|
@mixin empowering {
|
|
2
4
|
background: linear-gradient(
|
|
3
5
|
to right,
|
|
@@ -10,7 +12,7 @@
|
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
@mixin greenBackgroundButton {
|
|
13
|
-
background:
|
|
15
|
+
background: branding.$loginButton;
|
|
14
16
|
border: 0;
|
|
15
17
|
border-radius: 50px;
|
|
16
18
|
color: rgb(255 255 255);
|
|
@@ -23,6 +25,6 @@
|
|
|
23
25
|
|
|
24
26
|
&:hover {
|
|
25
27
|
background-color: rgb(255 255 255);
|
|
26
|
-
color:
|
|
28
|
+
color: branding.$loginButton;
|
|
27
29
|
}
|
|
28
30
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '../variables' as *;
|
|
3
|
+
|
|
1
4
|
* {
|
|
2
5
|
box-sizing: border-box;
|
|
3
6
|
}
|
|
@@ -5208,7 +5211,7 @@ p-table {
|
|
|
5208
5211
|
}
|
|
5209
5212
|
|
|
5210
5213
|
.p-menuitem-link-active {
|
|
5211
|
-
color: map
|
|
5214
|
+
color: map.get($danger, base) !important;
|
|
5212
5215
|
font-weight: 600;
|
|
5213
5216
|
}
|
|
5214
5217
|
|