more progress
This commit is contained in:
65
index.html
65
index.html
@ -375,6 +375,57 @@
|
||||
background-color: #999;
|
||||
/* Even lighter color when active */
|
||||
}
|
||||
|
||||
|
||||
.list-group-item {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
|
||||
color: var(--bs-list-group-color);
|
||||
text-decoration: none;
|
||||
background-color: #2c2c2c
|
||||
|
||||
;
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
background-color: #2c2c2c;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
--bs-text-opacity: 1;
|
||||
color: rgb(254 254 254) !important;
|
||||
}
|
||||
|
||||
.list-group {
|
||||
--bs-list-group-color: var(--bs-body-color);
|
||||
--bs-list-group-bg: var(--bs-body-bg);
|
||||
--bs-list-group-border-color: transparent;
|
||||
--bs-list-group-border-width: var(--bs-border-width);
|
||||
--bs-list-group-border-radius: var(--bs-border-radius);
|
||||
--bs-list-group-item-padding-x: 1rem;
|
||||
--bs-list-group-item-padding-y: 0.5rem;
|
||||
--bs-list-group-action-color: var(--bs-secondary-color);
|
||||
--bs-list-group-action-hover-color: var(--bs-emphasis-color);
|
||||
--bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
|
||||
--bs-list-group-action-active-color: var(--bs-body-color);
|
||||
--bs-list-group-action-active-bg: var(--bs-secondary-bg);
|
||||
--bs-list-group-disabled-color: var(--bs-secondary-color);
|
||||
--bs-list-group-disabled-bg: var(--bs-body-bg);
|
||||
--bs-list-group-active-color: #fff;
|
||||
--bs-list-group-active-bg: #0d6efd;
|
||||
--bs-list-group-active-border-color: #0d6efd;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-left: 0;
|
||||
margin-bottom: 0;
|
||||
border-radius: var(--bs-list-group-border-radius);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@ -390,13 +441,15 @@
|
||||
<div class="content">
|
||||
<h4 class="text-center mt-3">Connections</h4>
|
||||
<ul id="connection-list" class="list-group mb-3"></ul>
|
||||
<form id="add-connection-form" class="px-3">
|
||||
<input type="text" id="new-connection-topic" class="form-control mb-2" placeholder="Enter server topic"
|
||||
required>
|
||||
<button type="submit" class="btn btn-primary w-100">Add Connection</button>
|
||||
<form id="add-connection-form" class="px-3 d-flex align-items-center">
|
||||
<input type="text" id="new-connection-topic" class="form-control me-2" placeholder="Enter server topic" required>
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<i class="fas fa-plug"></i> Add
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="content">
|
||||
<div id="welcome-page">
|
||||
@ -589,6 +642,10 @@
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<form id="deploy-form">
|
||||
<div class="form-group mb-3">
|
||||
<label for="deploy-container-name">Container Name</label>
|
||||
<input type="text" id="deploy-container-name" class="form-control" placeholder="Enter container name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="deploy-image" class="form-label">Image</label>
|
||||
<input type="text" id="deploy-image" class="form-control" required />
|
||||
|
Reference in New Issue
Block a user