Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Commit

Permalink
Add explorer mntool to explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
gonefishing4422 committed Feb 5, 2024
1 parent 6839e2e commit d0de2e2
Show file tree
Hide file tree
Showing 3 changed files with 950 additions and 342 deletions.
101 changes: 101 additions & 0 deletions css/sb-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,91 @@ table.tablesorter thead tr th:hover {
text-align: center;
}

/* MNTooltable begin */
.custom-table {
display: table;
width: 100%;
}
.custom-row {
display: table-row;

}
.custom-cell {
display: table-cell;
padding: 0px;
border-bottom: 1px solid #222222;
color: darkgrey;
position: relative; /* Added for positioning */
}

.custom-cell-address {
display: table-cell;
padding: 5px;
border-bottom: 1px solid #222222;
color: white;
position: relative; /* Added for positioning */
}
.header {
font-weight: bold;
background-color: black;

}
.online-address {
background-color: #149414;
}
.offline-address {
background-color: #bf1029;
}
#addresses {
width: 100%;
height: 50px;
margin-left: 1px;
background-color: black;
color: darkgrey;
}
.hidden {
display: none;
}
.description {
width: 100%;
height: 25px;
color: darkgrey;
padding: 0px;
border: 1px solid #222222;
border-radius: 3px;
background-color: black;
box-sizing: border-box; /* Added for proper width calculation */
}
.save-button {
display: none;
margin-top: 0px;
}
.bookmark-link {
display: block;
margin-top: 10px;
}
.page-action-button {
border: 1px solid #ccc;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
background-color: #fbe04d; /* Background color */
color: #333; /* Text color */

border-radius: 5px;
opacity: 0.7;

}

.page-action-button:hover {
background-color: #fbe04d; /* Hover background color */
opacity: 1;
}
#csvFile {
display: none; /* Hide the default file input button */
}
/* MNTooltable end*/

/* Node styled table */

.styled-table {
Expand Down Expand Up @@ -1041,6 +1126,22 @@ button[type="submit"]:hover {
opacity: 1;
}

button[type="submit2"] {
text-indent: 9999px;
overflow: hidden;
width: 50px;
padding: 0;
margin: 0;
border: 1px solid #fbe04d;
border-radius: inherit;
background: #fbe04d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
cursor: pointer;
opacity: 0.7;
}

button[type="submit2"]:hover {
opacity: 1;
}

/* 3 div row-page*/
.flex-container {
Expand Down
Loading

0 comments on commit d0de2e2

Please sign in to comment.