styles(list): add initial styling to the ui

This commit is contained in:
ryan 2025-02-28 15:40:24 +03:00
parent d77a806fe7
commit 57c40aa1c4
3 changed files with 340 additions and 217 deletions

View file

@ -1,158 +1,271 @@
:root {
--primary: #2F3C7E; /* Deep navy */
--secondary: #f8f9fa; /* Light gray */
--accent: #dc3545; /* Alert red */
--text: #212529; /* Dark gray */
--border: #dee2e6; /* Light gray border */
--hover-bg: #e9ecef; /* Medium gray */
--success: #28a745; /* Green for positive actions */
}
/* Base Styles */
body {
font-family: Arial, sans-serif;
font-family: 'Segoe UI', system-ui, sans-serif;
color: var(--text);
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
padding: 2rem;
background: var(--secondary);
}
/* Header Styling */
h1 {
color: #1e88e5;
color: var(--primary);
font-size: 2rem;
font-weight: 600;
text-align: center;
margin-bottom: 20px;
}
form {
margin: 20px auto;
max-width: 600px;
padding: 20px;
background: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
form input, form textarea, form button {
display: block;
width: 100%;
margin-bottom: 15px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}
form button {
background-color: #1e88e5;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
form button:hover {
background-color: #1565c0;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #fff;
margin: 10px 0;
padding: 15px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
h2, h3 {
color: var(--primary);
font-weight: 600;
margin-bottom: 1.5rem;
}
/* Table Enhancements */
table {
width: 100%;
border-collapse: collapse;
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
padding: 1.25rem 1.5rem;padding: 1rem;
text-align: left;
border-bottom: 1px solid var(--border);
position: relative;
}
th:not(:last-child),
td:not(:last-child) {
border-right: 1px solid var(--border);
}
th {
background-color: #f2f2f2;
background: var(--primary);
color: white;
font-weight: 500;
}
/* Style for the grid container */
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust the minimum width for cells */
gap: 1px; /* Gap between cells */
background-color: #ccc;/* Grid line color */
border: 1px solid #aaa; /* Outer border */
tr:hover {
background: var(--hover-bg);
}
tr:last-child td {
border-bottom: none;
}
/* Style for individual cells */
/* Editable Cells */
.editable-cell {
display: flex; /* Use flexbox for better layout control */
flex-direction: column; /* Stack children vertically */
width: 100%; /* Full width of the allocated space */
height: 100%; /* Full height of the allocated space */
position: relative; /* Relative positioning for absolute children */
box-sizing: border-box; /* Ensure padding and border are included in width/height */
position: relative;
}
/* Style for the input field inside the editable cell */
.editable-cell-input {
width: 100%; /* Ensure input takes up full width */
height: 100%; /* Ensure input takes up full height */
border: none; /* Remove input box borders */
padding: 8px; /* Add padding for spacing */
box-sizing: border-box; /* Ensure padding doesn't cause overflow */
font-size: 14px; /* Adjust font size */
text-align: left; /* Align text to the left */
outline: none; /* Remove outline for better UI */
background-color: transparent; /* Make background transparent */
}
/* Style for the focused input field */
.editable-cell-input:focus {
background-color: #e0f7fa; /* Light blue background when focused */
border: 1px solid #00796b; /* Green border when focused */
}
/* Style for the suggestions list */
.editable-cell-suggestions {
position: absolute; /* Position suggestions absolutely within the cell */
top: 100%; /* Place suggestions below the input field */
left: 0; /* Align suggestions with the left edge of the cell */
width: 100%; /* Full width of the cell */
max-height: 200px; /* Limit height of suggestions list */
overflow-y: auto; /* Add scrollbar if suggestions exceed max height */
background-color: white; /* White background for suggestions */
border: 1px solid #ddd; /* Light border for suggestions */
z-index: 10; /* Ensure suggestions appear above other content */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
}
/* Style for individual suggestion items */
.editable-cell-suggestions li {
padding: 8px; /* Add padding for spacing */
cursor: pointer; /* Change cursor to pointer on hover */
border-bottom: 1px solid #eee; /* Add separator between items */
}
.editable-cell-suggestions li:hover {
background-color: #f5f5f5; /* Light gray background on hover */
}
.search-icon {
margin-left: 10px;
padding: 5px;
border: none;
background-color: transparent;
cursor: pointer;
}
.search-icon i {
font-size: 18px;
color: #333;
}
.search-icon i.fas.fa-search {
margin-left: 5px;
}
.editable-cell-textarea {
width: 100%;
height: 100px;
resize: vertical;
overflow: auto;
border: none;
padding: 0.5rem;
background: transparent;
font: inherit;
color: inherit;
transition: background 0.2s;
}
.editable-cell-input:focus {
outline: none;
background: rgba(47, 60, 126, 0.05);
border-radius: 4px;
}
/* Suggestions List */
.editable-cell-suggestions {
position: absolute;
top: 100%;
left: 0;
margin-top: 0.5rem;
width: 100%;
z-index: 1000;
background: white;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
border-radius: 4px;
max-height: 200px;
overflow-y: auto;
padding: 0.5rem 0;
}
.editable-cell-suggestions-li {
padding: 0.75rem 1rem;
cursor: pointer;
font-size: 0.9em;
color: var(--text);
transition: background 0.1s ease;
}
.editable-cell-suggestions-li:hover {
background: var(--hover-bg);
}
.editable-cell-suggestions .close-button {
position: absolute;
top: 0.75rem;
right: 0.75rem;
padding: 0.3rem;
background: none;
border: none;
color: var(--text);
cursor: pointer;
opacity: 0.6;
transition: opacity 0.2s;
}
.editable-cell-suggestions .close-button:hover {
opacity: 1;
color: var(--accent);
}
/* Buttons & Icons */
button {
background: var(--primary);
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
transition: opacity 0.2s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
button:hover {
opacity: 0.9;
}
button.delete {
background: var(--accent);
color: white;
padding: 0.5rem 0.75rem;
border-radius: 4px;
margin-left: 1rem;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
button.delete:hover {
background: #c82333;
transform: translateY(-1px);
}
button.delete::before {
content: "×";
font-size: 1.25rem;
line-height: 1;
}
button.search-icon {
background: transparent;
color: var(--primary);
margin-left: 0.5rem;
padding: 0.5rem 0.75rem;
border: 1px solid var(--border);
border-radius: 4px;
transition: all 0.2s ease;
white-space: nowrap;
}
button.search-icon:hover {
background: var(--hover-bg);
border-color: var(--primary);
}
.fa-search {
font-size: 0.9em;
}
/* Input Enhancements */
input[type="text"], textarea {
border: 1px solid var(--border);
border-radius: 4px;
padding: 0.75rem;
width: 100%;
transition: border-color 0.2s;
}
input[type="text"]:focus, textarea:focus {
border-color: var(--primary);
outline: none;
}
/* Layout Improvements */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
/* DataList Styling */
datalist {
border: 1px solid var(--border);
border-radius: 6px;
margin-top: 0.5rem;
}
/* Add Property Section Styling */
.add-property-section {
margin: 2rem 0;
padding: 1.5rem;
background: white;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
#new-property {
border: 2px solid var(--border);
padding: 0.75rem 1rem;
border-radius: 6px;
width: 300px;
margin-right: 1rem;
transition: border-color 0.2s ease;
}
#new-property:focus {
border-color: var(--primary);
outline: none;
}
.add-property-button {
background: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
transition: all 0.2s ease;
}
.add-property-button:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(47, 60, 126, 0.1);
}
/* Container for cell content */
.cell-content {
overflow: hidden;
text-overflow:clip;
white-space: nowrap;
min-height: 2rem;
display: flex;
align-items: center;
}
/* Container for name cell content */
.name-cell-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0;
}

View file

@ -48,7 +48,7 @@ pub fn App() -> impl IntoView {
view! {
<Stylesheet href="/assets/style.css" />
<Stylesheet href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<div>
<div class="container">
<h1>{ "CompareWare" }</h1>
<ItemsList
url=current_url()

View file

@ -700,7 +700,7 @@ pub fn ItemsList(
view! {
<div>
<h1>{ "Items List" }</h1>
<table>
<table class="data-table">
<thead>
<tr>
<th>{ "Property" }</th>
@ -709,7 +709,7 @@ pub fn ItemsList(
view! {
<th>
{item.name.clone()}
<button on:click=move |_| remove_item(index)>{ "Delete" }</button>
<button class="delete" on:click=move |_| remove_item(index)>{ "Delete" }</button>
</th>
}
}).collect::<Vec<_>>()}
@ -728,7 +728,8 @@ pub fn ItemsList(
<td>
{match property {
"Name" => view! {
<div class="editable-cell">
<div class="cell-content">
<div class="name-cell-container">
<EditableCell
value=item.name.clone()
on_input=move |value| {
@ -764,6 +765,7 @@ pub fn ItemsList(
}>
<i class="fas fa-search"></i> Search Wiki
</button>
{move || {
if *show_suggestions.get().get(&format!("name-{}", index)).unwrap_or(&false) {
log!("Rendering suggestions list");
@ -814,6 +816,13 @@ pub fn ItemsList(
log!("Updated show_suggestions: {:?}", suggestions);
});
}>
<button class="close-button" on:click=move |_| {
set_show_suggestions.update(|suggestions| {
suggestions.insert(format!("name-{}", index), false);
});
}>
<i class="fas fa-times"></i>
</button>
{ format!("{} - {}", label_for_display, description_for_display) }
</li>
}
@ -829,6 +838,7 @@ pub fn ItemsList(
}
}}
</div>
</div>
}.into_view(),
"Description" => view! {
<EditableCell
@ -875,7 +885,7 @@ pub fn ItemsList(
<tr>
<td>
{ property_label }
<button class="delete-property" on:click=move |_| {
<button class="delete" on:click=move |_| {
log!("Deleting property: {}", property_clone_for_button);
remove_property_clone(property_clone_for_button.clone());
set_custom_properties.update(|props| {
@ -921,7 +931,7 @@ pub fn ItemsList(
}}
</tbody>
</table>
<div style="margin-bottom: 20px;">
<div class="add-property-section">
<input type="text" id="new-property" placeholder="Add New Property" list="properties" on:keydown=move |event| {
if event.key() == "Enter"{
let input_element = event.target().unwrap().dyn_into::<web_sys::HtmlInputElement>().unwrap();