@riboseinc/anafero-cli 0.0.58 → 0.0.60
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/bootstrap.css +26 -4
- package/bootstrap.css.map +3 -3
- package/bootstrap.js +8 -8
- package/bootstrap.js.map +3 -3
- package/build-site.css +26 -4
- package/build-site.mjs +30 -16
- package/package.json +1 -1
package/bootstrap.css
CHANGED
|
@@ -31748,13 +31748,13 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31748
31748
|
@media (prefers-color-scheme: light) {
|
|
31749
31749
|
& {
|
|
31750
31750
|
color-scheme: light;
|
|
31751
|
-
background: rgb(
|
|
31751
|
+
background: rgb(213, 213, 213);
|
|
31752
31752
|
}
|
|
31753
31753
|
}
|
|
31754
31754
|
@media (prefers-color-scheme: dark) {
|
|
31755
31755
|
& {
|
|
31756
31756
|
color-scheme: dark;
|
|
31757
|
-
background: rgb(
|
|
31757
|
+
background: rgb(0, 0, 0);
|
|
31758
31758
|
}
|
|
31759
31759
|
}
|
|
31760
31760
|
}
|
|
@@ -31869,7 +31869,11 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31869
31869
|
var(--spectrum-alias-highlight-hover) 2rem);
|
|
31870
31870
|
color: var(--spectrum-accent-color-1300);
|
|
31871
31871
|
> li {
|
|
31872
|
-
display: inline
|
|
31872
|
+
display: inline;
|
|
31873
|
+
word-break: keep-all;
|
|
31874
|
+
overflow-wrap: break-word;
|
|
31875
|
+
white-space-collapse: collapse;
|
|
31876
|
+
text-wrap-style: balance;
|
|
31873
31877
|
> a {
|
|
31874
31878
|
&:link,
|
|
31875
31879
|
&:visited {
|
|
@@ -31892,6 +31896,11 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31892
31896
|
}
|
|
31893
31897
|
.style_navListView {
|
|
31894
31898
|
background: var(--spectrum-alias-background-color-default);
|
|
31899
|
+
background-image:
|
|
31900
|
+
linear-gradient(
|
|
31901
|
+
100deg,
|
|
31902
|
+
var(--spectrum-alias-background-color-default) 20%,
|
|
31903
|
+
var(--spectrum-alias-pasteboard-background-color) 180%);
|
|
31895
31904
|
border: none;
|
|
31896
31905
|
border-radius: 0;
|
|
31897
31906
|
.style_navListViewItemWithLink {
|
|
@@ -31916,9 +31925,22 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31916
31925
|
width: 58px;
|
|
31917
31926
|
display: flex;
|
|
31918
31927
|
flex-flow: column nowrap;
|
|
31919
|
-
background-color: var(--spectrum-alias-background-color
|
|
31928
|
+
background-color: var(--spectrum-alias-pasteboard-background-color);
|
|
31929
|
+
background-image:
|
|
31930
|
+
linear-gradient(
|
|
31931
|
+
91deg,
|
|
31932
|
+
var(--spectrum-alias-background-color-disabled) 10%,
|
|
31933
|
+
transparent 70%);
|
|
31920
31934
|
color: var(--spectrum-alias-text-color);
|
|
31921
31935
|
z-index: 22;
|
|
31936
|
+
&.style_browserBarExpanded {
|
|
31937
|
+
background-color: var(--spectrum-alias-background-color-default);
|
|
31938
|
+
background-image:
|
|
31939
|
+
linear-gradient(
|
|
31940
|
+
91deg,
|
|
31941
|
+
var(--spectrum-alias-background-color-disabled) 10%,
|
|
31942
|
+
transparent 70%);
|
|
31943
|
+
}
|
|
31922
31944
|
.style_browserBarTitle {
|
|
31923
31945
|
flex: 1;
|
|
31924
31946
|
overflow: hidden;
|