@rhavenside/baseline-ui 1.0.25 → 1.0.26

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/dist/baseline.css CHANGED
@@ -4613,6 +4613,7 @@ textarea {
4613
4613
  border-top-left-radius: var(--tech-border-radius-sm);
4614
4614
  border-top-right-radius: var(--tech-border-radius-sm);
4615
4615
  background: transparent;
4616
+ transition: var(--transition-base);
4616
4617
  }
4617
4618
  .bl-nav-tabs .bl-nav-link:hover {
4618
4619
  border-color: var(--glass-border-medium);
@@ -4626,6 +4627,39 @@ textarea {
4626
4627
  border-bottom: 0.125rem solid var(--color-accent);
4627
4628
  }
4628
4629
 
4630
+ .bl-tab-content {
4631
+ position: relative;
4632
+ overflow: hidden;
4633
+ }
4634
+ .bl-tab-content [data-tab-content] {
4635
+ display: none;
4636
+ opacity: 0;
4637
+ transition: opacity var(--transition-duration-base) var(--transition-ease-in-out);
4638
+ }
4639
+ .bl-tab-content [data-tab-content].bl-tab-show {
4640
+ display: block;
4641
+ animation: bl-tab-fade-in var(--transition-duration-base) var(--transition-ease-in-out) forwards;
4642
+ }
4643
+ .bl-tab-content [data-tab-content].bl-tab-hide {
4644
+ animation: bl-tab-fade-out var(--transition-duration-base) var(--transition-ease-in-out) forwards;
4645
+ }
4646
+
4647
+ @keyframes bl-tab-fade-in {
4648
+ from {
4649
+ opacity: 0;
4650
+ }
4651
+ to {
4652
+ opacity: 1;
4653
+ }
4654
+ }
4655
+ @keyframes bl-tab-fade-out {
4656
+ from {
4657
+ opacity: 1;
4658
+ }
4659
+ to {
4660
+ opacity: 0;
4661
+ }
4662
+ }
4629
4663
  .bl-nav-pills .bl-nav-link {
4630
4664
  border-radius: var(--tech-border-radius-sm);
4631
4665
  }