mirror of
https://github.com/louislam/dockge.git
synced 2024-11-27 21:24:02 +00:00
Theme option enabled in settings.
This commit is contained in:
parent
109222f024
commit
d6f6f46ea3
3 changed files with 2 additions and 6 deletions
|
@ -14,7 +14,7 @@
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="false" class="my-4">
|
<div v-show="true" class="my-4">
|
||||||
<label for="timezone" class="form-label">{{ $t("Theme") }}</label>
|
<label for="timezone" class="form-label">{{ $t("Theme") }}</label>
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -800,9 +800,6 @@ export default {
|
||||||
.editor-box {
|
.editor-box {
|
||||||
font-family: 'JetBrains Mono', monospace;
|
font-family: 'JetBrains Mono', monospace;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
&.edit-mode {
|
|
||||||
background-color: #2c2f38 !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.agent-name {
|
.agent-name {
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<!-- Docker Run -->
|
<!-- Docker Run -->
|
||||||
<h2 class="mb-3">{{ $t("Docker Run") }}</h2>
|
<h2 class="mb-3">{{ $t("Docker Run") }}</h2>
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<textarea id="name" v-model="dockerRunCommand" type="text" class="form-control docker-run" required placeholder="docker run ..."></textarea>
|
<textarea id="name" v-model="dockerRunCommand" type="text" class="form-control docker-run shadow-box" required placeholder="docker run ..."></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="btn-normal btn mb-4" @click="convertDockerRun">{{ $t("Convert to Compose") }}</button>
|
<button class="btn-normal btn mb-4" @click="convertDockerRun">{{ $t("Convert to Compose") }}</button>
|
||||||
|
@ -326,7 +326,6 @@ table {
|
||||||
}
|
}
|
||||||
|
|
||||||
.docker-run {
|
.docker-run {
|
||||||
background-color: $dark-bg !important;
|
|
||||||
border: none;
|
border: none;
|
||||||
font-family: 'JetBrains Mono', monospace;
|
font-family: 'JetBrains Mono', monospace;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
|
Loading…
Reference in a new issue