Skip to content

Commit 09ba7e9

Browse files
committed
Adjust handle graphics.
1 parent e0f1bfe commit 09ba7e9

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

Radzen.Blazor/themes/components/blazor/_dialog.scss

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,15 @@ $dialog-transition: .1s ease-in-out !default;
9898
.rz-dialog-side-resize-handle-right::before {
9999
content: "";
100100
position: absolute;
101-
top: 40%;
102-
Height: 20%;
101+
top: 45%;
102+
Height: 10%;
103103
width: 6px;
104104
background-image:
105-
radial-gradient(currentColor 1px, transparent 1px),
106-
radial-gradient(currentColor 1px, transparent 1px);
107-
background-size: 6px 6px, 6px 6px;
108-
background-position: 0 0, 3px 3px;
105+
linear-gradient(to right, currentColor 1px, transparent 1px),
106+
linear-gradient(to right, currentColor 1px, transparent 1px);
107+
background-size: 3px 100%, 3px 100%;
108+
background-position: 0 0, 3px 0;
109+
background-repeat: no-repeat;
109110
color: color-mix(in oklab, var(--rz-secondary) 45%, var(--rz-text-color));
110111
opacity: 0.6;
111112
}
@@ -114,14 +115,15 @@ $dialog-transition: .1s ease-in-out !default;
114115
.rz-dialog-side-resize-handle-bottom::before {
115116
content: "";
116117
position: absolute;
117-
left: 40%;
118-
width: 20%;
118+
left: 45%;
119+
width: 10%;
119120
height: 6px;
120121
background-image:
121-
radial-gradient(currentColor 1px, transparent 1px),
122-
radial-gradient(currentColor 1px, transparent 1px);
123-
background-size: 6px 6px, 6px 6px;
124-
background-position: 0 0, 3px 3px;
122+
linear-gradient(to bottom, currentColor 1px, transparent 1px),
123+
linear-gradient(to bottom, currentColor 1px, transparent 1px);
124+
background-size: 100% 3px, 100% 3px;
125+
background-position: 0 0, 0 3px;
126+
background-repeat: no-repeat;
125127
color: color-mix(in oklab, var(--rz-secondary) 45%, var(--rz-text-color));
126128
opacity: 0.6;
127129
}

0 commit comments

Comments
 (0)