@docmd/ui 0.6.2 → 0.6.4
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/assets/css/docmd-main.css +40 -0
- package/package.json +1 -1
|
@@ -1246,6 +1246,7 @@ html[data-theme=dark] .theme-toggle-button .icon-sun {
|
|
|
1246
1246
|
background-color: var(--bg-color);
|
|
1247
1247
|
box-shadow: var(--shadow-sm);
|
|
1248
1248
|
overflow: hidden;
|
|
1249
|
+
|
|
1249
1250
|
}
|
|
1250
1251
|
|
|
1251
1252
|
.callout {
|
|
@@ -2561,4 +2562,43 @@ hr {
|
|
|
2561
2562
|
|
|
2562
2563
|
code {
|
|
2563
2564
|
padding: .15em .5em;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.docmd-container.grids {
|
|
2568
|
+
display: grid;
|
|
2569
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
2570
|
+
gap: var(--space-6);
|
|
2571
|
+
margin: var(--space-4) 0;
|
|
2572
|
+
width: 100%;
|
|
2573
|
+
border: 0;
|
|
2574
|
+
box-shadow: none;
|
|
2575
|
+
padding: 0;
|
|
2576
|
+
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
.docmd-container.grid-item {
|
|
2580
|
+
display: flex;
|
|
2581
|
+
flex-direction: column;
|
|
2582
|
+
gap: var(--space-4);
|
|
2583
|
+
min-width: 0;
|
|
2584
|
+
background: transparent;
|
|
2585
|
+
padding: var(--space-1);
|
|
2586
|
+
border: 0;
|
|
2587
|
+
box-shadow: none;
|
|
2588
|
+
margin-bottom: 0;
|
|
2589
|
+
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
ul.contains-task-list {
|
|
2593
|
+
list-style: none !important;
|
|
2594
|
+
padding-left: 0.5em;
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
ul.contains-task-list > li::marker {
|
|
2598
|
+
content: none !important;
|
|
2599
|
+
display: none !important;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.task-list-item-checkbox {
|
|
2603
|
+
margin-top: .25em;
|
|
2564
2604
|
}
|