Problem with a exeption
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
817e8a2faa
commit
2361cf2938
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,70 +0,0 @@
|
|||||||
@page "/add"
|
|
||||||
@using ProjetBlazor.Models;
|
|
||||||
|
|
||||||
<h3>Add</h3>
|
|
||||||
|
|
||||||
<EditForm Model="@itemModel" OnValidSubmit="@HandleValidSubmit">
|
|
||||||
<DataAnnotationsValidator />
|
|
||||||
<ValidationSummary />
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label for="display-name">
|
|
||||||
Nom d'affichage :
|
|
||||||
<InputText id="display-name" @bind-Value="itemModel.DisplayName" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="name">
|
|
||||||
Nom :
|
|
||||||
<InputText id="name" @bind-Value="itemModel.Name" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="stack-size">
|
|
||||||
Taille Stack :
|
|
||||||
<InputNumber id="stack-size" @bind-Value="itemModel.StackSize" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="max-durability">
|
|
||||||
Durabilité max :
|
|
||||||
<InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Catégorie d'enchantement :
|
|
||||||
<div>
|
|
||||||
@foreach (var item in enchantCategories)
|
|
||||||
{
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" @onchange="@(e => OnEnchantCategoriesChange(item, e.Value))" />@item
|
|
||||||
</label>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Réparable avec :
|
|
||||||
<div>
|
|
||||||
@foreach (var item in repairWith)
|
|
||||||
{
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" @onchange="@(e => OnRepairWithChange(item, e.Value))" />@item
|
|
||||||
</label>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
Image de l'item :
|
|
||||||
<InputFile OnChange="@LoadImage" accept=".png" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
Accepter les conditions :
|
|
||||||
<InputCheckbox @bind-Value="itemModel.AcceptCondition" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<button type="submit">Valider</button>
|
|
||||||
</EditForm>
|
|
@ -1,75 +0,0 @@
|
|||||||
@page "/edit/{Id:int}"
|
|
||||||
|
|
||||||
<h3>Edit</h3>
|
|
||||||
|
|
||||||
<EditForm Model="@itemModel" OnValidSubmit="@HandleValidSubmit">
|
|
||||||
<DataAnnotationsValidator />
|
|
||||||
<ValidationSummary />
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label for="display-name">
|
|
||||||
Nom d'affichage :
|
|
||||||
<InputText id="display-name" @bind-Value="itemModel.DisplayName" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="name">
|
|
||||||
Nom :
|
|
||||||
<InputText id="name" @bind-Value="itemModel.Name" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="stack-size">
|
|
||||||
Taille Stack :
|
|
||||||
<InputNumber id="stack-size" @bind-Value="itemModel.StackSize" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="max-durability">
|
|
||||||
Durabilité max :
|
|
||||||
<InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Catégorie d'enchantement :
|
|
||||||
<div>
|
|
||||||
@foreach (var item in enchantCategories)
|
|
||||||
{
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" @onchange="@(e => OnEnchantCategoriesChange(item, e.Value))" checked="@(itemModel.EnchantCategories.Contains(item) ? "checked" : null)" />@item
|
|
||||||
</label>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Réparable avec :
|
|
||||||
<div>
|
|
||||||
@foreach (var item in repairWith)
|
|
||||||
{
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" @onchange="@(e => OnRepairWithChange(item, e.Value))" checked="@(itemModel.RepairWith.Contains(item) ? "checked" : null)" />@item
|
|
||||||
</label>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
Current Item image:
|
|
||||||
<img src="data:image/png;base64, @(itemModel.ImageBase64)" class="img-thumbnail" title="@itemModel.DisplayName" alt="@itemModel.DisplayName" style="min-width: 50px; max-width: 150px" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
Image de l'item :
|
|
||||||
<InputFile OnChange="@LoadImage" accept=".png" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
Accepter les conditions :
|
|
||||||
<InputCheckbox @bind-Value="itemModel.AcceptCondition" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<button type="submit">Valider</button>
|
|
||||||
</EditForm>
|
|
@ -1,12 +1,12 @@
|
|||||||
@using System.Globalization
|
@using System.Globalization
|
||||||
@using Blazorise
|
@using Blazorise
|
||||||
@using ProjetBlazor.Components
|
@using ProjetBlazor.Components
|
||||||
|
|
||||||
@page "/"
|
@page "/"
|
||||||
|
@page "/Inventory"
|
||||||
|
|
||||||
<PageTitle>Inventory</PageTitle>
|
<PageTitle>Inventory</PageTitle>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<Crafting Items="Items" Recipes="Recipes" />
|
<ItemsList Inventory="Inventory" Items="Items"/>
|
||||||
</div>
|
</div>
|
@ -1,53 +0,0 @@
|
|||||||
@page "/list"
|
|
||||||
@using Models
|
|
||||||
|
|
||||||
<h3>@Localizer["Inventaire"]</h3>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<NavLink style="background-color : #3B8526; color : white; border-color :#3B8526 " class="btn btn-primary" href="Add" Match="NavLinkMatch.All">
|
|
||||||
<i class="fa fa-plus"></i> Ajouter
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<DataGrid TItem="Item"
|
|
||||||
Data="@items"
|
|
||||||
ReadData="@OnReadData"
|
|
||||||
TotalItems="@totalItem"
|
|
||||||
PageSize="10"
|
|
||||||
ShowPager
|
|
||||||
Responsive>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="#" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
|
|
||||||
<DisplayTemplate>
|
|
||||||
@if (!string.IsNullOrWhiteSpace(context.ImageBase64))
|
|
||||||
{
|
|
||||||
<img src="data:image/png;base64, @(context.ImageBase64)" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style ="min-width: 50px; max-width: 150px" />
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<img src="images/default.png" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="max-width: 150px" />
|
|
||||||
}
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Nom" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Taille Stack" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.MaxDurability)" Caption="Durabilité Max" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.EnchantCategories)" Caption="Catégories d'enchantement">
|
|
||||||
<DisplayTemplate>
|
|
||||||
@(string.Join(", ", ((Item)context).EnchantCategories))
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.RepairWith)" Caption="Réparable avec">
|
|
||||||
<DisplayTemplate>
|
|
||||||
@(string.Join(", ", ((Item)context).RepairWith))
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.CreatedDate)" Caption="Date de création" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" />
|
|
||||||
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Action">
|
|
||||||
<DisplayTemplate>
|
|
||||||
<a style="background-color : #3B8526; color : white; border-color :#3B8526; margin-bottom : 5px" href="Edit/@(context.Id)" class="btn btn-primary"><i class="fa fa-edit"></i><t style="background-color : #3B8526; color : white"> Editer</t></a>
|
|
||||||
<button style="background-color : #3B8526; color : white; border-color :#3B8526 " type="button" class="btn btn-primary" @onclick="() => OnDelete(context.Id)"><i class="fa fa-trash"></i> Supprimer</button>
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
</DataGrid>
|
|
@ -1,101 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 1.3
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">1.3</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1">this is my long string</data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
[base64 mime encoded serialized .NET Framework object]
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
[base64 mime encoded string representing a byte array form of the .NET Framework object]
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>1.3</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
</root>
|
|
@ -1,45 +0,0 @@
|
|||||||
@using System.Globalization
|
|
||||||
@inject NavigationManager NavigationManager
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
|
|
||||||
<t>Select your language:</t>
|
|
||||||
|
|
||||||
<select @bind="Culture">
|
|
||||||
@foreach (var culture in supportedCultures)
|
|
||||||
{
|
|
||||||
<option value="@culture">@culture.DisplayName</option>
|
|
||||||
}
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
@code
|
|
||||||
{
|
|
||||||
private CultureInfo[] supportedCultures = new[]
|
|
||||||
{
|
|
||||||
new CultureInfo("en-US"),
|
|
||||||
new CultureInfo("fr-FR")
|
|
||||||
};
|
|
||||||
|
|
||||||
private CultureInfo Culture
|
|
||||||
{
|
|
||||||
get => CultureInfo.CurrentCulture;
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if (CultureInfo.CurrentUICulture == value)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var culture = value.Name.ToLower(CultureInfo.InvariantCulture);
|
|
||||||
|
|
||||||
var uri = new Uri(this.NavigationManager.Uri).GetComponents(UriComponents.PathAndQuery, UriFormat.Unescaped);
|
|
||||||
var query = $"?culture={Uri.EscapeDataString(culture)}&" + $"redirectUri={Uri.EscapeDataString(uri)}";
|
|
||||||
|
|
||||||
// Redirect the user to the culture controller to set the cookie
|
|
||||||
this.NavigationManager.NavigateTo("/Culture/SetCulture" + query, forceLoad: true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
<div class="top-row ps-3 navbar navbar-dark">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<img src="/images/minecraft.png" height="31px"/>
|
|
||||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
|
|
||||||
<nav class="flex-column">
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
|
||||||
<span class="oi oi-home" aria-hidden="true"></span> Inventaire
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="list">
|
|
||||||
<span class="oi oi-list-rich" aria-hidden="true"></span> Liste des Items
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@code {
|
|
||||||
private bool collapseNavMenu = true;
|
|
||||||
|
|
||||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
|
||||||
|
|
||||||
private void ToggleNavMenu()
|
|
||||||
{
|
|
||||||
collapseNavMenu = !collapseNavMenu;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,62 +0,0 @@
|
|||||||
.navbar-toggler {
|
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-row {
|
|
||||||
height: 3.5rem;
|
|
||||||
background-color: #3B8526;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-brand {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.oi {
|
|
||||||
width: 2rem;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
vertical-align: text-top;
|
|
||||||
top: -2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
padding-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item:first-of-type {
|
|
||||||
padding-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item:last-of-type {
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item ::deep a {
|
|
||||||
color: #d7d7d7;
|
|
||||||
border-radius: 4px;
|
|
||||||
height: 3rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
line-height: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item ::deep a.active {
|
|
||||||
background-color: #171615;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item ::deep a:hover {
|
|
||||||
background-color:#171615;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 641px) {
|
|
||||||
.navbar-toggler {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.collapse {
|
|
||||||
/* Never collapse the sidebar for wide screens */
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
<div class="alert alert-secondary mt-4">
|
|
||||||
<span class="oi oi-pencil me-2" aria-hidden="true"></span>
|
|
||||||
<strong>@Title</strong>
|
|
||||||
|
|
||||||
<span class="text-nowrap">
|
|
||||||
Please take our
|
|
||||||
<a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2149017">brief survey</a>
|
|
||||||
</span>
|
|
||||||
and tell us what you think.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@code {
|
|
||||||
// Demonstrates how a parent component can supply parameters
|
|
||||||
[Parameter]
|
|
||||||
public string? Title { get; set; }
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
23d3138046335a8c8f03ebb1ed1a665d5ca0e63d
|
f933fda716cfd53fcaf7cf10a863274c5b653351
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
.css-grid[b-c5pe2f0rgk] {
|
|
||||||
display: grid;
|
|
||||||
}
|
|
||||||
|
|
||||||
.css-recipe[b-c5pe2f0rgk] {
|
|
||||||
grid-template-columns: repeat(9,minmax(0,1fr));
|
|
||||||
gap: 10px;
|
|
||||||
display: grid;
|
|
||||||
width: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.actions[b-c5pe2f0rgk] {
|
|
||||||
border: 1px solid black;
|
|
||||||
height: 250px;
|
|
||||||
overflow: scroll;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
.item[b-au53a972a0] {
|
|
||||||
width: 64px;
|
|
||||||
height: 64px;
|
|
||||||
border: 1px solid;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
t[b-c86f565ybb] {
|
|
||||||
color : whitesmoke;
|
|
||||||
}
|
|
@ -1,62 +0,0 @@
|
|||||||
.navbar-toggler[b-kggv4tdhwh] {
|
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-row[b-kggv4tdhwh] {
|
|
||||||
height: 3.5rem;
|
|
||||||
background-color: #3B8526;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-brand[b-kggv4tdhwh] {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.oi[b-kggv4tdhwh] {
|
|
||||||
width: 2rem;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
vertical-align: text-top;
|
|
||||||
top: -2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item[b-kggv4tdhwh] {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
padding-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item:first-of-type[b-kggv4tdhwh] {
|
|
||||||
padding-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item:last-of-type[b-kggv4tdhwh] {
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item[b-kggv4tdhwh] a {
|
|
||||||
color: #d7d7d7;
|
|
||||||
border-radius: 4px;
|
|
||||||
height: 3rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
line-height: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item[b-kggv4tdhwh] a.active {
|
|
||||||
background-color: #171615;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-item[b-kggv4tdhwh] a:hover {
|
|
||||||
background-color:#171615;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 641px) {
|
|
||||||
.navbar-toggler[b-kggv4tdhwh] {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.collapse[b-kggv4tdhwh] {
|
|
||||||
/* Never collapse the sidebar for wide screens */
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue