wtails 0.0.9 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/wtails/version.rb +1 -1
- data/public/css/style.css +11 -0
- data/views/_init.erb +3 -0
- data/views/single.erb +7 -0
- metadata +4 -4
data/lib/wtails/version.rb
CHANGED
data/public/css/style.css
CHANGED
|
@@ -116,6 +116,7 @@ header div a {
|
|
|
116
116
|
height: 100%;
|
|
117
117
|
top: 0;
|
|
118
118
|
left: 0;
|
|
119
|
+
pointer-events: none;
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
.floating-button {
|
|
@@ -128,6 +129,7 @@ header div a {
|
|
|
128
129
|
text-decoration: none;
|
|
129
130
|
width: 48px;
|
|
130
131
|
height: 48px;
|
|
132
|
+
pointer-events: auto;
|
|
131
133
|
}
|
|
132
134
|
|
|
133
135
|
.floating-button > span {
|
|
@@ -168,3 +170,12 @@ pre {
|
|
|
168
170
|
word-break: break-all;
|
|
169
171
|
border-bottom: thin dashed #777;
|
|
170
172
|
}
|
|
173
|
+
|
|
174
|
+
.terminal hr {
|
|
175
|
+
border: 0;
|
|
176
|
+
height: 1px;
|
|
177
|
+
background-image: -webkit-linear-gradient(left, rgba(200,255,200,0), rgba(200,255,200,0.75), rgba(200,255,200,0));
|
|
178
|
+
background-image: -moz-linear-gradient(left, rgba(200,255,200,0), rgba(200,255,200,0.75), rgba(200,255,200,0));
|
|
179
|
+
background-image: -ms-linear-gradient(left, rgba(200,255,200,0), rgba(200,255,200,0.75), rgba(200,255,200,0));
|
|
180
|
+
background-image: -o-linear-gradient(left, rgba(200,255,200,0), rgba(200,255,200,0.75), rgba(200,255,200,0));
|
|
181
|
+
}
|
data/views/_init.erb
CHANGED
data/views/single.erb
CHANGED
|
@@ -23,9 +23,16 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
</header>
|
|
25
25
|
<div class="main-view">
|
|
26
|
+
<div>
|
|
27
|
+
</div>
|
|
26
28
|
<div class="pane-full">
|
|
27
29
|
<%= erb :_pane, :locals => { :files => files, :terminal_width => 480 } %>
|
|
28
30
|
</div>
|
|
29
31
|
</div>
|
|
30
32
|
</body>
|
|
33
|
+
<script>
|
|
34
|
+
$(function() {
|
|
35
|
+
$('.foobar').click(function(){ console.log("clicked!"); });
|
|
36
|
+
});
|
|
37
|
+
</script>
|
|
31
38
|
</html>
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wtails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
+
- 1
|
|
8
9
|
- 0
|
|
9
|
-
|
|
10
|
-
version: 0.0.9
|
|
10
|
+
version: 0.1.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Naoyuki HIRAYAMA
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2013-
|
|
18
|
+
date: 2013-02-08 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: eventmachine
|