sn-collab-editor 0.1.9 → 0.2.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed56945461291e9ec963c69f3b7c6ffc64964708
|
|
4
|
+
data.tar.gz: c1f8bf9a63a96ada218e0c7167f06db8114771f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abb3eb2fe81340a6c3f37ea41e77d7d8a058d0c57732c1c443b2a940910ec2b48717dc155e3b9f6364e5920cca6e667c35994b8c054bf16368c2398bfbbd519b
|
|
7
|
+
data.tar.gz: 9bba96f688d484fd2fb98817be518d95595f41125f073af96957ca56ba9b89c597e266240da4b96c3c8396b5e1629ce5f6c294a06bf592da28db3d53a21e4e7a
|
|
@@ -49,7 +49,10 @@ html, body {
|
|
|
49
49
|
font-size: 10px;
|
|
50
50
|
margin-bottom: 3px;
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
&.faded {
|
|
53
|
+
opacity: 0.3;
|
|
54
|
+
}
|
|
55
|
+
|
|
53
56
|
|
|
54
57
|
&:hover {
|
|
55
58
|
opacity: 1.0;
|
|
@@ -65,14 +68,32 @@ html, body {
|
|
|
65
68
|
font-size: 10px;
|
|
66
69
|
text-decoration: none;
|
|
67
70
|
|
|
68
|
-
|
|
69
|
-
&:visited { text-decoration: none; color:black; }
|
|
70
71
|
&:hover {
|
|
71
|
-
text-decoration: underline;
|
|
72
72
|
color: black;
|
|
73
|
+
text-decoration: underline;
|
|
73
74
|
}
|
|
74
75
|
}
|
|
75
76
|
}
|
|
77
|
+
a {
|
|
78
|
+
text-decoration: none;
|
|
79
|
+
&:hover {
|
|
80
|
+
color: black;
|
|
81
|
+
text-decoration: underline;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
a:visited { text-decoration: none; color:black; }
|
|
85
|
+
|
|
86
|
+
#footer {
|
|
87
|
+
margin-top: 16px;
|
|
88
|
+
#encryption-status {
|
|
89
|
+
float: left;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
#more-info {
|
|
93
|
+
float: right;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
76
97
|
|
|
77
98
|
* {
|
|
78
99
|
box-sizing: border-box;
|
|
@@ -3,17 +3,30 @@
|
|
|
3
3
|
<div id="wrapper">
|
|
4
4
|
<% if @doc %>
|
|
5
5
|
|
|
6
|
-
<div id="viewing-url-wrapper" class="url-wrapper">
|
|
6
|
+
<div id="viewing-url-wrapper" class="url-wrapper faded">
|
|
7
7
|
<span class="label">Viewing URL</span>:
|
|
8
8
|
<a id="viewing-url" class="url" target="_blank"></a>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
<div id="editing-url-wrapper" class="url-wrapper">
|
|
11
|
+
<div id="editing-url-wrapper" class="url-wrapper faded">
|
|
12
12
|
<span class="label">Editing URL</span>:
|
|
13
13
|
<a id="editing-url" class="url" target="_blank"></a>
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
|
+
<div class="url-wrapper">
|
|
17
|
+
<a class="label url" href="/collab" target="_blank">Create new document</a>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
16
20
|
<textarea id="editor" name="editor"></textarea>
|
|
21
|
+
|
|
22
|
+
<div id="footer">
|
|
23
|
+
<div id="encryption-status" class="url-wrapper faded">
|
|
24
|
+
<span class="label">Encryption status: end-to-end.</span>
|
|
25
|
+
</div>
|
|
26
|
+
<div id="more-info" class="url-wrapper faded">
|
|
27
|
+
<a class="label" href="https://standardnotes.org/extensions/collaborative-editor" target="_blank">More info</a>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
17
30
|
<% else %>
|
|
18
31
|
|
|
19
32
|
<% end %>
|
data/lib/collab/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sn-collab-editor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Standard Notes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|