-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (97 loc) · 4.21 KB
/
Copy pathindex.html
File metadata and controls
120 lines (97 loc) · 4.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link id="debugStyle" rel="stylesheet" href="css/styles.css" />
<link id="fontsStyle" rel="stylesheet" href="font/stylesheet.css" />
<link id="hostStyle" rel="stylesheet" href="css/topcoat-desktop-dark.css" />
<title>Basic Adobe Bridge Panel</title>
</head>
<body>
<!-- Can't find a consistent way to actively change the theme from the panel yet, only updating content with eventlistener for now. -->
<!-- <div class="topcoat-button-bar">
<div class="topcoat-button-bar__item">
<button id="SelectDarkestTheme" class="topcoat-button-bar__button">DarkDark</button>
</div>
<div class="topcoat-button-bar__item">
<button id="SelectDarkTheme" class="topcoat-button-bar__button">Dark</button>
</div>
<div class="topcoat-button-bar__item">
<button id="SelectLightTheme" class="topcoat-button-bar__button">Light</button>
</div>
<div class="topcoat-button-bar__item">
<button id="SelectLighestTheme" class="topcoat-button-bar__button">LightLight</button>
</div>
</div> -->
<div class="topcoat-button-bar">
<div class="topcoat-button-bar__item">
<button class="topcoat-button-bar__button">One</button>
</div>
<div class="topcoat-button-bar__item">
<button class="topcoat-button-bar__button">Two</button>
</div>
<div class="topcoat-button-bar__item">
<button class="topcoat-button-bar__button">Three</button>
</div>
<div class="topcoat-button-bar__item">
<button class="topcoat-button-bar__button">Four</button>
</div>
</div>
<!-- <input type="text" id= "ThemeStateInput" class="topcoat-text-input" placeholder="text" value="THEME CURRENT STATE" disabled> -->
<!-- <header>
<h2>Search Input</h2>
</header>
<section class="component"><input type="search" value="" placeholder="search" class="topcoat-search-input">
<input type="search" value="" placeholder="search" class="topcoat-search-input" disabled> -->
<!-- <br> -->
<br>
Hi! Yes, hello, this is text.
<br><br>
<!-- <button type="button" class="textbutton" onclick="sayHi()">Say hi</button>
<br><br> -->
<!-- <button class="topcoat-button" id="ReloadPanel" title="topcoat-button">Reload Panel</button> -->
<!-- <button class="topcoat-button--cta" id="SwapLightDark" title="topcoat-button--cta" rel='tooltip'>Toggle Dark/Light CSS</button>
<br> -->
<button class="topcoat-button--cta" id="LoadJsxSample" title="topcoat-button--cta">Load JSX Sample</button>
<br><br>
<label class="topcoat-checkbox" id="checkbox1">
<input type="checkbox">
<div class="topcoat-checkbox__checkmark"></div>
I am a checkbox.
</label>
<br><br>
<label class="topcoat-radiobutton" id="radio1">
<input type="radio">
<div class="topcoat-radio-button__checkmark"></div>
I am a first radiobutton.
</label>
<br>
<label class="topcoat-radiobutton" id="radio2">
<input type="radio">
<div class="topcoat-radio-button__checkmark"></div>
I am a second radiobutton.
</label>
<br><br>
<input type="text" class="topcoat-text-input" placeholder="text" value="Functional text input">
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="Disabled text input" disabled>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="ERROR" pattern="not-fail">
<!-- These are debugging shortcuts. Class debuglink items only appear in debug mode (when .debug file is present) -->
<span class="debuglink" id="reload">Reload</span>
<span class="debuglink" id="sources">Sources</span>
<span class="debuglink" id="debug">Debug</span>
<!-- <a title="Default tooltip" rel='tooltip'>Test Tooltip</a> -->
<!-- annoying bug with tooltips on macOS -->
<!-- <script language="javascript">
jQuery(document).ready(function()
{
jQuery("[rel='tooltip']").tooltip({container: 'body'});
})
</script> -->
<script type="text/javascript" src="js/libs/CSInterface.js"></script>
<script type="text/javascript" src="js/libs/jquery.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>