Skip to content

Commit aba4361

Browse files
jschoiRRdhslove
authored andcommitted
다크모드 css 수정 및 테마 설정관련 미정의된 한글,영문 항목 추가
1 parent 8252d05 commit aba4361

File tree

5 files changed

+44
-7
lines changed

5 files changed

+44
-7
lines changed

ui/public/locales/en.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4798,5 +4798,15 @@
47984798
"message.license.not.found1": "Unable to verify license information.",
47994799
"message.license.not.found2": "Please register a new license and use it.",
48004800
"message.license.days.left": "Expires in a few days.",
4801-
"message.license.nostart": "Please check the start date of the license validity period."
4801+
"message.license.nostart": "Please check the start date of the license validity period.",
4802+
"label.theme.light": "Light",
4803+
"label.theme.dark": "Dark",
4804+
"label.theme.daybreak.blue": "Daybreak Blue",
4805+
"label.theme.dust.red": "Dust Red",
4806+
"label.theme.volcano": "Volcano",
4807+
"label.theme.sunset.orange": "Sunset Orange",
4808+
"label.theme.cyan": "Cyan",
4809+
"label.theme.polar.green": "Polar Green",
4810+
"label.theme.geek.blue": "Geek Blue",
4811+
"label.theme.golden.purple": "Golden Purple"
48024812
}

ui/public/locales/ko_KR.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4759,5 +4759,15 @@
47594759
"message.license.not.found1": "\ub77c\uc774\uc13c\uc2a4 \uc815\ubcf4\ub97c \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
47604760
"message.license.not.found2": "\uc2e0\uaddc \ub77c\uc774\uc13c\uc2a4 \ub4f1\ub85d \ud6c4 \uc0ac\uc6a9\ud574 \uc8fc\uc138\uc694.",
47614761
"message.license.days.left": "\uc77c \ud6c4 \ub9cc\ub8cc",
4762-
"message.license.nostart": "\ub77c\uc774\uc13c\uc2a4 \uc720\ud6a8\uae30\uac04\uc758 \uc2dc\uc791\uc77c\uc744 \ud655\uc778\ud574\uc8fc\uc138\uc694."
4762+
"message.license.nostart": "\ub77c\uc774\uc13c\uc2a4 \uc720\ud6a8\uae30\uac04\uc758 \uc2dc\uc791\uc77c\uc744 \ud655\uc778\ud574\uc8fc\uc138\uc694.",
4763+
"label.theme.light": "\ub77c\uc774\ud2b8",
4764+
"label.theme.dark": "\ub2e4\ud06c",
4765+
"label.theme.daybreak.blue": "\ub370\uc774\ube0c\ub808\uc774\ud06c \ube14\ub8e8",
4766+
"label.theme.dust.red": "\ub354\uc2a4\ud2b8 \ub808\ub4dc",
4767+
"label.theme.volcano": "\ubcfc\ucf00\uc774\ub178",
4768+
"label.theme.sunset.orange": "\uc120\uc14b \uc624\ub80c\uc9c0",
4769+
"label.theme.cyan": "\uc2dc\uc548",
4770+
"label.theme.polar.green": "\ud3f4\ub77c \uadf8\ub9b0",
4771+
"label.theme.geek.blue": "\uae31 \ube14\ub8e8",
4772+
"label.theme.golden.purple": "\uace8\ub4e0 \ud37c\ud50c"
47634773
}

ui/src/components/page/GlobalFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717

1818
<template>
19-
<div :class="['footer']">
19+
<div :class="['']">
2020
<div class="line">
2121
</div>
2222
</div>

ui/src/style/dark-mode.less

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
@dark-bgColor: #090c10;
19-
@dark-secondary-bgColor: #141414;
18+
@dark-bgColor: #161B22;
19+
@dark-secondary-bgColor: #22282F;
2020
@dark-text-color-1: rgba(255, 255, 255, 0.25);
2121
@dark-text-color-2: rgba(255, 255, 255, 0.45);
2222
@dark-text-color-3: rgba(255, 255, 255, 0.65);
@@ -44,6 +44,23 @@
4444
background: @dark-bgColor;
4545
}
4646

47+
td.ant-table-column-sort {
48+
background: @dark-secondary-bgColor;
49+
}
50+
51+
tr.ant-table-expanded-row,
52+
tr.ant-table-expanded-row:hover {
53+
background: @dark-secondary-bgColor !important;
54+
}
55+
56+
.ant-drawer-content {
57+
background-color: rgb(0, 21, 41);
58+
}
59+
60+
.ant-divider, .ant-card-bordered {
61+
border-color: #3E444C !important;
62+
}
63+
4764
.layout.ant-layout .header {
4865
background: @dark-secondary-bgColor;
4966
box-shadow: 0 1px 4px #090c10;
@@ -296,7 +313,7 @@
296313
}
297314

298315
& > tr > th.ant-table-column-sort {
299-
background-color: @dark-bgColor;
316+
background: @dark-secondary-bgColor;
300317
}
301318

302319
& > tr.ant-table-row:hover > td, & > tr > td.ant-table-cell-row-hover {

ui/src/views/infra/IntegrityVerificationTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
</template>
5454
<template #expandedRowRender="{ record } ">
5555
<a-table
56-
style="margin: 10px 0;"
56+
style="margin: 0;"
5757
:columns="innerColumns"
5858
:dataSource="integrityVerificationFinalResultTwo"
5959
:pagination="false"

0 commit comments

Comments
 (0)