-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.html
More file actions
68 lines (57 loc) · 1.87 KB
/
debug.html
File metadata and controls
68 lines (57 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Debug - Check HTML Structure</title>
<style>
body {
background: #1a1a2e;
color: white;
font-family: monospace;
padding: 20px;
}
.highlight {
background: yellow;
color: black;
padding: 2px 4px;
}
pre {
background: #0f0f23;
padding: 10px;
border-radius: 4px;
overflow-x: auto;
}
</style>
</head>
<body>
<h1>Инструкция по проверке HTML структуры</h1>
<h2>Откройте расширение и нажмите F12</h2>
<h3>В Elements найдите:</h3>
<pre>
<div class="main-wrapper">
<div class="settings-column">
...
<div id="promptInputsGrid">
<!-- Main Idea ДОЛЖНА быть ЗДЕСЬ -->
</div>
</div>
<div class="results-column">
<!-- Copy buttons и results ДОЛЖНЫ быть ЗДЕСЬ -->
</div>
</div>
</pre>
<h3>Проверьте в Styles для .main-wrapper:</h3>
<pre>
.main-wrapper {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
gap: 24px !important;
}
</pre>
<h3>Если видите это - проверьте что применяется:</h3>
<ul>
<li>Если есть <span class="highlight">перечеркнутые</span> стили - значит что-то их перекрывает</li>
<li>Посмотрите какие стили НЕ перечеркнуты - они и применяются</li>
</ul>
<h2>Сделайте скриншот DevTools и покажите мне!</h2>
</body>
</html>