Skip to content

Commit f576e16

Browse files
author
hikki
committed
v3
1 parent b17b57e commit f576e16

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

resources/assets/component.css

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,8 @@
5353
transition-property: color,background-color,border;
5454
}
5555

56-
.dlp-label:hover {
57-
background-color: #bfbfbf;
58-
background-image: none;
59-
-webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgb(34 36 38 / 15%) inset;
60-
box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgb(34 36 38 / 15%) inset;
56+
.dlp-label:hover,.dlp-label-active {
57+
background-color: #f7f7f7;
6158
color: rgba(0,0,0,1);
6259
}
6360

@@ -290,7 +287,7 @@
290287
}
291288
.dot-cascade-panel>.plane-body{
292289
height: calc(100% - 23px);
293-
background: rgb(30 30 30)!important;;
290+
background: rgb(35 35 35)!important;
294291
}
295292
.dot-cascade-panel>.plane-header-delete{
296293
width: 270px;

src/Tool/FormPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function textarea(string $column, string $label, string $value = '')
5151
public function select(string $column, string $label, array $selected, array $select,$limit=0,array $style=[])
5252
{
5353
$selected = json_encode($selected, JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
54-
$select = json_encode($select, JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
54+
$select = json_encode($select, JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
5555
$style = array_merge(['width'=>'100%','height'=>'62px'],$style);
5656
$style_string = '';
5757
foreach ($style as $k=>$s){

src/Widget/Dot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function render()
3030
public static function panel(array $selected,array $select,int $limit=1,array $style=[])
3131
{
3232
$selected = json_encode($selected, JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
33-
$select = json_encode($select, JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
33+
$select = json_encode($select, JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE | JSON_HEX_QUOT | JSON_HEX_APOS);
3434
$style = array_merge(['width'=>'100%','height'=>'200px'],$style);
3535
$style_string = '';
3636
foreach ($style as $k=>$s){

0 commit comments

Comments
 (0)