loon-bulma-react 2026.0.64 → 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,16 +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
- // TR: de columns van het grid worden inline geset!
25
- justify-items: 'stretch';
26
- align-items: 'stretch';
23
+ // TR: de rows en columns van het grid worden inline geset als overschreven!
27
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
+ }
28
38
  }
39
+
29
40
  .calendar-header-cell {
30
41
  text-align: center;
31
42
  border-bottom: thin solid $cell-border-color;
@@ -46,7 +57,7 @@ div.lbr-grid-container {
46
57
  text-align: center;
47
58
  font-size: 0.7em;
48
59
  padding-top: 1em;
49
- height: 60px;
60
+ height: $hour-height;
50
61
  // border-top: thin solid $cell-border-color;
51
62
  border-bottom: thin solid $cell-border-color;
52
63
  border-right: thin solid $cell-border-color;
@@ -72,9 +83,13 @@ div.lbr-grid-container {
72
83
  text-align: center;
73
84
  color: $color;
74
85
  font-size: 1.1em;
86
+ min-height: 0;
87
+ overflow: hidden;
88
+ display: flex;
89
+ flex-direction: column;
75
90
 
76
91
  &.is-not-current-period {
77
- background-color: cv.getVar('scheme-main-ter');
92
+ // background-color: cv.getVar('scheme-main-ter');
78
93
  color: cv.getVar('text-weak');
79
94
  }
80
95
 
@@ -87,9 +102,16 @@ div.lbr-grid-container {
87
102
  }
88
103
  }
89
104
 
105
+ .calendar-day-events {
106
+ flex: 1 1 auto;
107
+ min-height: 0;
108
+ overflow: hidden;
109
+ }
110
+
90
111
  .calendar-time-slot {
91
- max-height: 60px;
92
- overflow: clip;
112
+ position: relative;
113
+ max-height: $hour-height;
114
+ overflow: visible;
93
115
  border-bottom: thin solid $cell-border-color;
94
116
  border-right: thin solid $cell-border-color;
95
117
  border-left: thin solid $cell-border-color;
@@ -98,6 +120,12 @@ div.lbr-grid-container {
98
120
  flex-wrap: nowrap;
99
121
  }
100
122
 
123
+ div.lbr-grid-container.is-week {
124
+ .calendar-time-slot > .event-base {
125
+ z-index: 20;
126
+ }
127
+ }
128
+
101
129
  span.more-events-expander {
102
130
  display: inline-block;
103
131
  width: 0.9em;
@@ -141,12 +169,12 @@ div.kleurblok {
141
169
  transition:
142
170
  background-color 0.2s ease-in-out,
143
171
  color 0.2s ease-in-out;
144
- height: 1.5em;
145
- margin: 6px 3px;
172
+ height: 21px;
173
+ margin: 3px 3px;
146
174
  border-radius: 5px;
147
175
  text-align: start;
148
- padding-left: 3px;
149
- padding-right: 3px;
176
+ // padding-left: 3px;
177
+ // padding-right: 3px;
150
178
  overflow: clip;
151
179
  text-overflow: clip;
152
180
  color: $color;
@@ -155,10 +183,26 @@ div.kleurblok {
155
183
 
156
184
  .more-events {
157
185
  @extend .event-base;
158
- background-color: transparent;
186
+
187
+ // background-color: transparent;
159
188
  color: $color;
160
189
  font-size: 0.75em;
161
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
+ }
162
206
  }
163
207
 
164
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.64",
4
+ "version": "2026.0.65",
5
5
  "description": "Bulma & React componenten voor Loon Salarissoftware",
6
6
  "type": "module",
7
7
  "license": "MIT",