@featherk/styles 0.6.3 → 0.6.5
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/dist/v8.2.0/css/featherk-beautified.css +196 -121
- package/dist/v8.2.0/css/featherk.css +1 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-datetime.css +37 -0
- package/dist/v8.2.0/external-styles/featherk-overrides--k-menu.css +8 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-version.css +3 -0
- package/dist/v8.2.0/scss/_externalStyles.scss +9 -7
- package/dist/v8.2.0/scss/_fonts.scss +17 -17
- package/dist/v8.2.0/scss/_overrides.scss +53 -33
- package/dist/v8.2.0/scss/_tokens.scss +4 -0
- package/dist/v8.2.0/scss/custom-components/_fk-container-with-heading.scss +22 -0
- package/dist/v8.2.0/scss/custom-components/index.scss +2 -0
- package/dist/v8.2.0/scss/index.scss +2 -1
- package/package.json +1 -1
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
.fk-daterangepicker .k-maskedtextbox {
|
|
2
|
+
width: 16rem;
|
|
3
|
+
min-width: 16rem;
|
|
4
|
+
}
|
|
5
|
+
.fk-daterangepicker .k-maskedtextbox:has(.k-clear-value) {
|
|
6
|
+
width: 18rem;
|
|
7
|
+
min-width: 18rem; /* FEATHER-1155 */
|
|
8
|
+
}
|
|
1
9
|
.fk-daterangepicker .k-input-suffix,
|
|
2
10
|
.fk-daterangepicker .k-input-prefix {
|
|
3
11
|
cursor: pointer;
|
|
@@ -65,3 +73,32 @@
|
|
|
65
73
|
.k-animation-container:has(.k-calendar-view) {
|
|
66
74
|
margin-top: 0.25rem;
|
|
67
75
|
}
|
|
76
|
+
|
|
77
|
+
/* Custom Time Picker */
|
|
78
|
+
.fk-timepicker .k-timepicker {
|
|
79
|
+
width: 10rem;
|
|
80
|
+
min-width: 10rem;
|
|
81
|
+
display: flex;
|
|
82
|
+
justify-content: space-between;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.fk-timepicker .k-timepicker.k-input .k-maskedtextbox.k-input,
|
|
86
|
+
.fk-timepicker .k-timepicker.k-input.k-focus .k-maskedtextbox.k-input {
|
|
87
|
+
/* get rid of the outline on .k-maskedtextbox */
|
|
88
|
+
border: 0;
|
|
89
|
+
outline: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Custom Date Picker */
|
|
93
|
+
.fk-datepicker .k-datepicker {
|
|
94
|
+
width: 10rem;
|
|
95
|
+
min-width: 10rem;
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: space-between;
|
|
98
|
+
}
|
|
99
|
+
.fk-datepicker .k-datepicker.k-input .k-maskedtextbox.k-input,
|
|
100
|
+
.fk-datepicker .k-datepicker.k-input.k-focus .k-maskedtextbox.k-input {
|
|
101
|
+
/* get rid of the outline on .k-maskedtextbox */
|
|
102
|
+
border: 0;
|
|
103
|
+
outline: 0;
|
|
104
|
+
}
|
|
@@ -11,13 +11,20 @@
|
|
|
11
11
|
content: "";
|
|
12
12
|
position: absolute;
|
|
13
13
|
top: 0;
|
|
14
|
-
bottom: 0;
|
|
15
14
|
background: var(--kendo-color-border);
|
|
16
15
|
width: 1px;
|
|
17
16
|
margin: 0 -1px;
|
|
18
17
|
pointer-events: none;
|
|
19
18
|
}
|
|
20
19
|
|
|
20
|
+
/* FEATHER-1141 */
|
|
21
|
+
.fk-menu .k-menu.k-menu-horizontal > .k-item.k-menu-item.fk-separator-prefix::before {
|
|
22
|
+
left: 0;
|
|
23
|
+
}
|
|
24
|
+
.fk-menu .k-menu.k-menu-horizontal > .k-item.k-menu-item.fk-separator-suffix::after {
|
|
25
|
+
right: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
21
28
|
/* VERTICAL */
|
|
22
29
|
.fk-menu
|
|
23
30
|
.k-menu.k-menu-vertical
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
@use "../external-styles/featherk-map-evitiAdvisor.css";
|
|
2
2
|
|
|
3
|
-
@use "../external-styles/featherk-overrides--k-tooltip.css";
|
|
4
|
-
|
|
5
|
-
@use "../external-styles/featherk-overrides--k-popup-alert.css";
|
|
6
|
-
|
|
7
|
-
@use "../external-styles/featherk-overrides--k-expander.css";
|
|
8
|
-
|
|
9
3
|
@use "../external-styles/featherk-overrides--k-slider.css";
|
|
10
4
|
|
|
11
5
|
@use "../external-styles/featherk-overrides--k-grid.css";
|
|
12
6
|
|
|
13
7
|
@use "../external-styles/featherk-overrides--k-loader.css";
|
|
14
8
|
|
|
9
|
+
@use "../external-styles/featherk-overrides--k-popup-alert.css";
|
|
10
|
+
|
|
11
|
+
@use "../external-styles/featherk-overrides--k-tooltip.css";
|
|
12
|
+
|
|
13
|
+
@use "../external-styles/featherk-overrides--k-expander.css";
|
|
14
|
+
|
|
15
|
+
@use "../external-styles/featherk-overrides--k-zerowidthspace.css";
|
|
16
|
+
|
|
15
17
|
@use "../external-styles/featherk-overrides--k-datetime.css";
|
|
16
18
|
|
|
17
19
|
@use "../external-styles/featherk-overrides--k-menu.css";
|
|
18
20
|
|
|
19
|
-
@use "../external-styles/featherk-overrides--k-
|
|
21
|
+
@use "../external-styles/featherk-overrides--k-version.css";
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: Inter;
|
|
3
|
+
src: url('../fonts/Inter-Regular.woff2') format('woff2');
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
font-display: auto;
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
@font-face {
|
|
2
10
|
font-family: Inter;
|
|
3
11
|
src: url('../fonts/Inter-Light.woff2') format('woff2');
|
|
@@ -16,33 +24,33 @@
|
|
|
16
24
|
|
|
17
25
|
@font-face {
|
|
18
26
|
font-family: Inter;
|
|
19
|
-
src: url('../fonts/Inter-
|
|
27
|
+
src: url('../fonts/Inter-BoldItalic.woff2') format('woff2');
|
|
20
28
|
font-style: italic;
|
|
21
|
-
font-weight:
|
|
29
|
+
font-weight: 700;
|
|
22
30
|
font-display: auto;
|
|
23
31
|
}
|
|
24
32
|
|
|
25
33
|
@font-face {
|
|
26
34
|
font-family: Inter;
|
|
27
|
-
src: url('../fonts/Inter-
|
|
35
|
+
src: url('../fonts/Inter-MediumItalic.woff2') format('woff2');
|
|
28
36
|
font-style: italic;
|
|
29
|
-
font-weight:
|
|
37
|
+
font-weight: 500;
|
|
30
38
|
font-display: auto;
|
|
31
39
|
}
|
|
32
40
|
|
|
33
41
|
@font-face {
|
|
34
42
|
font-family: Inter;
|
|
35
|
-
src: url('../fonts/Inter-
|
|
36
|
-
font-style:
|
|
37
|
-
font-weight:
|
|
43
|
+
src: url('../fonts/Inter-LightItalic.woff2') format('woff2');
|
|
44
|
+
font-style: italic;
|
|
45
|
+
font-weight: 300;
|
|
38
46
|
font-display: auto;
|
|
39
47
|
}
|
|
40
48
|
|
|
41
49
|
@font-face {
|
|
42
50
|
font-family: Inter;
|
|
43
|
-
src: url('../fonts/Inter-
|
|
51
|
+
src: url('../fonts/Inter-Italic.woff2') format('woff2');
|
|
44
52
|
font-style: italic;
|
|
45
|
-
font-weight:
|
|
53
|
+
font-weight: 400;
|
|
46
54
|
font-display: auto;
|
|
47
55
|
}
|
|
48
56
|
|
|
@@ -52,12 +60,4 @@
|
|
|
52
60
|
font-style: normal;
|
|
53
61
|
font-weight: 500;
|
|
54
62
|
font-display: auto;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: Inter;
|
|
59
|
-
src: url('../fonts/Inter-BoldItalic.woff2') format('woff2');
|
|
60
|
-
font-style: italic;
|
|
61
|
-
font-weight: 700;
|
|
62
|
-
font-display: auto;
|
|
63
63
|
}
|
|
@@ -629,10 +629,6 @@
|
|
|
629
629
|
background-color: initial !important;
|
|
630
630
|
background-image: $fk-feather-focused-on-surface-gradient !important;
|
|
631
631
|
|
|
632
|
-
}
|
|
633
|
-
h1{
|
|
634
|
-
@extend %fk-typography-feather-heading-1;
|
|
635
|
-
|
|
636
632
|
}
|
|
637
633
|
.k-menu-popup .k-group.k-menu-group .k-item.k-menu-item .k-link.k-menu-link{
|
|
638
634
|
padding-left: 16px;
|
|
@@ -1285,30 +1281,14 @@
|
|
|
1285
1281
|
h2{
|
|
1286
1282
|
@extend %fk-typography-feather-heading-2;
|
|
1287
1283
|
|
|
1288
|
-
}
|
|
1289
|
-
h3{
|
|
1290
|
-
@extend %fk-typography-feather-heading-3;
|
|
1291
|
-
|
|
1292
1284
|
}
|
|
1293
1285
|
h4{
|
|
1294
1286
|
@extend %fk-typography-feather-heading-4;
|
|
1295
1287
|
|
|
1296
|
-
}
|
|
1297
|
-
h5{
|
|
1298
|
-
@extend %fk-typography-feather-heading-5;
|
|
1299
|
-
|
|
1300
1288
|
}
|
|
1301
1289
|
h6{
|
|
1302
1290
|
@extend %fk-typography-feather-heading-6;
|
|
1303
1291
|
|
|
1304
|
-
}
|
|
1305
|
-
ul{
|
|
1306
|
-
@extend %fk-typography-feather-body-small;
|
|
1307
|
-
|
|
1308
|
-
}
|
|
1309
|
-
div{
|
|
1310
|
-
@extend %fk-typography-feather-body-small;
|
|
1311
|
-
|
|
1312
1292
|
}
|
|
1313
1293
|
.k-grid.k-grid-md .k-table{
|
|
1314
1294
|
border-collapse: separate;
|
|
@@ -2370,7 +2350,7 @@
|
|
|
2370
2350
|
transition-duration: 280ms;
|
|
2371
2351
|
transition-property: all;
|
|
2372
2352
|
transition-timing-function: ease-out;
|
|
2373
|
-
min-width:
|
|
2353
|
+
min-width: unset;
|
|
2374
2354
|
|
|
2375
2355
|
}
|
|
2376
2356
|
.k-timepicker.k-input.k-input-solid{
|
|
@@ -4431,10 +4411,10 @@
|
|
|
4431
4411
|
border-left-style: solid;
|
|
4432
4412
|
border-right-style: solid;
|
|
4433
4413
|
border-top-style: solid;
|
|
4434
|
-
border-bottom-left-radius: $fk-
|
|
4435
|
-
border-bottom-right-radius: $fk-
|
|
4436
|
-
border-top-left-radius: $fk-
|
|
4437
|
-
border-top-right-radius: $fk-
|
|
4414
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
4415
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
4416
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
4417
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
4438
4418
|
|
|
4439
4419
|
}
|
|
4440
4420
|
.k-expander.k-expanded .k-expander-content-wrapper{
|
|
@@ -4494,10 +4474,10 @@
|
|
|
4494
4474
|
|
|
4495
4475
|
}
|
|
4496
4476
|
.k-expander .k-expander-header{
|
|
4497
|
-
border-bottom-left-radius: $fk-
|
|
4498
|
-
border-bottom-right-radius: $fk-
|
|
4499
|
-
border-top-left-radius: $fk-
|
|
4500
|
-
border-top-right-radius: $fk-
|
|
4477
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
4478
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
4479
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
4480
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
4501
4481
|
|
|
4502
4482
|
}
|
|
4503
4483
|
.k-expander.k-expanded{
|
|
@@ -4508,10 +4488,6 @@
|
|
|
4508
4488
|
border-left-style: solid;
|
|
4509
4489
|
border-right-style: solid;
|
|
4510
4490
|
border-top-style: solid;
|
|
4511
|
-
border-bottom-left-radius: $fk-feather-border-radius;
|
|
4512
|
-
border-bottom-right-radius: $fk-feather-border-radius;
|
|
4513
|
-
border-top-left-radius: $fk-feather-border-radius;
|
|
4514
|
-
border-top-right-radius: $fk-feather-border-radius;
|
|
4515
4491
|
z-index: 1;
|
|
4516
4492
|
|
|
4517
4493
|
}
|
|
@@ -5375,4 +5351,48 @@
|
|
|
5375
5351
|
background-color: initial;
|
|
5376
5352
|
background-image: $fk-feather-focused-on-surface-gradient;
|
|
5377
5353
|
|
|
5354
|
+
}
|
|
5355
|
+
div.fk-container{
|
|
5356
|
+
padding-bottom: $fk-kendo-expander-content-padding-x;
|
|
5357
|
+
padding-left: $fk-kendo-expander-content-padding-x;
|
|
5358
|
+
padding-right: $fk-kendo-expander-content-padding-x;
|
|
5359
|
+
padding-top: $fk-kendo-expander-content-padding-x;
|
|
5360
|
+
background-color: $fk-kendo-component-bg;
|
|
5361
|
+
background-image: none;
|
|
5362
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
5363
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
5364
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
5365
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
5366
|
+
border-bottom-width: $fk-kendo-expander-border-width;
|
|
5367
|
+
border-left-width: $fk-kendo-expander-border-width;
|
|
5368
|
+
border-right-width: $fk-kendo-expander-border-width;
|
|
5369
|
+
border-top-width: $fk-kendo-expander-border-width;
|
|
5370
|
+
border-bottom-color: $fk-kendo-component-border;
|
|
5371
|
+
border-bottom-style: solid;
|
|
5372
|
+
border-left-color: $fk-kendo-component-border;
|
|
5373
|
+
border-left-style: solid;
|
|
5374
|
+
border-right-color: $fk-kendo-component-border;
|
|
5375
|
+
border-right-style: solid;
|
|
5376
|
+
border-top-color: $fk-kendo-component-border;
|
|
5377
|
+
border-top-style: solid;
|
|
5378
|
+
display: flex;
|
|
5379
|
+
flex-direction: column;
|
|
5380
|
+
row-gap: $fk-kendo-expander-spacing-y;
|
|
5381
|
+
|
|
5382
|
+
}
|
|
5383
|
+
p{
|
|
5384
|
+
font-family: Inter;
|
|
5385
|
+
|
|
5386
|
+
}
|
|
5387
|
+
h1:hover{
|
|
5388
|
+
@extend %fk-typography-feather-heading-1;
|
|
5389
|
+
|
|
5390
|
+
}
|
|
5391
|
+
h1{
|
|
5392
|
+
@extend %fk-typography-feather-heading-1;
|
|
5393
|
+
|
|
5394
|
+
}
|
|
5395
|
+
h3{
|
|
5396
|
+
@extend %fk-typography-feather-heading-3;
|
|
5397
|
+
|
|
5378
5398
|
}
|
|
@@ -258,6 +258,7 @@ $fk-error-emphasis: rgb(187.5, 65.25, 87);
|
|
|
258
258
|
$fk-error-on-subtle: rgb(57.75, 0.7, 10.85);
|
|
259
259
|
$fk-on-error: white;
|
|
260
260
|
$fk-error-on-surface: rgb(123.75, 1.5, 23.25);
|
|
261
|
+
$fk-dark-on-surface: rgba(10,12,27,0.6);
|
|
261
262
|
$fk-on-dark: $fk-feather-primary-text-on-color;
|
|
262
263
|
$fk-kendo-appbar-dark-text: $fk-on-dark;
|
|
263
264
|
$fk-on-app-surface: $fk-feather-secondary-text-on-surface;
|
|
@@ -297,6 +298,7 @@ $fk-kendo-chip-outline-selected-text: $fk-feather-primary-text-on-color;
|
|
|
297
298
|
$fk-kendo-color-editor-bg: $fk-app-surface;
|
|
298
299
|
$fk-kendo-color-gradient-bg: $fk-app-surface;
|
|
299
300
|
$fk-kendo-component-text: $fk-on-app-surface;
|
|
301
|
+
$fk-kendo-component-border: $fk-border;
|
|
300
302
|
$fk-kendo-component-header-text: $fk-feather-primary-text-on-surface;
|
|
301
303
|
$fk-kendo-invalid-border: $fk-error;
|
|
302
304
|
$fk-kendo-drawer-hover-bg: $fk-base-hover;
|
|
@@ -493,6 +495,7 @@ $kendo-chip-outline-selected-text: $fk-kendo-chip-outline-selected-text;
|
|
|
493
495
|
$kendo-color-editor-bg: $fk-kendo-color-editor-bg;
|
|
494
496
|
$kendo-color-gradient-bg: $fk-kendo-color-gradient-bg;
|
|
495
497
|
$kendo-component-text: $fk-kendo-component-text;
|
|
498
|
+
$kendo-component-border: $fk-kendo-component-border;
|
|
496
499
|
$kendo-component-header-text: $fk-kendo-component-header-text;
|
|
497
500
|
$kendo-invalid-border: $fk-kendo-invalid-border;
|
|
498
501
|
$kendo-drawer-hover-bg: $fk-kendo-drawer-hover-bg;
|
|
@@ -570,6 +573,7 @@ error-emphasis: rgb(187.5, 65.25, 87),
|
|
|
570
573
|
error-on-subtle: rgb(57.75, 0.7, 10.85),
|
|
571
574
|
on-error: white,
|
|
572
575
|
error-on-surface: rgb(123.75, 1.5, 23.25),
|
|
576
|
+
dark-on-surface: rgba(10,12,27,0.6),
|
|
573
577
|
on-dark: $fk-feather-primary-text-on-color,
|
|
574
578
|
on-app-surface: $fk-feather-secondary-text-on-surface,
|
|
575
579
|
surface-alt: $fk-feather-surface-shade-1,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
.fk-container .fk-container-actions{
|
|
3
|
+
justify-content: end;
|
|
4
|
+
display: inline-flex;
|
|
5
|
+
|
|
6
|
+
}
|
|
7
|
+
.fk-container .fk-container-content{
|
|
8
|
+
display: flex;
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
.fk-container{
|
|
12
|
+
@extend %fk-typography-feather-body-small;
|
|
13
|
+
|
|
14
|
+
}
|
|
15
|
+
.fk-container .fk-container-heading-section{
|
|
16
|
+
height: auto;
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
justify-content: space-around;
|
|
20
|
+
align-items: stretch;
|
|
21
|
+
|
|
22
|
+
}
|