@trackunit/css-tailwind 1.3.172 → 1.3.173
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.
- package/package.json +2 -2
- package/tailwind-base.generated.css +29 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.173",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@trackunit/css-component-tokens": "1.3.166",
|
|
13
13
|
"@trackunit/css-tailwind-custom-properties-plugin": "1.3.166",
|
|
14
14
|
"@trackunit/ui-design-tokens": "1.3.164",
|
|
15
|
-
"@trackunit/css-core": "1.3.
|
|
15
|
+
"@trackunit/css-core": "1.3.166",
|
|
16
16
|
"@tailwindcss/typography": "^0.5.10"
|
|
17
17
|
},
|
|
18
18
|
"type": "commonjs",
|
|
@@ -500,11 +500,14 @@
|
|
|
500
500
|
}
|
|
501
501
|
.react-calendar__month-view__weekdays {
|
|
502
502
|
text-align: center;
|
|
503
|
-
text-transform: uppercase;
|
|
504
503
|
font: inherit;
|
|
505
504
|
font-size: 0.75em;
|
|
505
|
+
color: #94a3b8;
|
|
506
506
|
font-weight: bold;
|
|
507
507
|
}
|
|
508
|
+
.react-calendar__viewContainer abbr:where([title]) {
|
|
509
|
+
text-decoration: none !important;
|
|
510
|
+
}
|
|
508
511
|
.react-calendar__month-view__weekdays__weekday {
|
|
509
512
|
padding: 0.5em;
|
|
510
513
|
}
|
|
@@ -514,10 +517,12 @@
|
|
|
514
517
|
justify-content: center;
|
|
515
518
|
font: inherit;
|
|
516
519
|
font-size: 0.75em;
|
|
517
|
-
font-weight:
|
|
520
|
+
font-weight: 600;
|
|
521
|
+
}
|
|
522
|
+
.react-calendar__month-view__days {
|
|
523
|
+
row-gap: 8px;
|
|
518
524
|
}
|
|
519
525
|
.react-calendar__month-view__days__day--weekend {
|
|
520
|
-
color: #d10000;
|
|
521
526
|
}
|
|
522
527
|
.react-calendar__month-view__days__day--neighboringMonth,
|
|
523
528
|
.react-calendar__decade-view__years__year--neighboringDecade,
|
|
@@ -550,12 +555,12 @@
|
|
|
550
555
|
.react-calendar__tile:enabled:focus {
|
|
551
556
|
background-color: #e6e6e6;
|
|
552
557
|
}
|
|
553
|
-
.react-calendar__tile--now {
|
|
554
|
-
|
|
558
|
+
.react-calendar__tile--now:not(.react-calendar__tile--active) {
|
|
559
|
+
color: #2563eb;
|
|
555
560
|
}
|
|
556
561
|
.react-calendar__tile--now:enabled:hover,
|
|
557
562
|
.react-calendar__tile--now:enabled:focus {
|
|
558
|
-
background: #
|
|
563
|
+
background: #1d50bc;
|
|
559
564
|
}
|
|
560
565
|
.react-calendar__tile--hasActive {
|
|
561
566
|
background: #76baff;
|
|
@@ -565,15 +570,29 @@
|
|
|
565
570
|
background: #a9d4ff;
|
|
566
571
|
}
|
|
567
572
|
.react-calendar__tile--active {
|
|
568
|
-
background: #
|
|
569
|
-
|
|
573
|
+
background: #eff6ff;
|
|
574
|
+
}
|
|
575
|
+
.react-calendar__tile:not(.react-calendar__tile--active):enabled:hover {
|
|
576
|
+
border-radius: 8px 8px 8px 8px;
|
|
570
577
|
}
|
|
571
578
|
.react-calendar__tile--active:enabled:hover,
|
|
572
579
|
.react-calendar__tile--active:enabled:focus {
|
|
573
|
-
background: #
|
|
580
|
+
background: #eff6ff;
|
|
581
|
+
border-radius: none !important;
|
|
574
582
|
}
|
|
575
583
|
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
576
|
-
background-color: #
|
|
584
|
+
background-color: #eff6ff;
|
|
585
|
+
border-radius: none !important;
|
|
586
|
+
}
|
|
587
|
+
.react-calendar__tile--rangeStart {
|
|
588
|
+
background: #006edc !important;
|
|
589
|
+
border-radius: 8px 8px 8px 8px;
|
|
590
|
+
color: white;
|
|
591
|
+
}
|
|
592
|
+
.react-calendar__tile--rangeEnd {
|
|
593
|
+
background: #006edc !important;
|
|
594
|
+
border-radius: 8px 8px 8px 8px;
|
|
595
|
+
color: white;
|
|
577
596
|
}
|
|
578
597
|
|
|
579
598
|
/* libs/css/core/src/lib/fonts.css */
|