loon-bulma-react 2026.0.63 → 2026.0.65

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.
@@ -131,5 +131,9 @@ a.#{iv.$class-prefix}bulma-box {
131
131
  &.is-#{$name} {
132
132
  border-color: $color;
133
133
  }
134
+ &.is-border {
135
+ // gebruik de standaard border color!
136
+ border-color: cv.getVar('border');
137
+ }
134
138
  }
135
139
  }
@@ -8,6 +8,8 @@
8
8
  $color: cv.getVar('text-strong') !default;
9
9
  $background-color: cv.getVar('scheme-main') !default;
10
10
 
11
+ $hour-height: 60px !default;
12
+
11
13
  $cell-border-color: cv.getVar('border') !default;
12
14
  $cell-border-style: solid !default;
13
15
  $cell-border-width: 0 0 1px !default;
@@ -16,15 +18,25 @@ $cell-heading-color: cv.getVar('text-strong') !default;
16
18
  $cell-text-align: left !default;
17
19
 
18
20
  div.lbr-grid-container {
19
- @extend %block;
20
- padding: 3px;
21
- border-radius: iv.$radius;
21
+ height: 100%;
22
22
  display: grid;
23
- grid-template-rows: 30px repeat(6, minmax(170px, auto));
24
- justify-items: 'stretch';
25
- align-items: 'stretch';
23
+ // TR: de rows en columns van het grid worden inline geset als overschreven!
26
24
  color: $color;
25
+
26
+ &.is-week {
27
+ overflow-y: auto;
28
+ }
29
+ }
30
+
31
+ div.lbr-grid-container.is-week {
32
+ .calendar-header-cell {
33
+ position: sticky;
34
+ top: 0;
35
+ z-index: 30;
36
+ background-color: cv.getVar('scheme-main');
37
+ }
27
38
  }
39
+
28
40
  .calendar-header-cell {
29
41
  text-align: center;
30
42
  border-bottom: thin solid $cell-border-color;
@@ -45,7 +57,7 @@ div.lbr-grid-container {
45
57
  text-align: center;
46
58
  font-size: 0.7em;
47
59
  padding-top: 1em;
48
- height: 60px;
60
+ height: $hour-height;
49
61
  // border-top: thin solid $cell-border-color;
50
62
  border-bottom: thin solid $cell-border-color;
51
63
  border-right: thin solid $cell-border-color;
@@ -71,9 +83,13 @@ div.lbr-grid-container {
71
83
  text-align: center;
72
84
  color: $color;
73
85
  font-size: 1.1em;
86
+ min-height: 0;
87
+ overflow: hidden;
88
+ display: flex;
89
+ flex-direction: column;
74
90
 
75
91
  &.is-not-current-period {
76
- background-color: cv.getVar('scheme-main-ter');
92
+ // background-color: cv.getVar('scheme-main-ter');
77
93
  color: cv.getVar('text-weak');
78
94
  }
79
95
 
@@ -86,9 +102,16 @@ div.lbr-grid-container {
86
102
  }
87
103
  }
88
104
 
105
+ .calendar-day-events {
106
+ flex: 1 1 auto;
107
+ min-height: 0;
108
+ overflow: hidden;
109
+ }
110
+
89
111
  .calendar-time-slot {
90
- max-height: 60px;
91
- overflow: clip;
112
+ position: relative;
113
+ max-height: $hour-height;
114
+ overflow: visible;
92
115
  border-bottom: thin solid $cell-border-color;
93
116
  border-right: thin solid $cell-border-color;
94
117
  border-left: thin solid $cell-border-color;
@@ -97,6 +120,12 @@ div.lbr-grid-container {
97
120
  flex-wrap: nowrap;
98
121
  }
99
122
 
123
+ div.lbr-grid-container.is-week {
124
+ .calendar-time-slot > .event-base {
125
+ z-index: 20;
126
+ }
127
+ }
128
+
100
129
  span.more-events-expander {
101
130
  display: inline-block;
102
131
  width: 0.9em;
@@ -140,12 +169,12 @@ div.kleurblok {
140
169
  transition:
141
170
  background-color 0.2s ease-in-out,
142
171
  color 0.2s ease-in-out;
143
- height: 1.5em;
144
- margin: 6px 3px;
172
+ height: 21px;
173
+ margin: 3px 3px;
145
174
  border-radius: 5px;
146
175
  text-align: start;
147
- padding-left: 3px;
148
- padding-right: 3px;
176
+ // padding-left: 3px;
177
+ // padding-right: 3px;
149
178
  overflow: clip;
150
179
  text-overflow: clip;
151
180
  color: $color;
@@ -154,10 +183,26 @@ div.kleurblok {
154
183
 
155
184
  .more-events {
156
185
  @extend .event-base;
157
- background-color: transparent;
186
+
187
+ // background-color: transparent;
158
188
  color: $color;
159
189
  font-size: 0.75em;
160
190
  cursor: pointer;
191
+
192
+ &:hover {
193
+ background-color: cv.getVar('scheme-main-ter');
194
+ }
195
+ }
196
+
197
+ .calendar-more-events-overlay {
198
+ z-index: 1100;
199
+ background-color: cv.getVar('scheme-main');
200
+ box-shadow: cv.getVar('shadow');
201
+
202
+ .calendar-more-events-overlay-body {
203
+ flex: 0 0 auto;
204
+ overflow: visible;
205
+ }
161
206
  }
162
207
 
163
208
  // ##################################
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "loon-bulma-react",
3
3
  "private": false,
4
- "version": "2026.0.63",
4
+ "version": "2026.0.65",
5
5
  "description": "Bulma & React componenten voor Loon Salarissoftware",
6
6
  "type": "module",
7
7
  "license": "MIT",