File tree 3 files changed +28
-6
lines changed
3 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Razor" >
2
2
3
3
<PropertyGroup >
4
- <Version >9.4.12 </Version >
4
+ <Version >9.5.0 </Version >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change @@ -417,14 +417,12 @@ public partial class Layout : IHandlerException
417
417
/// 获得/设置 Gets or sets a collection of additional assemblies that should be searched for components that can match URIs.
418
418
/// </summary>
419
419
[ Parameter ]
420
- [ NotNull ]
421
420
public IEnumerable < Assembly > ? AdditionalAssemblies { get ; set ; }
422
421
423
422
/// <summary>
424
423
/// 获得/设置 鼠标悬停提示文字信息
425
424
/// </summary>
426
425
[ Parameter ]
427
- [ NotNull ]
428
426
public string ? TooltipText { get ; set ; }
429
427
430
428
/// <summary>
@@ -453,7 +451,7 @@ public partial class Layout : IHandlerException
453
451
private IStringLocalizer < Layout > ? Localizer { get ; set ; }
454
452
455
453
private bool _init ;
456
- private Tab _tab = default ! ;
454
+ private Tab _tab = null ! ;
457
455
458
456
/// <summary>
459
457
/// <inheritdoc/>
@@ -483,7 +481,7 @@ protected override async Task OnInitializedAsync()
483
481
if ( AuthenticationStateTask != null )
484
482
{
485
483
// wasm 模式下 开启权限必须提供 AdditionalAssemblies 参数
486
- AdditionalAssemblies ??= new [ ] { Assembly . GetEntryAssembly ( ) ! } ;
484
+ AdditionalAssemblies ??= [ Assembly . GetEntryAssembly ( ) ! ] ;
487
485
488
486
var url = Navigation . ToBaseRelativePath ( Navigation . Uri ) ;
489
487
var context = RouteTableFactory . Create ( AdditionalAssemblies , url ) ;
Original file line number Diff line number Diff line change 504
504
& :hover {
505
505
background-color : var (--bb-tabs-item-hover-bg-color );
506
506
}
507
- }
507
+ }
508
508
}
509
509
510
510
.btn-fs {
593
593
margin-left : -2rem ;
594
594
}
595
595
596
+ & :not (.active ) {
597
+ & :not (:hover ):not (:first-child ) {
598
+ .tabs-item {
599
+ & :before {
600
+ content : ' ' ;
601
+ width : 2px ;
602
+ background-color : rgba (var (--bs-emphasis-color-rgb ), .2 );
603
+ position : absolute ;
604
+ left : 0 ;
605
+ top : 8px ;
606
+ bottom : 10px ;
607
+ }
608
+ }
609
+ }
610
+
611
+ & :hover + .tabs-item-wrap {
612
+ .tabs-item {
613
+ & :before {
614
+ content : none ;
615
+ }
616
+ }
617
+ }
618
+ }
619
+
596
620
.tabs-item {
597
621
border : none !important ;
598
622
border-top-left-radius : 10px ;
You can’t perform that action at this time.
0 commit comments