@featherk/styles 0.6.5 → 0.6.6
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 +50 -49
- package/dist/v8.2.0/css/featherk.css +1 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-layout.css +13 -0
- package/dist/v8.2.0/external-styles/featherk-overrides--k-menu.css +1 -1
- package/dist/v8.2.0/external-styles/featherk-overrides--k-zerowidthspace.css +2 -0
- package/dist/v8.2.0/scss/_externalStyles.scss +6 -4
- package/dist/v8.2.0/scss/_overrides.scss +15 -29
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* THEMEBUILDER: candidate */
|
|
2
|
+
.fk-field-block {
|
|
3
|
+
margin-bottom: max(1.125rem);
|
|
4
|
+
}
|
|
5
|
+
.fk-field-block :is(.k-label) {
|
|
6
|
+
display: block;
|
|
7
|
+
margin-block: 0.25rem;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* .fk-field-block :is(:nth-child(2)) {} */
|
|
11
|
+
|
|
12
|
+
/* .fk-field-block :is(.k-form-hint, .k-form-hint) {} */
|
|
13
|
+
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
@use "../external-styles/featherk-overrides--k-expander.css";
|
|
14
14
|
|
|
15
|
-
@use "../external-styles/featherk-overrides--k-zerowidthspace.css";
|
|
16
|
-
|
|
17
15
|
@use "../external-styles/featherk-overrides--k-datetime.css";
|
|
18
16
|
|
|
19
|
-
@use "../external-styles/featherk-overrides--k-
|
|
17
|
+
@use "../external-styles/featherk-overrides--k-version.css";
|
|
18
|
+
|
|
19
|
+
@use "../external-styles/featherk-overrides--k-layout.css";
|
|
20
|
+
|
|
21
|
+
@use "../external-styles/featherk-overrides--k-zerowidthspace.css";
|
|
20
22
|
|
|
21
|
-
@use "../external-styles/featherk-overrides--k-
|
|
23
|
+
@use "../external-styles/featherk-overrides--k-menu.css";
|
|
@@ -1277,18 +1277,6 @@
|
|
|
1277
1277
|
border-bottom-right-radius: $fk-kendo-window-border-radius;
|
|
1278
1278
|
overflow: hidden;
|
|
1279
1279
|
|
|
1280
|
-
}
|
|
1281
|
-
h2{
|
|
1282
|
-
@extend %fk-typography-feather-heading-2;
|
|
1283
|
-
|
|
1284
|
-
}
|
|
1285
|
-
h4{
|
|
1286
|
-
@extend %fk-typography-feather-heading-4;
|
|
1287
|
-
|
|
1288
|
-
}
|
|
1289
|
-
h6{
|
|
1290
|
-
@extend %fk-typography-feather-heading-6;
|
|
1291
|
-
|
|
1292
1280
|
}
|
|
1293
1281
|
.k-grid.k-grid-md .k-table{
|
|
1294
1282
|
border-collapse: separate;
|
|
@@ -3515,6 +3503,11 @@
|
|
|
3515
3503
|
transition-property: all;
|
|
3516
3504
|
transition-duration: 280ms;
|
|
3517
3505
|
transition-timing-function: ease-out;
|
|
3506
|
+
outline-color: $fk-kendo-component-border;
|
|
3507
|
+
border-bottom-color: k-color( border );
|
|
3508
|
+
border-left-color: k-color( border );
|
|
3509
|
+
border-right-color: k-color( border );
|
|
3510
|
+
border-top-color: k-color( border );
|
|
3518
3511
|
|
|
3519
3512
|
}
|
|
3520
3513
|
.k-switch.k-switch-on .k-switch-track{
|
|
@@ -3716,15 +3709,20 @@
|
|
|
3716
3709
|
|
|
3717
3710
|
}
|
|
3718
3711
|
.k-input.k-state-readonly.k-input-solid,.k-input[readonly].k-input-solid{
|
|
3719
|
-
border-bottom-color:
|
|
3720
|
-
border-left-color:
|
|
3721
|
-
border-right-color:
|
|
3722
|
-
border-top-color:
|
|
3712
|
+
border-bottom-color: k-color( border );
|
|
3713
|
+
border-left-color: k-color( border );
|
|
3714
|
+
border-right-color: k-color( border );
|
|
3715
|
+
border-top-color: k-color( border );
|
|
3723
3716
|
|
|
3724
3717
|
}
|
|
3725
3718
|
.k-input.k-state-readonly,.k-input[readonly]{
|
|
3726
|
-
background-color:
|
|
3719
|
+
background-color: initial;
|
|
3727
3720
|
background-image: none;
|
|
3721
|
+
border-bottom-style: solid;
|
|
3722
|
+
border-left-style: solid;
|
|
3723
|
+
border-right-style: solid;
|
|
3724
|
+
border-top-style: solid;
|
|
3725
|
+
outline-style: none;
|
|
3728
3726
|
|
|
3729
3727
|
}
|
|
3730
3728
|
.k-dateinput.k-input .k-input-inner{
|
|
@@ -5379,20 +5377,8 @@
|
|
|
5379
5377
|
flex-direction: column;
|
|
5380
5378
|
row-gap: $fk-kendo-expander-spacing-y;
|
|
5381
5379
|
|
|
5382
|
-
}
|
|
5383
|
-
p{
|
|
5384
|
-
font-family: Inter;
|
|
5385
|
-
|
|
5386
|
-
}
|
|
5387
|
-
h1:hover{
|
|
5388
|
-
@extend %fk-typography-feather-heading-1;
|
|
5389
|
-
|
|
5390
5380
|
}
|
|
5391
5381
|
h1{
|
|
5392
5382
|
@extend %fk-typography-feather-heading-1;
|
|
5393
5383
|
|
|
5394
|
-
}
|
|
5395
|
-
h3{
|
|
5396
|
-
@extend %fk-typography-feather-heading-3;
|
|
5397
|
-
|
|
5398
5384
|
}
|