@bwg-ui/core 1.2.15 → 1.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/{MenuReport-CozV1tpR.js → MenuReport-ByLduwwZ.js} +27 -26
- package/dist/chunks/MenuReport-D5nIx5g9.cjs +1 -0
- package/dist/chunks/{common-components-B-zgrX-L.cjs → common-components-BXjzima0.cjs} +76 -76
- package/dist/chunks/{common-components-XA2KG7Pl.js → common-components-CyxuMobg.js} +7990 -7606
- package/dist/chunks/layout-components-CfFi4fiJ.cjs +35 -0
- package/dist/chunks/{layout-components-MrnKV5g7.js → layout-components-CyKRhOdT.js} +646 -614
- package/dist/components/common/BookmarkMngModal.d.ts.map +1 -1
- package/dist/components/common/BookmarkPopver.d.ts.map +1 -1
- package/dist/components/common/BwgConfigProvider.d.ts.map +1 -1
- package/dist/components/common/BwgEditor.d.ts.map +1 -1
- package/dist/components/common/BwgPagination.d.ts.map +1 -1
- package/dist/components/common/index.cjs +1 -1
- package/dist/components/common/index.js +1 -1
- package/dist/components/guide/BwgPracticeGuideS00.d.ts.map +1 -1
- package/dist/components/guide/BwgPracticeGuideS01.d.ts.map +1 -1
- package/dist/components/guide/index.cjs +1 -1
- package/dist/components/guide/index.d.ts +0 -1
- package/dist/components/guide/index.d.ts.map +1 -1
- package/dist/components/guide/index.js +97 -291
- package/dist/components/layout/custom/ConfigurableHeader.d.ts.map +1 -1
- package/dist/components/layout/custom/ConfigurableSidebar.d.ts.map +1 -1
- package/dist/components/layout/default/LoadingContainer.d.ts +1 -0
- package/dist/components/layout/default/LoadingContainer.d.ts.map +1 -1
- package/dist/components/layout/index.cjs +1 -1
- package/dist/components/layout/index.js +1 -1
- package/dist/components/layout/types.d.ts +28 -0
- package/dist/components/layout/types.d.ts.map +1 -1
- package/dist/components/pages/index.d.ts +1 -0
- package/dist/components/pages/index.d.ts.map +1 -1
- package/dist/components/pages/syst/CMHldyCfg.d.ts.map +1 -0
- package/dist/components/popup/MenuReport.d.ts.map +1 -1
- package/dist/components/popup/index.cjs +1 -1
- package/dist/components/popup/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +161 -159
- package/dist/public/realgrid/css/realgrid-style-custom.css +30 -4
- package/dist/stores/index.cjs +1 -1
- package/dist/stores/index.js +1 -1
- package/dist/styles/assets/images/contents/icon/ico-add-bookmark.svg +26 -0
- package/dist/styles/assets/images/contents/icon/ico-edit-folder.svg +18 -0
- package/dist/styles/assets/images/contents/icon/ico-new-folder.svg +20 -0
- package/dist/styles/assets/images/contents/icon/ico-save-bookmark.svg +25 -0
- package/dist/styles/components.css +207 -132
- package/dist/styles/layout-test.css +8 -300
- package/dist/styles/layout.css +77 -113
- package/dist/styles/variables.css +111 -78
- package/dist/utils/gwUtils.d.ts +38 -0
- package/dist/utils/gwUtils.d.ts.map +1 -1
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.js +731 -700
- package/package.json +2 -1
- package/dist/chunks/MenuReport-Bqeps5fC.cjs +0 -1
- package/dist/chunks/layout-components-bb0cWC3I.cjs +0 -35
- package/dist/components/guide/CMHldyCfg.d.ts.map +0 -1
- /package/dist/components/{guide → pages/syst}/CMHldyCfg.d.ts +0 -0
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
font-size: 13px;
|
|
22
22
|
height: 30px;
|
|
23
23
|
padding: 0px 12px;
|
|
24
|
+
gap: 4px;
|
|
24
25
|
border-radius: var(--border-radius-sm);
|
|
25
26
|
font-weight: var(--font-weight-medium);
|
|
26
27
|
line-height: inherit;
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
background: var(--button-solid);
|
|
34
35
|
color: var(--button-default);
|
|
35
36
|
border-color: var(--button-primary);
|
|
37
|
+
box-shadow: none;
|
|
36
38
|
}
|
|
37
39
|
.bwg-btn.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
|
|
38
40
|
background: var(--button-solid-hover);
|
|
@@ -47,43 +49,46 @@
|
|
|
47
49
|
color: var(--text-disabled);
|
|
48
50
|
background: var(--text-disabled-bg);
|
|
49
51
|
}
|
|
50
|
-
|
|
52
|
+
.bwg-btn .ant-btn-icon {
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
}
|
|
51
56
|
/* 공통 버튼 테마 적용 - BwgView의 공통 버튼 영역에만 적용 */
|
|
52
|
-
.bwg-view .permission-buttons .ant-btn-primary {
|
|
57
|
+
.bwg-view .permission-buttons .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) {
|
|
53
58
|
background-color: var(--button-primary);
|
|
54
59
|
border-color: var(--button-primary);
|
|
55
60
|
color: var(--text-white);
|
|
56
61
|
}
|
|
57
62
|
|
|
58
|
-
.bwg-view .permission-buttons .ant-btn-primary:hover {
|
|
63
|
+
.bwg-view .permission-buttons .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):hover {
|
|
59
64
|
background-color: var(--button-primary-hover);
|
|
60
65
|
border-color: var(--button-primary-hover);
|
|
61
66
|
}
|
|
62
67
|
|
|
63
|
-
.bwg-view .permission-buttons .ant-btn-primary:active {
|
|
68
|
+
.bwg-view .permission-buttons .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):active {
|
|
64
69
|
background-color: var(--button-primary-active);
|
|
65
70
|
border-color: var(--button-primary-active);
|
|
66
71
|
}
|
|
67
72
|
|
|
68
|
-
.bwg-view .permission-buttons .bwg-btn.ant-btn-default {
|
|
73
|
+
.bwg-view .permission-buttons .bwg-btn.ant-btn-default:not(:disabled):not(.ant-btn-disabled) {
|
|
69
74
|
background-color: var(--button-default);
|
|
70
75
|
border-color: var(--button-permission-border);
|
|
71
76
|
color: var(--text-secondary);
|
|
72
77
|
}
|
|
73
78
|
|
|
74
|
-
.bwg-view .permission-buttons .ant-btn-default:hover {
|
|
79
|
+
.bwg-view .permission-buttons .ant-btn-default:not(:disabled):not(.ant-btn-disabled):hover {
|
|
75
80
|
background-color: var(--button-default);
|
|
76
81
|
border-color: var(--button-primary);
|
|
77
82
|
color: var(--button-primary);
|
|
78
83
|
}
|
|
79
84
|
|
|
80
85
|
/* 에러 버튼 */
|
|
81
|
-
.bwgview-header-right .bwg-error-btn,
|
|
82
|
-
.bwg-title-box-right .bwg-error-btn {
|
|
86
|
+
.bwgview-header-right .bwg-error-btn:not(:disabled):not(.ant-btn-disabled),
|
|
87
|
+
.bwg-title-box-right .bwg-error-btn:not(:disabled):not(.ant-btn-disabled) {
|
|
83
88
|
border-color: var(--button-error) !important;
|
|
84
89
|
color: var(--button-error) !important;
|
|
85
90
|
}
|
|
86
|
-
.bwg-error-btn.ant-btn-variant-solid:not(:disabled) {
|
|
91
|
+
.bwg-error-btn.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled) {
|
|
87
92
|
background: var(--button-error);
|
|
88
93
|
color: var(--button-default);
|
|
89
94
|
border-color: var(--button-error);
|
|
@@ -93,15 +98,15 @@
|
|
|
93
98
|
border-color: var(--button-error);
|
|
94
99
|
}
|
|
95
100
|
.bwg-error-btn.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover {
|
|
96
|
-
border-color: var(--button-error-default-hover);
|
|
97
|
-
color: var(--button-error-default-hover);
|
|
101
|
+
border-color: var(--button-error-default-hover) !important;
|
|
102
|
+
color: var(--button-error-default-hover) !important;
|
|
98
103
|
}
|
|
99
|
-
.bwg-view .permission-buttons .bwg-error-btn.ant-btn-default {
|
|
104
|
+
.bwg-view .permission-buttons .bwg-error-btn.ant-btn-default:not(:disabled):not(.ant-btn-disabled) {
|
|
100
105
|
background-color: var(--button-default);
|
|
101
106
|
border-color: var(--button-error-permission-border);
|
|
102
107
|
color: var(--text-secondary);
|
|
103
108
|
}
|
|
104
|
-
.bwg-view .permission-buttons .bwg-error-btn.ant-btn-default:hover {
|
|
109
|
+
.bwg-view .permission-buttons .bwg-error-btn.ant-btn-default:not(:disabled):not(.ant-btn-disabled):hover {
|
|
105
110
|
background-color: var(--button-default);
|
|
106
111
|
border-color: var(--button-error);
|
|
107
112
|
color: var(--button-error);
|
|
@@ -248,9 +253,9 @@
|
|
|
248
253
|
display: flex;
|
|
249
254
|
align-items: center;
|
|
250
255
|
gap: 8px;
|
|
251
|
-
|
|
256
|
+
}
|
|
257
|
+
.bwgview-header-left > .ant-space-gap-col-middle {
|
|
252
258
|
column-gap: 0;
|
|
253
|
-
}
|
|
254
259
|
}
|
|
255
260
|
|
|
256
261
|
.bwgview-header-right {
|
|
@@ -261,9 +266,9 @@
|
|
|
261
266
|
.bwgview-header-right .ant-space {
|
|
262
267
|
padding-right: 7px;
|
|
263
268
|
column-gap: 10px;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
269
|
+
}
|
|
270
|
+
.bwgview-header-right .ant-space .ant-divider-vertical {
|
|
271
|
+
border-inline-start: 1px solid #cecece;
|
|
267
272
|
}
|
|
268
273
|
.bwgview-content {
|
|
269
274
|
height: inherit;
|
|
@@ -279,8 +284,7 @@
|
|
|
279
284
|
width: 100%;
|
|
280
285
|
height: 100%;
|
|
281
286
|
display: flex;
|
|
282
|
-
|
|
283
|
-
&.hz-layout {
|
|
287
|
+
/* &.hz-layout {
|
|
284
288
|
flex-direction: row;
|
|
285
289
|
|
|
286
290
|
&.layout-left {
|
|
@@ -331,27 +335,70 @@
|
|
|
331
335
|
&.vertical-bottom {
|
|
332
336
|
justify-content: end;
|
|
333
337
|
}
|
|
334
|
-
}
|
|
338
|
+
} */
|
|
339
|
+
}
|
|
340
|
+
.bwgview-content-layout.hz-layout {
|
|
341
|
+
flex-direction: row;
|
|
342
|
+
}
|
|
343
|
+
.bwgview-content-layout.hz-layout.layout-left {
|
|
344
|
+
justify-content: flex-start;
|
|
345
|
+
}
|
|
346
|
+
.bwgview-content-layout.hz-layout.layout-center {
|
|
347
|
+
justify-content: center;
|
|
348
|
+
}
|
|
349
|
+
.bwgview-content-layout.hz-layout.layout-right {
|
|
350
|
+
justify-content: flex-end;
|
|
351
|
+
}
|
|
352
|
+
.bwgview-content-layout.hz-layout.layout-around {
|
|
353
|
+
justify-content: space-around;
|
|
354
|
+
}
|
|
355
|
+
.bwgview-content-layout.hz-layout.layout-between {
|
|
356
|
+
justify-content: space-between;
|
|
357
|
+
}
|
|
358
|
+
.bwgview-content-layout.hz-layout.vertical-top {
|
|
359
|
+
align-items: start;
|
|
360
|
+
}
|
|
361
|
+
.bwgview-content-layout.hz-layout.vertical-center {
|
|
362
|
+
align-items: center;
|
|
363
|
+
}
|
|
364
|
+
.bwgview-content-layout.hz-layout.vertical-bottom {
|
|
365
|
+
align-items: end;
|
|
366
|
+
}
|
|
367
|
+
.bwgview-content-layout.vt-layout {
|
|
368
|
+
flex-direction: column;
|
|
369
|
+
}
|
|
370
|
+
.bwgview-content-layout.vt-layout.layout-left {
|
|
371
|
+
align-items: flex-start;
|
|
372
|
+
}
|
|
373
|
+
.bwgview-content-layout.vt-layout.layout-center {
|
|
374
|
+
align-items: center;
|
|
335
375
|
}
|
|
376
|
+
.bwgview-content-layout.vt-layout.layout-right {
|
|
377
|
+
align-items: flex-end;
|
|
378
|
+
}
|
|
379
|
+
.bwgview-content-layout.vt-layout.vertical-top {
|
|
380
|
+
justify-content: start;
|
|
381
|
+
}
|
|
382
|
+
.bwgview-content-layout.vt-layout.vertical-center {
|
|
383
|
+
justify-content: center;
|
|
384
|
+
}
|
|
385
|
+
.bwgview-content-layout.vt-layout.vertical-bottom {
|
|
386
|
+
justify-content: end;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
336
391
|
|
|
337
392
|
.bwgview-content-box {
|
|
338
393
|
box-sizing: border-box;
|
|
339
394
|
display: flex;
|
|
340
395
|
flex-direction: column;
|
|
341
|
-
|
|
342
|
-
/* 250826 고현아 추가 */
|
|
343
396
|
border-radius: 15px;
|
|
344
397
|
border: 1px solid var(--border-color);
|
|
345
398
|
padding: 20px 20px 15px;
|
|
346
399
|
background: var(--bg-primary);
|
|
347
400
|
|
|
348
|
-
&.box-
|
|
349
|
-
/* border: 1px solid #ddd !important;
|
|
350
|
-
padding: 10px 12px !important;
|
|
351
|
-
border-radius: 8px !important; */
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
&.content-box-left {
|
|
401
|
+
/* &.content-box-left {
|
|
355
402
|
align-items: flex-start;
|
|
356
403
|
}
|
|
357
404
|
&.content-box-center {
|
|
@@ -359,7 +406,7 @@
|
|
|
359
406
|
}
|
|
360
407
|
&.content-box-right {
|
|
361
408
|
align-items: flex-end;
|
|
362
|
-
}
|
|
409
|
+
} */
|
|
363
410
|
|
|
364
411
|
}
|
|
365
412
|
/* content layout , content box 커스텀 클래스 */
|
|
@@ -572,10 +619,10 @@
|
|
|
572
619
|
/* BwgCmptArea 컴포넌트 공통 스타일 변경 */
|
|
573
620
|
.form-component-wrapper .ant-form-item .ant-form-item-label label {
|
|
574
621
|
color: var(--text-primary);
|
|
575
|
-
> span {
|
|
576
|
-
font-weight: var(--font-weight-semibold) !important;
|
|
577
|
-
}
|
|
578
622
|
}
|
|
623
|
+
.form-component-wrapper .ant-form-item .ant-form-item-label label > span {
|
|
624
|
+
font-weight: var(--font-weight-semibold) !important;
|
|
625
|
+
}
|
|
579
626
|
|
|
580
627
|
/* bwgForm 공통 스타일 */
|
|
581
628
|
.bwg-form .ant-form-item {
|
|
@@ -600,6 +647,7 @@
|
|
|
600
647
|
font-weight: var(--font-weight-semibold);
|
|
601
648
|
}
|
|
602
649
|
|
|
650
|
+
/* tab 스타일 */
|
|
603
651
|
.ant-tabs,
|
|
604
652
|
.ant-tabs-content,
|
|
605
653
|
.ant-tabs-tabpane,
|
|
@@ -607,70 +655,64 @@
|
|
|
607
655
|
width: 100%;
|
|
608
656
|
height: 100%;
|
|
609
657
|
}
|
|
658
|
+
.ant-tabs-top > .ant-tabs-nav::before {
|
|
659
|
+
border-color: #ccc;
|
|
660
|
+
}
|
|
661
|
+
|
|
610
662
|
|
|
611
663
|
.between-vertical-btn-group {
|
|
612
664
|
display: flex;
|
|
613
665
|
justify-content: center;
|
|
614
666
|
height: 100%;
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
&:active {
|
|
655
|
-
border-color: var(--primary-color);
|
|
656
|
-
background: var(--primary-color) url(./assets/images/contents/btn/btn-left-on.png)
|
|
657
|
-
no-repeat center;
|
|
658
|
-
}
|
|
659
|
-
}
|
|
660
|
-
&.btn-right {
|
|
661
|
-
background: url(./assets/images/contents/btn/btn-right.png) no-repeat
|
|
662
|
-
center;
|
|
663
|
-
&:hover,
|
|
664
|
-
&:active {
|
|
665
|
-
border-color: var(--primary-color);
|
|
666
|
-
background: var(--primary-color) url(./assets/images/contents/btn/btn-right-on.png)
|
|
667
|
-
no-repeat center;
|
|
668
|
-
}
|
|
669
|
-
}
|
|
670
|
-
}
|
|
671
|
-
}
|
|
667
|
+
}
|
|
668
|
+
.between-vertical-btn-group button {
|
|
669
|
+
width: 28px;
|
|
670
|
+
height: 28px;
|
|
671
|
+
padding: 0;
|
|
672
|
+
border-color: #e3e3e3;
|
|
673
|
+
}
|
|
674
|
+
.between-vertical-btn-group .upDown button {
|
|
675
|
+
margin: 0 3px;
|
|
676
|
+
}
|
|
677
|
+
.between-vertical-btn-group .upDown button .btn-up {
|
|
678
|
+
background: url(./assets/images/contents/btn/btn-up.png) no-repeat center;
|
|
679
|
+
}
|
|
680
|
+
.between-vertical-btn-group .upDown button .btn-up:hover,
|
|
681
|
+
.between-vertical-btn-group .upDown button .btn-up:active {
|
|
682
|
+
border-color: var(--primary-color);
|
|
683
|
+
background: var(--primary-color) url(./assets/images/contents/btn/btn-up-on.png) no-repeat center;
|
|
684
|
+
}
|
|
685
|
+
.between-vertical-btn-group .upDown button .btn-down {
|
|
686
|
+
background: url(./assets/images/contents/btn/btn-down.png) no-repeat center;
|
|
687
|
+
}
|
|
688
|
+
.between-vertical-btn-group .upDown button .btn-down:hover,
|
|
689
|
+
.between-vertical-btn-group .upDown button .btn-down:active {
|
|
690
|
+
border-color: var(--primary-color);
|
|
691
|
+
background: var(--primary-color) url(./assets/images/contents/btn/btn-down-on.png) no-repeat center;
|
|
692
|
+
}
|
|
693
|
+
.between-vertical-btn-group .leftRight {
|
|
694
|
+
flex-direction: column;
|
|
695
|
+
}
|
|
696
|
+
.between-vertical-btn-group .leftRight button {
|
|
697
|
+
margin: 3px 0;
|
|
698
|
+
}
|
|
699
|
+
.between-vertical-btn-group .leftRight button .btn-left {
|
|
700
|
+
background: url(./assets/images/contents/btn/btn-left.png) no-repeat center;
|
|
701
|
+
}
|
|
702
|
+
.between-vertical-btn-group .leftRight button .btn-left:hover,
|
|
703
|
+
.between-vertical-btn-group .leftRight button .btn-left:active {
|
|
704
|
+
border-color: var(--primary-color);
|
|
705
|
+
background: var(--primary-color) url(./assets/images/contents/btn/btn-left-on.png) no-repeat center;
|
|
672
706
|
}
|
|
673
707
|
|
|
708
|
+
.between-vertical-btn-group .leftRight button .btn-right {
|
|
709
|
+
background: url(./assets/images/contents/btn/btn-right.png) no-repeat
|
|
710
|
+
}
|
|
711
|
+
.between-vertical-btn-group .leftRight button .btn-right:hover,
|
|
712
|
+
.between-vertical-btn-group .leftRight button .btn-right:active {
|
|
713
|
+
border-color: var(--primary-color);
|
|
714
|
+
background: var(--primary-color) url(./assets/images/contents/btn/btn-right-on.png) no-repeat center;
|
|
715
|
+
}
|
|
674
716
|
.ant-space-compact.block {
|
|
675
717
|
width: 100%;
|
|
676
718
|
}
|
|
@@ -690,40 +732,40 @@
|
|
|
690
732
|
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
691
733
|
border-radius: 50px;
|
|
692
734
|
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
735
|
+
}
|
|
736
|
+
.grid-search-box .ant-input {
|
|
737
|
+
border-radius: 50px 0 0 50px;
|
|
738
|
+
border: 0;
|
|
739
|
+
height: 32px !important;
|
|
740
|
+
padding: 0 5px;
|
|
741
|
+
}
|
|
742
|
+
.grid-search-box .ant-space-compact .ant-btn {
|
|
743
|
+
border-radius: 50%;
|
|
744
|
+
border: 0;
|
|
745
|
+
box-shadow: none;
|
|
746
|
+
}
|
|
747
|
+
.grid-search-box .ant-space-compact .ant-btn:hover,
|
|
748
|
+
.grid-search-box .ant-space-compact .ant-btn:active {
|
|
749
|
+
color: var(--primary-color);
|
|
750
|
+
}
|
|
751
|
+
.grid-search-box .ant-flex > .ant-btn {
|
|
752
|
+
background: var(--button-solid);
|
|
753
|
+
box-shadow: none;
|
|
754
|
+
border-radius: 50%;
|
|
755
|
+
width: 30px;
|
|
756
|
+
height: 30px;
|
|
757
|
+
flex-shrink: 0;
|
|
758
|
+
font-size: 15px;
|
|
759
|
+
line-height: 30px;
|
|
760
|
+
color: var(--text-white);
|
|
761
|
+
}
|
|
762
|
+
.grid-search-box .ant-flex > .ant-btn:hover {
|
|
763
|
+
background: var(--button-solid-hover);
|
|
764
|
+
color: var(--button-default);
|
|
765
|
+
}
|
|
766
|
+
.grid-search-box .ant-flex {
|
|
767
|
+
gap: 5px;
|
|
768
|
+
align-items: center;
|
|
727
769
|
}
|
|
728
770
|
.grid-search-box .anticon-search {
|
|
729
771
|
color: #777;
|
|
@@ -742,25 +784,20 @@
|
|
|
742
784
|
background: #E2F4FF;
|
|
743
785
|
border-color: #CAE6FB;
|
|
744
786
|
}
|
|
745
|
-
|
|
746
|
-
|
|
747
787
|
/* BwgDrawer 헤더 테마 적용 */
|
|
748
788
|
.main-drawer .ant-drawer-header {
|
|
749
|
-
padding:
|
|
789
|
+
padding: 22px 40px;
|
|
750
790
|
background-color: var(--drawer-header-bg);
|
|
751
791
|
color: var(--text-primary);
|
|
752
792
|
border-bottom: 1px solid #ececec;
|
|
753
793
|
}
|
|
754
|
-
|
|
755
794
|
.main-drawer .ant-drawer-header .ant-drawer-title {
|
|
756
795
|
font-size: var(--font-size-xl) !important;
|
|
757
796
|
color: var(--text-primary);
|
|
758
797
|
}
|
|
759
|
-
|
|
760
798
|
.main-drawer .ant-drawer-header .ant-drawer-close {
|
|
761
799
|
color: #565656 !important;
|
|
762
800
|
}
|
|
763
|
-
|
|
764
801
|
.main-drawer .ant-drawer-header .ant-drawer-close:hover {
|
|
765
802
|
background-color: #E1E3FB;
|
|
766
803
|
}
|
|
@@ -899,6 +936,11 @@
|
|
|
899
936
|
.bwg-form-item .ant-row {
|
|
900
937
|
flex-wrap: nowrap !important;
|
|
901
938
|
}
|
|
939
|
+
.bwg-form:has(.bwg-editor-wrap),
|
|
940
|
+
.ant-form:has(.bwg-editor-wrap) {
|
|
941
|
+
display: flex;
|
|
942
|
+
flex-direction: column;
|
|
943
|
+
}
|
|
902
944
|
|
|
903
945
|
.bwg-ogrn-tree .ant-tree .ant-tree-treenode {
|
|
904
946
|
width: 100%;
|
|
@@ -928,4 +970,37 @@
|
|
|
928
970
|
}
|
|
929
971
|
.bwg-ogrn-tree .ant-tree-checkbox-checked:not(.ant-tree-checkbox-disabled):hover .ant-tree-checkbox-inner {
|
|
930
972
|
background-color: var(--check-primary-active);
|
|
931
|
-
}
|
|
973
|
+
}
|
|
974
|
+
/* 북마크 */
|
|
975
|
+
.bookmark-title-icon {
|
|
976
|
+
display: inline-block;
|
|
977
|
+
width: 24px;
|
|
978
|
+
height: 24px;
|
|
979
|
+
}
|
|
980
|
+
.bookmark-title-icon.saved {
|
|
981
|
+
background: url(./assets/images/contents/icon/ico-save-bookmark.svg) no-repeat center;
|
|
982
|
+
}
|
|
983
|
+
.bookmark-title-icon.add {
|
|
984
|
+
background: url(./assets/images/contents/icon/ico-add-bookmark.svg) no-repeat center;
|
|
985
|
+
}
|
|
986
|
+
.bookmark-folder-modal-icon {
|
|
987
|
+
display: inline-block;
|
|
988
|
+
width: 20px;
|
|
989
|
+
height: 20px;
|
|
990
|
+
}
|
|
991
|
+
.bookmark-folder-modal-icon.ico-new-folder {
|
|
992
|
+
background: url(./assets/images/contents/icon/ico-new-folder.svg) no-repeat center;
|
|
993
|
+
}
|
|
994
|
+
.bookmark-folder-modal-icon.ico-edit-folder {
|
|
995
|
+
background: url(./assets/images/contents/icon/ico-edit-folder.svg) no-repeat center;
|
|
996
|
+
}
|
|
997
|
+
/* BwgEditer */
|
|
998
|
+
.ql-container {
|
|
999
|
+
min-height: 0;
|
|
1000
|
+
}
|
|
1001
|
+
.ql-toolbar.ql-snow {
|
|
1002
|
+
border-bottom: 0;
|
|
1003
|
+
}
|
|
1004
|
+
.ql-toolbar.ql-snow + .ql-container.ql-snow {
|
|
1005
|
+
border-top: 1px solid #ccc;
|
|
1006
|
+
}
|