@featherk/styles 0.4.3 → 0.4.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.
Files changed (32) hide show
  1. package/dist/v7.2.0/css/feather-k-override.css +84 -0
  2. package/dist/v7.2.0/css/feather-ks.css +2 -0
  3. package/dist/v7.2.0/fonts/Inter-Bold.woff2 +0 -0
  4. package/dist/v7.2.0/fonts/Inter-BoldItalic.woff2 +0 -0
  5. package/dist/v7.2.0/fonts/Inter-Italic.woff2 +0 -0
  6. package/dist/v7.2.0/fonts/Inter-Light.woff2 +0 -0
  7. package/dist/v7.2.0/fonts/Inter-LightItalic.woff2 +0 -0
  8. package/dist/v7.2.0/fonts/Inter-Medium.woff2 +0 -0
  9. package/dist/v7.2.0/fonts/Inter-MediumItalic.woff2 +0 -0
  10. package/dist/v7.2.0/fonts/Inter-Regular.woff2 +0 -0
  11. package/dist/v8.2.0/css/featherk.css +2 -0
  12. package/dist/v8.2.0/external-styles/featherk-map-evitiAdvisor.css +70 -0
  13. package/dist/v8.2.0/external-styles/featherk-overrides--k-grid.css +48 -0
  14. package/dist/v8.2.0/external-styles/featherk-overrides--k-loader.css +59 -0
  15. package/dist/v8.2.0/external-styles/featherk-overrides--k-popup-alert.css +34 -0
  16. package/dist/v8.2.0/external-styles/featherk-overrides--k-slider.css +22 -0
  17. package/dist/v8.2.0/fonts/Inter-Bold.woff2 +0 -0
  18. package/dist/v8.2.0/fonts/Inter-BoldItalic.woff2 +0 -0
  19. package/dist/v8.2.0/fonts/Inter-Italic.woff2 +0 -0
  20. package/dist/v8.2.0/fonts/Inter-Light.woff2 +0 -0
  21. package/dist/v8.2.0/fonts/Inter-LightItalic.woff2 +0 -0
  22. package/dist/v8.2.0/fonts/Inter-Medium.woff2 +0 -0
  23. package/dist/v8.2.0/fonts/Inter-MediumItalic.woff2 +0 -0
  24. package/dist/v8.2.0/fonts/Inter-Regular.woff2 +0 -0
  25. package/dist/v8.2.0/scss/_externalStyles.scss +9 -0
  26. package/dist/v8.2.0/scss/_fonts.scss +63 -0
  27. package/dist/v8.2.0/scss/_kendo.scss +5 -0
  28. package/dist/v8.2.0/scss/_overrides.scss +4605 -0
  29. package/dist/v8.2.0/scss/_placeholders.scss +7 -0
  30. package/dist/v8.2.0/scss/_tokens.scss +721 -0
  31. package/dist/v8.2.0/scss/index.scss +9 -0
  32. package/package.json +1 -1
@@ -0,0 +1,84 @@
1
+ /* FOCUS v. FOCUS-VISIBLE */
2
+ /* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible#focus_vs_focus-visible */
3
+
4
+ /*
5
+ HMM: Brian P. - What should focus style be?
6
+ */
7
+ .k-button.k-button-solid-primary:focus,
8
+ .k-button:focus.k-button-solid-base,
9
+ .k-checkbox-wrap .k-checkbox:checked:focus,
10
+ .k-radio:checked:focus,
11
+ button.k-button.k-button-flat:focus,
12
+ .k-button.k-button-outline.k-button-outline-primary:focus {
13
+ box-shadow: 0px 0px 0px 0px transparent;
14
+ }
15
+
16
+ /*
17
+ HMM: Brian P. - What should focus visible style be?
18
+ */
19
+ .k-button.k-button-solid-primary:focus-visible,
20
+ .k-button:focus-visible.k-button-solid-base,
21
+ .k-checkbox-wrap .k-checkbox:checked:focus-visible,
22
+ .k-radio:checked:focus-visible,
23
+ button.k-button.k-button-flat:focus-visible,
24
+ .k-button.k-button-outline.k-button-outline-primary:focus-visible {
25
+ outline: 2px solid rgba(20, 20, 20, 0.4);
26
+ }
27
+
28
+ /* SLIDER, RANGESLIDER */
29
+ .k-slider-track {
30
+ /*
31
+ HMM: Brian P. - Should we give a visual hint to the track, without ticks?
32
+ */
33
+ outline: 1px solid rgba(10, 10, 10, 0.15);
34
+ }
35
+ /* "There's no ticks in baseball" */
36
+ .k-tick.k-tick-large.k-tick-horizontal,
37
+ .k-tick.k-tick-large.k-tick-vertical {
38
+ visibility: hidden;
39
+ .k-label {
40
+ visibility: visible;
41
+ }
42
+ }
43
+
44
+ /* BUTTON */
45
+ .k-button.k-button-md.k-rounded-md.k-button-solid.k-button-solid-primary {
46
+ span.k-button-text {
47
+ color: white;
48
+ }
49
+ }
50
+
51
+ /* FLOATING ACTION BUTTON (FAB) */
52
+ .k-fab > .k-fab-icon {
53
+ color: white;
54
+ }
55
+
56
+ .k-button.k-button-md.k-rounded-md.k-button-solid.k-button-solid-primary,
57
+ .k-button.k-button-md.k-rounded-md.k-button-outline.k-button-outline-primary,
58
+ .k-button.k-button-md.k-rounded-md.k-button-flat.k-button-flat-primary {
59
+ min-width: fit-content;
60
+ height: fit-content;
61
+ }
62
+
63
+ .k-textbox {
64
+ min-width: fit-content;
65
+ height: fit-content;
66
+ }
67
+
68
+ /* Remove alternating row color */
69
+ .k-grid.k-grid-md .k-table .k-table-tbody .k-master-row.k-table-row.k-alt.k-table-alt-row {
70
+ background-color: inherit;
71
+ }
72
+
73
+ a{
74
+ color: unset;
75
+ }
76
+
77
+ /* ICONS in APP BAR */
78
+ .k-appbar .k-appbar-section .k-button.k-button-flat .k-button-icon.k-icon.k-svg-icon>svg {
79
+ color: white;
80
+ }
81
+
82
+ .k-grid .k-table-row {
83
+ cursor: pointer;
84
+ }