@colijnit/corecomponents_v12 12.0.87 → 12.0.89

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.
@@ -12,6 +12,10 @@ $cc-icon-size: 40px !default;
12
12
  $cc-icon-size-small: 30px !default;
13
13
  $cc-default-border-radius: 3px !default;
14
14
 
15
+ $cc-scrollbar-thumbColor: #484f60 !default;
16
+ $cc-scrollbar-trackColor: #e8eceb !default;
17
+ $cc-scrollbar-stopPoint: 10% !default;
18
+
15
19
  $cc-color-action: #2b60a7 !default;
16
20
  $accent: $cc-color-action !default;
17
21
  $cc-color-input-background-color: white !default;
@@ -129,6 +133,14 @@ $cc-checkbox-check-hover-color: $cc-checkbox-check-color !default;
129
133
  $cc-radiobutton-color-action: #5FDCB3 !default;
130
134
  /***************/
131
135
 
136
+ /* dialog */
137
+ $cc-dialog-header-title-font-size: 14px !default;
138
+ $cc-dialog-header-title-margin: 0 0 20px 0 !default;
139
+ $cc-dialog-header-title-font-weight: bold !default;
140
+ $cc-dialog-footer-justify-content: center !default;
141
+ $cc-dialog-footer-column-gap: 10px !default;
142
+ /**********/
143
+
132
144
  /* syncfusion overrides */
133
145
  $input-header-font-color: $cc-color-label;
134
146
  $input-placeholder: $cc-color-label;
@@ -71,3 +71,44 @@ label.e-float-text,
71
71
 
72
72
  @import "./variables";
73
73
  @import '~@syncfusion/ej2-inputs/styles/input/material.scss';
74
+ .co-small-scrollbar {
75
+ overflow: auto;
76
+ &::-webkit-scrollbar {
77
+ -webkit-appearance: none;
78
+ }
79
+
80
+ &::-webkit-scrollbar:vertical {
81
+ width: 15px;
82
+ }
83
+
84
+ &::-webkit-scrollbar:horizontal {
85
+ height: 15px;
86
+ }
87
+
88
+ &::-webkit-scrollbar-thumb:vertical {
89
+ background: linear-gradient(to left, $cc-scrollbar-thumbColor, $cc-scrollbar-thumbColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
90
+ }
91
+ &::-webkit-scrollbar-track:vertical {
92
+ background: linear-gradient(to left, $cc-scrollbar-trackColor, $cc-scrollbar-trackColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
93
+ }
94
+ &::-webkit-scrollbar-thumb:horizontal {
95
+ background: linear-gradient(to top, $cc-scrollbar-thumbColor, $cc-scrollbar-thumbColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
96
+ }
97
+ &::-webkit-scrollbar-track:horizontal {
98
+ background: linear-gradient(to top, $cc-scrollbar-trackColor, $cc-scrollbar-trackColor $cc-scrollbar-stopPoint, transparent $cc-scrollbar-stopPoint, transparent);
99
+ }
100
+ }
101
+
102
+ // global for dialog \\
103
+ .co-dialog-header-title {
104
+ font-size: $cc-dialog-header-title-font-size;
105
+ margin: $cc-dialog-header-title-margin;
106
+ font-weight: $cc-dialog-header-title-font-weight;
107
+ }
108
+
109
+ .co-dialog-footer-button-wrapper {
110
+ display: flex;
111
+ justify-content: $cc-dialog-footer-justify-content;
112
+ column-gap: $cc-dialog-footer-column-gap;
113
+ }
114
+ ///////////////////////
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.0.87",
3
+ "version": "12.0.89",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {