@ansiversa/components 0.0.47 → 0.0.49
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 +1 -1
- package/src/AvTableToolbar.astro +4 -2
- package/src/styles/global.css +25 -1
package/package.json
CHANGED
package/src/AvTableToolbar.astro
CHANGED
|
@@ -12,8 +12,10 @@ const { title, subtitle, className = "" } = Astro.props as Props;
|
|
|
12
12
|
|
|
13
13
|
<div class={`av-table-toolbar ${className}`}>
|
|
14
14
|
<div class="av-table-toolbar__left">
|
|
15
|
-
<
|
|
16
|
-
|
|
15
|
+
<slot name="title">
|
|
16
|
+
<h1 class="av-table-toolbar__title">{title}</h1>
|
|
17
|
+
{subtitle ? <p class="av-table-toolbar__subtitle">{subtitle}</p> : null}
|
|
18
|
+
</slot>
|
|
17
19
|
</div>
|
|
18
20
|
|
|
19
21
|
<div class="av-table-toolbar__right">
|
package/src/styles/global.css
CHANGED
|
@@ -828,7 +828,7 @@
|
|
|
828
828
|
}
|
|
829
829
|
|
|
830
830
|
.av-table__th-order {
|
|
831
|
-
width:
|
|
831
|
+
width: 84px;
|
|
832
832
|
text-align: center;
|
|
833
833
|
white-space: nowrap;
|
|
834
834
|
}
|
|
@@ -845,6 +845,8 @@
|
|
|
845
845
|
justify-content: space-between;
|
|
846
846
|
gap: 1rem;
|
|
847
847
|
margin-bottom: 0.75rem;
|
|
848
|
+
position: relative;
|
|
849
|
+
z-index: 1;
|
|
848
850
|
}
|
|
849
851
|
|
|
850
852
|
.av-table-toolbar__title {
|
|
@@ -879,6 +881,21 @@
|
|
|
879
881
|
justify-content: flex-end;
|
|
880
882
|
}
|
|
881
883
|
|
|
884
|
+
.av-admin-page-top {
|
|
885
|
+
padding-top: 1rem;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.av-faq-admin__count {
|
|
889
|
+
color: var(--ans-muted);
|
|
890
|
+
font-size: 0.875rem;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.av-table-toolbar input,
|
|
894
|
+
.av-table-toolbar .av-input {
|
|
895
|
+
position: relative;
|
|
896
|
+
z-index: 1;
|
|
897
|
+
}
|
|
898
|
+
|
|
882
899
|
/* PAGER */
|
|
883
900
|
.av-table-pager {
|
|
884
901
|
display: flex;
|
|
@@ -978,6 +995,13 @@
|
|
|
978
995
|
|
|
979
996
|
.av-navbar {
|
|
980
997
|
@apply border-b border-slate-800/60 bg-slate-950/60 backdrop-blur-xl;
|
|
998
|
+
position: relative;
|
|
999
|
+
z-index: 50;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.av-navbar__dropdown {
|
|
1003
|
+
position: absolute;
|
|
1004
|
+
z-index: 60;
|
|
981
1005
|
}
|
|
982
1006
|
|
|
983
1007
|
.av-navbar-inner {
|