mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-14 09:57:58 -05:00
740 lines
14 KiB
CSS
740 lines
14 KiB
CSS
:root {
|
|
--toolbox-blue: #4285f4;
|
|
--text-primary-gray: #444444;
|
|
--text-secondary-gray: #6e6e6e;
|
|
--button-primary: var(--toolbox-blue);
|
|
--button-secondary: #616161;
|
|
--section-border: #e0e0e0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
height: 100vh;
|
|
margin: 0;
|
|
font-family: 'Trebuchet MS';
|
|
background-color: #f8f9fa;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
#navbar-container {
|
|
flex: 0 0 250px;
|
|
height: 100%;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
#main-content-container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.left-nav {
|
|
background-color: #fff;
|
|
box-shadow: 4px 0px 12px rgba(0, 0, 0, 0.15);
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 15px;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 3;
|
|
|
|
ul {
|
|
font-family: 'Verdana';
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
|
|
li {
|
|
margin-bottom: 5px;
|
|
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px;
|
|
text-decoration: none;
|
|
color: #333;
|
|
border-radius: 0;
|
|
|
|
&:hover {
|
|
background-color: #e9e9e9;
|
|
border-radius: 35px;
|
|
}
|
|
|
|
&.active {
|
|
background-color: #d0d0d0;
|
|
font-weight: bold;
|
|
border-radius: 35px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.second-nav {
|
|
flex: 0 0 250px;
|
|
background-color: #fff;
|
|
box-shadow: 4px 0px 12px rgba(0, 0, 0, 0.15);
|
|
z-index: 2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 15px;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-logo {
|
|
width: 90%;
|
|
margin-bottom: 40px;
|
|
flex-shrink: 0;
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.main-content-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.top-bar {
|
|
background-color: #fff;
|
|
padding: 30px 30px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.content {
|
|
padding: 20px;
|
|
flex-grow: 1;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px 20px;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 30px;
|
|
font: inherit;
|
|
font-size: 1em;
|
|
font-weight: bolder;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.btn--run {
|
|
background-color: var(--button-primary);
|
|
}
|
|
|
|
.btn--editHeaders {
|
|
background-color: var(--button-secondary)
|
|
}
|
|
|
|
.btn--saveHeaders {
|
|
background-color: var(--button-primary)
|
|
}
|
|
|
|
.btn--closeHeaders {
|
|
background-color: var(--button-secondary)
|
|
}
|
|
|
|
.btn--setup-gis {
|
|
background-color: white;
|
|
color: var(--text-primary-gray);
|
|
border: 2px solid var(--text-primary-gray);
|
|
}
|
|
|
|
.btn--externalDocs {
|
|
background-color: var(--button-secondary);
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.tool-button {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px;
|
|
text-decoration: none;
|
|
color: #333;
|
|
background-color: transparent;
|
|
border: none;
|
|
border-radius: 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
|
|
transition: background-color 0.1s ease-in-out, border-radius 0.1s ease-in-out;
|
|
|
|
&:hover {
|
|
background-color: #e9e9e9;
|
|
border-radius: 35px;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px rgba(208, 208, 208, 0.5);
|
|
}
|
|
|
|
&.active {
|
|
background-color: #d0d0d0;
|
|
font-weight: bold;
|
|
border-radius: 35px;
|
|
|
|
&:hover {
|
|
background-color: #d0d0d0;
|
|
}
|
|
}
|
|
}
|
|
|
|
#secondary-panel-content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
min-height: 0;
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.tool-details-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr;
|
|
gap: 20px;
|
|
margin: 0 0 20px 0;
|
|
align-items: start;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.tool-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.tool-execution-area {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.tool-params {
|
|
background-color: #ffffff;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ddd;
|
|
|
|
h5 {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.tool-box {
|
|
background-color: #ffffff;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
border: 1px solid #eee;
|
|
|
|
h5 {
|
|
color: var(--toolbox-blue);
|
|
margin-top: 0;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.params-header {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 8px;
|
|
padding-right: 6px;
|
|
font-weight: bold;
|
|
font-size: 0.9em;
|
|
color: var(--text-secondary-gray);
|
|
}
|
|
|
|
.params-disclaimer {
|
|
font-style: italic;
|
|
color: var(--text-secondary-gray);
|
|
font-size: 0.8em;
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.param-item {
|
|
margin-bottom: 12px;
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-family: inherit;
|
|
}
|
|
|
|
&.disabled-param {
|
|
> label {
|
|
color: #888;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.param-input-element {
|
|
background-color: #f5f5f5;
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="number"],
|
|
select,
|
|
textarea {
|
|
width: calc(100% - 12px);
|
|
padding: 6px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
font-family: inherit;
|
|
}
|
|
|
|
input[type="checkbox"].param-input-element {
|
|
width: auto;
|
|
padding: 0;
|
|
border: initial;
|
|
border-radius: initial;
|
|
vertical-align: middle;
|
|
margin-right: 4px;
|
|
accent-color: var(--toolbox-blue);
|
|
flex-grow: 0;
|
|
}
|
|
}
|
|
|
|
.input-checkbox-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.param-input-element-container {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.param-input-element {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.include-param-container {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
|
|
input[type="checkbox"] {
|
|
width: auto;
|
|
padding: 0;
|
|
border: initial;
|
|
border-radius: initial;
|
|
vertical-align: middle;
|
|
margin-right: 0;
|
|
accent-color: var(--toolbox-blue);
|
|
}
|
|
}
|
|
|
|
.include-param-container input[type="checkbox"] {
|
|
width: auto;
|
|
padding: 0;
|
|
border: initial;
|
|
border-radius: initial;
|
|
vertical-align: middle;
|
|
margin: 0;
|
|
accent-color: var(--toolbox-blue);
|
|
}
|
|
|
|
.checkbox-bool-label {
|
|
margin-left: 5px;
|
|
font-style: italic;
|
|
color: var(--text-primary-gray);
|
|
}
|
|
|
|
.checkbox-bool-label.disabled {
|
|
color: #aaa;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.param-label-extras {
|
|
font-style: italic;
|
|
font-weight: lighter;
|
|
color: var(--text-secondary-gray);
|
|
}
|
|
|
|
.auth-param-input {
|
|
background-color: var(--section-border);
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.run-button-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 20px;
|
|
}
|
|
|
|
.header-modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.header-modal-content {
|
|
background-color: #fefefe;
|
|
margin: 10% auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
max-width: 50%;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
align-items: center;
|
|
|
|
h5 {
|
|
margin-top: 0;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.headers-textarea {
|
|
width: calc(100% - 16px);
|
|
padding: 8px;
|
|
font-family: monospace;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
min-height: 150px;
|
|
}
|
|
|
|
.header-modal-actions {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.auth-token-details {
|
|
width: 100%;
|
|
max-width: calc(100% - 16px);
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
text-align: left;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.auth-token-content {
|
|
padding: 10px;
|
|
border: 1px solid #eee;
|
|
margin-top: 5px;
|
|
background-color: #f9f9f9;
|
|
text-align: left;
|
|
max-width: 100%;
|
|
overflow-wrap: break-word;
|
|
|
|
.auth-tab-group {
|
|
display: flex;
|
|
border-bottom: 1px solid #ccc;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.auth-tab-picker {
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
border-bottom: 1px solid transparent;
|
|
margin-bottom: -1px;
|
|
background-color: #f0f0f0;
|
|
|
|
&.active {
|
|
background-color: #fff;
|
|
border-color: #ccc;
|
|
border-bottom-color: #fff;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.auth-tab-content {
|
|
display: none;
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
max-width: 100%;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
overflow-x: auto;
|
|
background-color: #f5f5f5;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
max-width: 100%;
|
|
|
|
code {
|
|
display: block;
|
|
word-wrap: break-word;
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.auth-method-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.auth-method-label {
|
|
font-weight: 500;
|
|
color: var(--text-primary-gray);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.auth-helper-section {
|
|
border: 1px solid var(--section-border);
|
|
background-color: transparent;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
margin-top: 20px;
|
|
width: 80%;
|
|
}
|
|
|
|
.auth-method-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.auth-method-details {
|
|
padding: 16px;
|
|
border: 1px solid var(--section-border);
|
|
border-radius: 4px;
|
|
margin-bottom: 16px;
|
|
background-color: #fff;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.auth-controls {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.auth-input-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
|
|
& label {
|
|
font-size: 14px;
|
|
color: var(--text-primary-gray);
|
|
margin-bottom: 4px;
|
|
}
|
|
}
|
|
|
|
.auth-input {
|
|
padding: 8px 8px;
|
|
border: 1px solid #bdc1c6;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: var(--toolbox-blue);
|
|
box-shadow: 0 0 0 1px #1a73e8;
|
|
}
|
|
}
|
|
|
|
.auth-method-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.auth-instructions {
|
|
font-size: 0.8em;
|
|
margin-top: 5px;
|
|
color: var(--text-secondary-gray);
|
|
}
|
|
|
|
.tool-response {
|
|
margin: 20px 0 0 0;
|
|
|
|
textarea {
|
|
width: 100%;
|
|
min-height: 150px;
|
|
padding: 12px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
}
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
|
|
#toolset-search-input {
|
|
flex-grow: 1;
|
|
padding: 10px 12px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 20px 0 0 20px;
|
|
border-right: none;
|
|
font-family: inherit;
|
|
font-size: 0.9em;
|
|
color: var(--text-primary-gray);
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: var(--toolbox-blue);
|
|
box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
|
|
}
|
|
|
|
&::placeholder {
|
|
color: var(--text-secondary-gray);
|
|
}
|
|
}
|
|
|
|
#toolset-search-button {
|
|
padding: 10px 15px;
|
|
border: 1px solid var(--button-primary);
|
|
background-color: var(--button-primary);
|
|
color: white;
|
|
border-radius: 0 20px 20px 0;
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
font-size: 0.9em;
|
|
font-weight: bold;
|
|
transition: opacity 0.2s ease-in-out;
|
|
flex-shrink: 0;
|
|
line-height: 1;
|
|
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
|
|
}
|
|
}
|
|
}
|
|
|
|
.toggle-details-tab {
|
|
background-color: transparent;
|
|
color: var(--toolbox-blue);
|
|
border: none;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.resource-instructions {
|
|
font-family: inherit;
|
|
color: var(--text-primary-gray);
|
|
padding: 24px;
|
|
background-color: #ffffff;
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
|
margin: 16px 0;
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
color: var(--text-secondary-gray);
|
|
}
|
|
}
|
|
|
|
.resource-title {
|
|
color: var(--toolbox-blue);
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.resource-subtitle {
|
|
color: var(--text-primary-gray);
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
margin-top: 24px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.resource-intro,
|
|
.resource-description {
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
color: var(--text-secondary-gray);
|
|
margin-bottom: 16px;
|
|
|
|
code {
|
|
background-color: #e9e9e9;
|
|
color: #c0392b;
|
|
padding: 2px 4px;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
font-size: 90%;
|
|
vertical-align: baseline;
|
|
}
|
|
}
|