ice_cube-select 4.0.4 → 4.0.5
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/ice_cube_select.css +33 -0
- data/lib/ice_cube_select/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26c2997350c9389b6a104ca63f08ed5db79e591b4d8bd4736fcc5a70edb7ac81
|
|
4
|
+
data.tar.gz: fb38328f3bb2941c7021cbc2cf653186767fef1489a135fc1c37f1eb0936db04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be99b0176ddb583f00d151c1fc4dbb37fa74cebbee48209295d1f10d6f0854690a252a24002078d5ca57951f230ee7f54151a08356620caaaa96b90729998525
|
|
7
|
+
data.tar.gz: 6e51a48f85e4356398fb372e8cd52b5bc2080290d587d8e1145d65fb576ac44efa785e99c5af60e9bab9c95727b7791f56ac5f52056b2e3b58665ada32847443
|
|
@@ -310,6 +310,39 @@ select option.bold {
|
|
|
310
310
|
background-color: var(--ice-cube-select-item-bg-hover);
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
+
/* Anchored monthly: grid of day-offset cells after the anchor weekday */
|
|
314
|
+
.anchored_offsets {
|
|
315
|
+
display: flex;
|
|
316
|
+
flex-wrap: wrap;
|
|
317
|
+
gap: 4px;
|
|
318
|
+
margin-top: 5px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.anchored_offsets a {
|
|
322
|
+
display: block;
|
|
323
|
+
min-width: 20px;
|
|
324
|
+
padding: 5px 7px;
|
|
325
|
+
font-size: 14px;
|
|
326
|
+
text-align: center;
|
|
327
|
+
border: 1px solid var(--ice-cube-select-border);
|
|
328
|
+
text-decoration: none;
|
|
329
|
+
font-weight: bold;
|
|
330
|
+
box-shadow: inset 0px 1px 2px var(--ice-cube-select-shadow-light);
|
|
331
|
+
background-color: var(--ice-cube-select-item-bg);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.anchored_offsets a.selected {
|
|
335
|
+
background-color: var(--ice-cube-select-primary);
|
|
336
|
+
color: var(--ice-cube-select-text-on-primary);
|
|
337
|
+
box-shadow: inset 1px 1px 2px var(--ice-cube-select-shadow-medium);
|
|
338
|
+
background-image: linear-gradient(to bottom, var(--ice-cube-select-primary-gradient-start), var(--ice-cube-select-primary-gradient-end));
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.anchored_offsets a:hover {
|
|
342
|
+
cursor: pointer;
|
|
343
|
+
background-color: var(--ice-cube-select-item-bg-hover);
|
|
344
|
+
}
|
|
345
|
+
|
|
313
346
|
/* Calendar day/week views */
|
|
314
347
|
.ice_cube_select_calendar_day,
|
|
315
348
|
.ice_cube_select_calendar_week {
|