-
Notifications
You must be signed in to change notification settings - Fork 162
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
34 changed files
with
526 additions
and
107 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
CONFIG_FILE_DIR=/usr/share/nginx/html/api | ||
CONFIG_FILE_PATH=$CONFIG_FILE_DIR/default_clusters.json | ||
|
||
if [ ! -f $CONFIG_FILE_PATH ] && [ -n "$ELASTICVUE_CLUSTERS" ]; then | ||
echo "> found ELASTICVUE_CLUSTERS..." | ||
mkdir $CONFIG_FILE_DIR | ||
echo "$ELASTICVUE_CLUSTERS" > $CONFIG_FILE_PATH | ||
fi |
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,7 +1,8 @@ | ||
.q-banner { | ||
border-radius: 2px; | ||
font-size: 16px !important; | ||
border-radius: 2px; | ||
font-size: 16px !important; | ||
} | ||
|
||
.q-banner .text-body2 { | ||
font-size: 16px !important; | ||
font-size: 16px !important; | ||
} |
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,7 +1,7 @@ | ||
.q-btn { | ||
font-weight: initial !important; | ||
font-weight: initial !important; | ||
} | ||
|
||
.q-btn-group .q-btn:first-child { | ||
border-right: 2px solid var(--theme-menu-separator-background); | ||
border-right: 2px solid var(--theme-menu-separator-background); | ||
} |
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,9 +1,9 @@ | ||
.q-card { | ||
color: var(--theme-color); | ||
background: var(--theme-background); | ||
color: var(--theme-color); | ||
background: var(--theme-background); | ||
} | ||
|
||
.q-table__card { | ||
color: var(--theme-color); | ||
background: inherit; | ||
color: var(--theme-color); | ||
background: inherit; | ||
} |
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,48 +1,57 @@ | ||
.q-field__control { | ||
color: var(--theme-primary); | ||
color: var(--theme-primary); | ||
} | ||
|
||
.q-field--small .q-field__control, .q-field--small .q-field__marginal { | ||
height: initial; | ||
} | ||
|
||
.q-field--small .q-field__native { | ||
padding: 3px 0; | ||
font-size: 14px; | ||
} | ||
|
||
.q-field__marginal { | ||
color: var(--theme-muted-color); | ||
color: var(--theme-muted-color); | ||
} | ||
|
||
.q-field__native { | ||
color: var(--theme-color); | ||
color: var(--theme-color); | ||
} | ||
|
||
.q-field__label { | ||
color: var(--theme-muted-color); | ||
color: var(--theme-muted-color); | ||
} | ||
|
||
.q-field__control:before { | ||
border-color: var(--theme-muted-color) !important; | ||
border-color: var(--theme-muted-color) !important; | ||
} | ||
|
||
.q-field.q-field--standard:hover .q-field__control:before { | ||
border-color: var(--theme-dark-grey-color); | ||
border-color: var(--theme-dark-grey-color); | ||
} | ||
|
||
.q-field.q-field--standard.q-field--highlighted .q-field__label { | ||
color: var(--theme-primary) !important; | ||
color: var(--theme-primary) !important; | ||
} | ||
|
||
.q-field__bottom { | ||
color: var(--theme-muted-color) !important; | ||
padding: 2px 0 0 0; | ||
color: var(--theme-muted-color) !important; | ||
padding: 2px 0 0 0; | ||
} | ||
|
||
.q-checkbox__inner--falsy .q-checkbox__bg { | ||
border-color: var(--theme-muted-color); | ||
border-color: var(--theme-muted-color); | ||
} | ||
|
||
.q-input { | ||
font-size: 16px !important; | ||
font-size: 16px !important; | ||
} | ||
|
||
.q-field__input { | ||
color: var(--theme-color); | ||
color: var(--theme-color); | ||
} | ||
|
||
.q-radio__inner { | ||
color: var(--theme-muted-color); | ||
color: var(--theme-muted-color); | ||
} |
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,4 +1,4 @@ | ||
.q-item__label--header { | ||
color: var(--theme-color); | ||
font-weight: 500; | ||
color: var(--theme-color); | ||
font-weight: 500; | ||
} |
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,16 +1,16 @@ | ||
.q-menu { | ||
background: var(--theme-menu-background); | ||
border: 1px solid var(--theme-background); | ||
background: var(--theme-menu-background); | ||
border: 1px solid var(--theme-background); | ||
} | ||
|
||
.q-menu .q-separator { | ||
background: var(--theme-menu-separator-background); | ||
background: var(--theme-menu-separator-background); | ||
} | ||
|
||
.q-dialog .q-card { | ||
background: var(--theme-card-background); | ||
background: var(--theme-card-background); | ||
} | ||
|
||
.q-dialog .q-card .q-separator { | ||
background: var(--theme-menu-separator-background); | ||
background: var(--theme-menu-separator-background); | ||
} |
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,3 +1,3 @@ | ||
.q-separator { | ||
background: var(--theme-separator-background); | ||
background: var(--theme-separator-background); | ||
} |
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,11 +1,11 @@ | ||
.q-tab-panels { | ||
background-color: initial; | ||
background-color: initial; | ||
} | ||
|
||
.q-tab, .q-tab__content, .q-tab__label { | ||
transition: none !important; | ||
transition: none !important; | ||
} | ||
|
||
.q-tab__indicator { | ||
transition: none !important; | ||
transition: none !important; | ||
} |
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,61 +1,61 @@ | ||
.q-table thead, .q-table tr, .q-table th, .q-table td, .q-table__bottom { | ||
border-color: var(--theme-table-border-color); | ||
border-color: var(--theme-table-border-color); | ||
} | ||
|
||
.q-table tbody tr:hover { | ||
background-color: var(--theme-table-hover-background); | ||
background-color: var(--theme-table-hover-background); | ||
} | ||
|
||
.theme--dark .q-table__control .q-btn:not(:disabled) { | ||
color: #fff !important; | ||
color: #fff !important; | ||
} | ||
|
||
table.q-table th { | ||
font-size: 13px; | ||
font-weight: 600; | ||
font-size: 13px; | ||
font-weight: 600; | ||
} | ||
|
||
table.q-table td { | ||
font-size: 14px; | ||
font-size: 14px; | ||
} | ||
|
||
.table-mono .q-table tbody td { | ||
font-family: 'Hack', monospace; | ||
font-family: 'Hack', monospace; | ||
} | ||
|
||
.q-table--dense .q-table th { | ||
padding: 2px 8px; | ||
height: 40px !important; | ||
padding: 2px 8px; | ||
height: 40px !important; | ||
} | ||
|
||
.q-table--dense .q-table td { | ||
padding: 2px 8px; | ||
padding: 2px 8px; | ||
} | ||
|
||
.q-table--dense .q-table thead tr, .q-table--dense .q-table tbody tr, .q-table--dense .q-table tbody td { | ||
height: 40px; | ||
height: 40px; | ||
} | ||
|
||
.q-table--dense tbody .q-btn:not(.q-btn--round) { | ||
min-height: 2em; | ||
padding: 2px 10px; | ||
min-height: 2em; | ||
padding: 2px 10px; | ||
} | ||
|
||
.q-table--dense tbody td { | ||
max-width: 500px; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
max-width: 500px; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
|
||
.q-table--dense .q-table__bottom { | ||
min-height: 50px; | ||
min-height: 50px; | ||
} | ||
|
||
.q-table--dense .q-table__bottom .q-btn { | ||
padding: 4px; | ||
padding: 4px; | ||
} | ||
|
||
.q-table--dense .q-table__bottom .q-btn .q-icon { | ||
font-size: 2.5em; | ||
font-size: 2.5em; | ||
} |
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
Oops, something went wrong.