forked from anistuhin/pathwise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
quick.html
140 lines (132 loc) · 4.82 KB
/
quick.html
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="sidebar.css" />
<script src="sidebar.js"></script>
<title>Quick:Left Sidebar</title>
</head>
<body>
<div id="comments-column" class="utilities">
<ul id="comments-column-toggler">
<!-- left sidebar toggle tabs -->
<li
class="comments-template-toggle custom-cursor-on-hover comments-toggle-text"
>
Quick comments
</li>
<!-- vertical line -->
<div class="vl"></div>
<!-- vertical line -->
<li
class="comments-list-toggle custom-cursor-on-hover comments-toggle-text"
>
Existing comments
</li>
</ul>
<div class="quick-comments-container">
<!-- left sidebar toggle contents -->
<div id="comments-category">
<div id="quick-category-container" class="sort-container">
<!-- -------- category: dropdown ------ -->
<div id="quick-category" class="sort-text">Category:</div>
<div class="sort-dropdown-container">
<div class="sort-dropdown">
<button onclick="myFunction()" class="sort-dropdown-option">
Emotional Connection
<img src="assets/images/flori/chevron.png" class="arrow" />
</button>
<div id="myDropdown" class="dropdown-content">
<a href="#">Summary</a>
<a href="#">Vocabulary Support</a>
<a href="#">Personal Connection</a>
<a href="#">Emotional Connection</a>
</div>
</div>
</div>
</div>
</div>
<!-- -------- comments list ------ -->
<div id="quick-comments-list">
<div class="comment-bubble-container">
<div class="comment-bubble">
<div class="comment-bubble-text-container">
<div id="create-your-own" class="quick-comment-text">
[ Create Your Own Comment ]
</div>
</div>
<img
class="quick-comment-bubble-tail"
src="assets/images/flori/comment-tail.png"
/>
</div>
</div>
<div class="comment-bubble-container">
<div class="comment-bubble">
<div id="summary-title" class="comment-title">Summary</div>
<div class="comment-bubble-text-container">
<div class="quick-comment-text">
The passage is essentially communicating this brand new idea.
</div>
</div>
<img
class="quick-comment-bubble-tail"
src="assets/images/flori/comment-tail.png"
/>
</div>
</div>
<div class="comment-bubble-container">
<div class="comment-bubble">
<div id="vocab-title" class="comment-title">
Vocabulary Support
</div>
<div class="comment-bubble-text-container">
<div class="quick-comment-text">
What does this word mean in this context?
</div>
</div>
<img
class="quick-comment-bubble-tail"
src="assets/images/flori/comment-tail.png"
/>
</div>
</div>
<div class="comment-bubble-container">
<div class="comment-bubble">
<div id="personal-title" class="comment-title">
Personal Connection
</div>
<div class="comment-bubble-text-container">
<div class="quick-comment-text">
This relates to our classroom lesson from yesterday.
</div>
</div>
<img
class="quick-comment-bubble-tail"
src="assets/images/flori/comment-tail.png"
/>
</div>
</div>
<div class="comment-bubble-container">
<div class="comment-bubble">
<div id="emotional-title" class="comment-title">
Emotional Connection
</div>
<div class="comment-bubble-text-container">
<div class="quick-comment-text">
Isn't it so touching to read a sentence like this? It feels
heartwarming.
</div>
</div>
<img
class="quick-comment-bubble-tail"
src="assets/images/flori/comment-tail.png"
/>
</div>
</div>
</div>
</div>
</div>
</body>
</html>