Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Common/BlazorServerCommon_NET8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<None Include="wwwroot\interop.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Syncfusion.Blazor" Version="*" />
<PackageReference Include="Syncfusion.Blazor" Version="31.1.17" />
</ItemGroup>


Expand Down
2 changes: 1 addition & 1 deletion Common/BlazorWasmCommon_NET8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="Syncfusion.Blazor" Version="*" />
<PackageReference Include="Syncfusion.Blazor" Version="31.1.17" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 5 additions & 4 deletions Server/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js"></script>
<script src="_content/BlazorServerCommon_NET8/interop.js" async></script>

<!-- Google Tag Manager -->
<script>
Expand All @@ -27,10 +25,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link href="_content/Syncfusion.Blazor/styles/fluent.css" rel="stylesheet">

<link href="assets/db-icons1/style.css" rel="stylesheet" />
<link href="assets/dbstyle/diagrambuilder.css" rel="stylesheet" />
<HeadOutlet @rendermode="@InteractiveServer" />
<script src="_content/BlazorServerCommon_NET8/interop.js" async type="text/javascript"></script>
<link href="_content/Syncfusion.Blazor/styles/fluent.css" rel="stylesheet">
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<HeadOutlet @rendermode="@InteractiveServer" />
</head>

<body>
Expand Down
1 change: 0 additions & 1 deletion Server/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
@inject IJSRuntime JsRuntime;
@inject SyncfusionBlazorService SyncfusionBlazorService;
@using Syncfusion.Blazor;
@namespace BlazorServerCommon_NET6
@inject Microsoft.AspNetCore.Components.NavigationManager UriHelper;
<SpinnerComponent @ref="SpinnerObj"></SpinnerComponent>
<DiagramMain @ref="DiagramMain"></DiagramMain>
Expand Down
4 changes: 4 additions & 0 deletions Server/wwwroot/assets/dbstyle/diagrambuilder.css
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,10 @@ border: 1px solid #D5D5D5;
width: calc(100% + 20px);
}

.e-dlg-content {
margin-top: 20px;
}

.db-color-container,
.db-text-container {
width: 100%;
Expand Down
4 changes: 2 additions & 2 deletions WASM/MindMap/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<base href="/" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="_content/BlazorWasmCommon_NET8/interop.js"></script>
<link href="_content/Syncfusion.Blazor/styles/fluent.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link href="assets/db-icons1/style.css" rel="stylesheet" />
<link href="assets/dbstyle/diagrambuilder.css" rel="stylesheet" />
<script src="_content/BlazorWasmCommon_NET8/interop.js"></script>
<link href="_content/Syncfusion.Blazor/styles/fluent.css" rel="stylesheet">
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<HeadOutlet @rendermode="@InteractiveWebAssembly" />
</head>
Expand Down
Loading