@featherk/styles 0.6.2 → 0.6.4
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 +189 -109
- package/dist/v8.2.0/css/featherk.css +1 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-datetime.css +29 -0
- package/dist/v8.2.0/external-styles/featherk-overrides--k-menu.css +39 -0
- package/dist/v8.2.0/external-styles/featherk-overrides--k-zerowidthspace.css +0 -10
- package/dist/v8.2.0/scss/_externalStyles.scss +10 -8
- package/dist/v8.2.0/scss/_fonts.scss +17 -17
- package/dist/v8.2.0/scss/_overrides.scss +53 -29
- package/dist/v8.2.0/scss/_tokens.scss +2 -0
- package/package.json +1 -1
|
@@ -65,3 +65,32 @@
|
|
|
65
65
|
.k-animation-container:has(.k-calendar-view) {
|
|
66
66
|
margin-top: 0.25rem;
|
|
67
67
|
}
|
|
68
|
+
|
|
69
|
+
/* Custom Time Picker */
|
|
70
|
+
.fk-timepicker .k-timepicker {
|
|
71
|
+
width: 10rem;
|
|
72
|
+
min-width: 10rem;
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-content: space-between;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.fk-timepicker .k-timepicker.k-input .k-maskedtextbox.k-input,
|
|
78
|
+
.fk-timepicker .k-timepicker.k-input.k-focus .k-maskedtextbox.k-input {
|
|
79
|
+
/* get rid of the outline on .k-maskedtextbox */
|
|
80
|
+
border: 0;
|
|
81
|
+
outline: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Custom Date Picker */
|
|
85
|
+
.fk-datepicker .k-datepicker {
|
|
86
|
+
width: 10rem;
|
|
87
|
+
min-width: 10rem;
|
|
88
|
+
display: flex;
|
|
89
|
+
justify-content: space-between;
|
|
90
|
+
}
|
|
91
|
+
.fk-datepicker .k-datepicker.k-input .k-maskedtextbox.k-input,
|
|
92
|
+
.fk-datepicker .k-datepicker.k-input.k-focus .k-maskedtextbox.k-input {
|
|
93
|
+
/* get rid of the outline on .k-maskedtextbox */
|
|
94
|
+
border: 0;
|
|
95
|
+
outline: 0;
|
|
96
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* HORIZONTAL */
|
|
2
|
+
.fk-menu .k-menu.k-menu-horizontal > .k-item.k-menu-item {
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
.fk-menu
|
|
6
|
+
.k-menu.k-menu-horizontal
|
|
7
|
+
> .k-item.k-menu-item.fk-separator-prefix::before,
|
|
8
|
+
.fk-menu
|
|
9
|
+
.k-menu.k-menu-horizontal
|
|
10
|
+
> .k-item.k-menu-item.fk-separator-suffix::after {
|
|
11
|
+
content: "";
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
background: var(--kendo-color-border);
|
|
16
|
+
width: 1px;
|
|
17
|
+
margin: 0 -1px;
|
|
18
|
+
pointer-events: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* VERTICAL */
|
|
22
|
+
.fk-menu
|
|
23
|
+
.k-menu.k-menu-vertical
|
|
24
|
+
> .k-item.k-menu-item.fk-separator-prefix::before,
|
|
25
|
+
.fk-menu
|
|
26
|
+
.k-menu.k-menu-vertical
|
|
27
|
+
> .k-item.k-menu-item.fk-separator-suffix::after {
|
|
28
|
+
content: "";
|
|
29
|
+
background: var(--kendo-color-border);
|
|
30
|
+
height: 1px;
|
|
31
|
+
margin: -1px 0;
|
|
32
|
+
pointer-events: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* SHARED */
|
|
36
|
+
.fk-menu .k-menu-vertical,
|
|
37
|
+
.fk-menu .k-menu-horizontal {
|
|
38
|
+
width: fit-content;
|
|
39
|
+
}
|
|
@@ -1,17 +1,19 @@
|
|
|
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
|
|
|
15
|
-
@use "../external-styles/featherk-overrides--k-
|
|
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-menu.css";
|
|
16
|
+
|
|
17
|
+
@use "../external-styles/featherk-overrides--k-zerowidthspace.css";
|
|
16
18
|
|
|
17
|
-
@use "../external-styles/featherk-overrides--k-
|
|
19
|
+
@use "../external-styles/featherk-overrides--k-datetime.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
|
}
|
|
@@ -1285,30 +1285,14 @@
|
|
|
1285
1285
|
h2{
|
|
1286
1286
|
@extend %fk-typography-feather-heading-2;
|
|
1287
1287
|
|
|
1288
|
-
}
|
|
1289
|
-
h3{
|
|
1290
|
-
@extend %fk-typography-feather-heading-3;
|
|
1291
|
-
|
|
1292
1288
|
}
|
|
1293
1289
|
h4{
|
|
1294
1290
|
@extend %fk-typography-feather-heading-4;
|
|
1295
1291
|
|
|
1296
|
-
}
|
|
1297
|
-
h5{
|
|
1298
|
-
@extend %fk-typography-feather-heading-5;
|
|
1299
|
-
|
|
1300
1292
|
}
|
|
1301
1293
|
h6{
|
|
1302
1294
|
@extend %fk-typography-feather-heading-6;
|
|
1303
1295
|
|
|
1304
|
-
}
|
|
1305
|
-
ul{
|
|
1306
|
-
@extend %fk-typography-feather-body-small;
|
|
1307
|
-
|
|
1308
|
-
}
|
|
1309
|
-
div{
|
|
1310
|
-
@extend %fk-typography-feather-body-small;
|
|
1311
|
-
|
|
1312
1296
|
}
|
|
1313
1297
|
.k-grid.k-grid-md .k-table{
|
|
1314
1298
|
border-collapse: separate;
|
|
@@ -2370,7 +2354,7 @@
|
|
|
2370
2354
|
transition-duration: 280ms;
|
|
2371
2355
|
transition-property: all;
|
|
2372
2356
|
transition-timing-function: ease-out;
|
|
2373
|
-
min-width:
|
|
2357
|
+
min-width: unset;
|
|
2374
2358
|
|
|
2375
2359
|
}
|
|
2376
2360
|
.k-timepicker.k-input.k-input-solid{
|
|
@@ -4431,10 +4415,10 @@
|
|
|
4431
4415
|
border-left-style: solid;
|
|
4432
4416
|
border-right-style: solid;
|
|
4433
4417
|
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-
|
|
4418
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
4419
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
4420
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
4421
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
4438
4422
|
|
|
4439
4423
|
}
|
|
4440
4424
|
.k-expander.k-expanded .k-expander-content-wrapper{
|
|
@@ -4494,10 +4478,10 @@
|
|
|
4494
4478
|
|
|
4495
4479
|
}
|
|
4496
4480
|
.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-
|
|
4481
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
4482
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
4483
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
4484
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
4501
4485
|
|
|
4502
4486
|
}
|
|
4503
4487
|
.k-expander.k-expanded{
|
|
@@ -4508,10 +4492,6 @@
|
|
|
4508
4492
|
border-left-style: solid;
|
|
4509
4493
|
border-right-style: solid;
|
|
4510
4494
|
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
4495
|
z-index: 1;
|
|
4516
4496
|
|
|
4517
4497
|
}
|
|
@@ -5375,4 +5355,48 @@
|
|
|
5375
5355
|
background-color: initial;
|
|
5376
5356
|
background-image: $fk-feather-focused-on-surface-gradient;
|
|
5377
5357
|
|
|
5358
|
+
}
|
|
5359
|
+
h2.fk-heading2{
|
|
5360
|
+
@extend %fk-typography-feather-heading-2;
|
|
5361
|
+
|
|
5362
|
+
}
|
|
5363
|
+
h3.fk-heading3{
|
|
5364
|
+
@extend %fk-typography-feather-heading-3;
|
|
5365
|
+
|
|
5366
|
+
}
|
|
5367
|
+
h4.fk-heading4{
|
|
5368
|
+
@extend %fk-typography-feather-heading-4;
|
|
5369
|
+
|
|
5370
|
+
}
|
|
5371
|
+
h5.fk-heading5{
|
|
5372
|
+
@extend %fk-typography-feather-heading-5;
|
|
5373
|
+
|
|
5374
|
+
}
|
|
5375
|
+
div.fk-container{
|
|
5376
|
+
padding-bottom: $fk-kendo-expander-content-padding-x;
|
|
5377
|
+
padding-left: $fk-kendo-expander-content-padding-x;
|
|
5378
|
+
padding-right: $fk-kendo-expander-content-padding-x;
|
|
5379
|
+
padding-top: $fk-kendo-expander-content-padding-x;
|
|
5380
|
+
background-color: $fk-kendo-component-bg;
|
|
5381
|
+
background-image: none;
|
|
5382
|
+
border-bottom-left-radius: $fk-kendo-border-radius;
|
|
5383
|
+
border-bottom-right-radius: $fk-kendo-border-radius;
|
|
5384
|
+
border-top-left-radius: $fk-kendo-border-radius;
|
|
5385
|
+
border-top-right-radius: $fk-kendo-border-radius;
|
|
5386
|
+
border-bottom-width: $fk-kendo-expander-border-width;
|
|
5387
|
+
border-left-width: $fk-kendo-expander-border-width;
|
|
5388
|
+
border-right-width: $fk-kendo-expander-border-width;
|
|
5389
|
+
border-top-width: $fk-kendo-expander-border-width;
|
|
5390
|
+
border-bottom-color: $fk-kendo-component-border;
|
|
5391
|
+
border-bottom-style: solid;
|
|
5392
|
+
border-left-color: $fk-kendo-component-border;
|
|
5393
|
+
border-left-style: solid;
|
|
5394
|
+
border-right-color: $fk-kendo-component-border;
|
|
5395
|
+
border-right-style: solid;
|
|
5396
|
+
border-top-color: $fk-kendo-component-border;
|
|
5397
|
+
border-top-style: solid;
|
|
5398
|
+
display: flex;
|
|
5399
|
+
flex-direction: column;
|
|
5400
|
+
row-gap: $fk-kendo-expander-spacing-y;
|
|
5401
|
+
|
|
5378
5402
|
}
|
|
@@ -297,6 +297,7 @@ $fk-kendo-chip-outline-selected-text: $fk-feather-primary-text-on-color;
|
|
|
297
297
|
$fk-kendo-color-editor-bg: $fk-app-surface;
|
|
298
298
|
$fk-kendo-color-gradient-bg: $fk-app-surface;
|
|
299
299
|
$fk-kendo-component-text: $fk-on-app-surface;
|
|
300
|
+
$fk-kendo-component-border: $fk-border;
|
|
300
301
|
$fk-kendo-component-header-text: $fk-feather-primary-text-on-surface;
|
|
301
302
|
$fk-kendo-invalid-border: $fk-error;
|
|
302
303
|
$fk-kendo-drawer-hover-bg: $fk-base-hover;
|
|
@@ -493,6 +494,7 @@ $kendo-chip-outline-selected-text: $fk-kendo-chip-outline-selected-text;
|
|
|
493
494
|
$kendo-color-editor-bg: $fk-kendo-color-editor-bg;
|
|
494
495
|
$kendo-color-gradient-bg: $fk-kendo-color-gradient-bg;
|
|
495
496
|
$kendo-component-text: $fk-kendo-component-text;
|
|
497
|
+
$kendo-component-border: $fk-kendo-component-border;
|
|
496
498
|
$kendo-component-header-text: $fk-kendo-component-header-text;
|
|
497
499
|
$kendo-invalid-border: $fk-kendo-invalid-border;
|
|
498
500
|
$kendo-drawer-hover-bg: $fk-kendo-drawer-hover-bg;
|