Skip to content

Commit d6a3102

Browse files
kendo-botJuveniel
authored andcommitted
chore: update visual previews
1 parent b944cfd commit d6a3102

21 files changed

+525
-0
lines changed
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

tests/dock-manager/dock-manager-unpinned-pane.html

+214
Large diffs are not rendered by default.

tests/dock-manager/dock-manager.html

+218
Large diffs are not rendered by default.
+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!doctype html>
2+
<html lang="en" class="k-no-animations" style="--kendo-scrollbar-width: 15px;">
3+
<head>
4+
<title>Document</title>
5+
<meta charset="utf-8">
6+
<link rel="stylesheet" data-role="kendo-theme" href="/packages/default/dist/all.css">
7+
<link rel="stylesheet" href="/packages/html/assets/styles.css">
8+
<script src="/packages/html/assets/scripts.js"></script>
9+
</head>
10+
<body id="app" class="k-body">
11+
<style>
12+
section {
13+
display: flex;
14+
flex-direction: column;
15+
align-items: start;
16+
gap: 10px;
17+
}
18+
19+
</style>
20+
<div id="test-area" class="k-d-grid k-grid-cols-3">
21+
<section class="k-col-span-1" style="gap: 30px;">
22+
<span>Normal</span>
23+
<span>Hover</span>
24+
<span>Focus</span>
25+
</section>
26+
<section class="k-col-span-1">
27+
<div class="k-dock-indicator">
28+
<span class="k-svg-icon k-icon-xl k-svg-i-position-top">
29+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
30+
<path d="M480 448V32H32v448h448v-32zm-416 0V64h384v384H64zM96 96h320v96H96z"></path>
31+
</svg>
32+
</span>
33+
</div>
34+
<div class="k-dock-indicator k-hover">
35+
<span class="k-svg-icon k-icon-xl k-svg-i-position-top">
36+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
37+
<path d="M480 448V32H32v448h448v-32zm-416 0V64h384v384H64zM96 96h320v96H96z"></path>
38+
</svg>
39+
</span>
40+
</div>
41+
<div class="k-dock-indicator k-disabled">
42+
<span class="k-svg-icon k-icon-xl k-svg-i-position-top">
43+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
44+
<path d="M480 448V32H32v448h448v-32zm-416 0V64h384v384H64zM96 96h320v96H96z"></path>
45+
</svg>
46+
</span>
47+
</div>
48+
</section>
49+
<section class="k-col-span-1">
50+
<div class="k-dock-navigator" style="position: relative;">
51+
<div class="k-dock-indicator k-dock-indicator-top">
52+
<span class="k-svg-icon k-icon-xl k-svg-i-position-top">
53+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
54+
<path d="M480 448V32H32v448h448v-32zm-416 0V64h384v384H64zM96 96h320v96H96z"></path>
55+
</svg>
56+
</span>
57+
</div>
58+
<div class="k-dock-indicator k-dock-indicator-right">
59+
<span class="k-svg-icon k-icon-xl k-svg-i-position-right">
60+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
61+
<path d="M64 480h416V32H32v448h32zm0-416h384v384H64V64zm256 32h96v320h-96z"></path>
62+
</svg>
63+
</span>
64+
</div>
65+
<div class="k-dock-indicator k-dock-indicator-bottom">
66+
<span class="k-svg-icon k-icon-xl k-svg-i-position-bottom">
67+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
68+
<path d="M32 64v416h448V32H32v32zm416 0v384H64V64h384zM96 320h320v96H96z"></path>
69+
</svg>
70+
</span>
71+
</div>
72+
<div class="k-dock-indicator k-dock-indicator-left">
73+
<span class="k-svg-icon k-icon-xl k-svg-i-position-left">
74+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
75+
<path d="M448 32H32v448h448V32h-32zm0 416H64V64h384v384zM96 96h96v320H96z"></path>
76+
</svg>
77+
</span>
78+
</div>
79+
<div class="k-dock-indicator k-dock-indicator-middle">
80+
<span class="k-svg-icon k-icon-xl k-svg-i-window">
81+
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
82+
<path d="M96 96v320h320V96H96zm288 288H128V192h256v192z"></path>
83+
</svg>
84+
</span>
85+
</div>
86+
</div>
87+
<div style="position: relative; width: 200px; height: 100px;">
88+
<div class="k-docking-preview">Droppping Area</div>
89+
</div>
90+
</section>
91+
</div>
92+
</body>
93+
</html>

0 commit comments

Comments
 (0)