-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,4 @@ __pycache__/server.cpython-312.pyc | |
config_keys.json | ||
__pycache__/server.cpython-312.pyc | ||
tss_data.json | ||
/myenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,44 @@ | ||
.ingressegress-container { | ||
display: flex; | ||
} | ||
|
||
.left-column { | ||
flex: 3; | ||
padding: 20px; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
.right-column { | ||
flex: 1; | ||
padding: 20px; | ||
background-color: #e0e0e0; | ||
max-height: 400px; /* Set a maximum height for the right column */ | ||
overflow-y: auto; /* Enable vertical scrolling if content exceeds the maximum height */ | ||
} | ||
|
||
.select-container { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.select-container select { | ||
width: 100%; | ||
padding: 8px; | ||
font-size: 16px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.select-container select:focus { | ||
outline: none; | ||
border-color: #007bff; | ||
} | ||
display: flex; | ||
} | ||
|
||
.left-column { | ||
flex: 3; | ||
padding: 20px; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
.right-column { | ||
flex: 1; | ||
padding: 20px; | ||
background-color: #e0e0e0; | ||
max-height: 400px; /* Set a maximum height for the right column */ | ||
overflow-y: auto; /* Enable vertical scrolling if content exceeds the maximum height */ | ||
position: relative; /* Add this to enable absolute positioning for children */ | ||
} | ||
|
||
.select-container { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.select-container select { | ||
width: 100%; | ||
padding: 8px; | ||
font-size: 16px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.select-container select:focus { | ||
outline: none; | ||
border-color: #007bff; | ||
} | ||
|
||
.navigation-buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
position: absolute; | ||
bottom: 20px; | ||
width: calc(100% - 40px); /* Adjust width to match padding */ | ||
} |