Updaated all color values to include Alpha value so pickers offer it as an option to user
This commit is contained in:
@@ -31,7 +31,7 @@ namespace AyaNova.Models
|
||||
|
||||
public QuoteStatus()
|
||||
{
|
||||
Color = "#ffffff";//white / no color is the default
|
||||
Color = "#ffffffff";//white / no color is the default
|
||||
}
|
||||
|
||||
}//eoc
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace AyaNova.Models
|
||||
public Reminder()
|
||||
{
|
||||
Tags = new List<string>();
|
||||
Color = "#ffffff";//white / no color is the default
|
||||
Color = "#ffffffff";//white / no color is the default
|
||||
}
|
||||
|
||||
[NotMapped, JsonIgnore]
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace AyaNova.Models
|
||||
{
|
||||
CurrencyName = "USD";
|
||||
Hour12 = true;
|
||||
UiColor = "#ffffff";//black is the default
|
||||
UiColor = "#ffffffff";//black is the default
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace AyaNova.Models
|
||||
public string Name { get; set; }
|
||||
public bool Active { get; set; }
|
||||
[MaxLength(12)]
|
||||
public string Color { get; set; } = "#ffffff";//white / no color is the default
|
||||
public string Color { get; set; } = "#ffffffff";//white / no color is the default
|
||||
|
||||
}//eoc
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace AyaNova.Models
|
||||
|
||||
public WorkOrderItemStatus()
|
||||
{
|
||||
Color = "#ffffff";//white / no color is the default
|
||||
Color = "#ffffffff";//white / no color is the default
|
||||
}
|
||||
|
||||
}//eoc
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace AyaNova.Models
|
||||
|
||||
public WorkOrderStatus()
|
||||
{
|
||||
Color = "#ffffff";//white / no color is the default
|
||||
Color = "#ffffffff";//white / no color is the default
|
||||
}
|
||||
|
||||
}//eoc
|
||||
|
||||
Reference in New Issue
Block a user