mermaid_html 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +49 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/mermaid_html +55 -0
- data/lib/mermaid_html.rb +13 -0
- data/lib/mermaid_html/mermaid-font.css +4 -0
- data/lib/mermaid_html/mermaid-theme.js +10 -0
- data/lib/mermaid_html/mermaid.css +346 -0
- data/lib/mermaid_html/mermaid.js +71922 -0
- data/lib/mermaid_html/mermaid_files.rb +33 -0
- data/lib/mermaid_html/mermaid_template.html.erb +15 -0
- data/lib/mermaid_html/version.rb +3 -0
- data/mermaid_html.gemspec +31 -0
- metadata +137 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1a1837ed2ebbab78ae5b1698a51d47ba5e9095b8
|
4
|
+
data.tar.gz: 002f19758190fda1636d0fbd4a224e968a966b19
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5b68273d1b26964e9cee701c44a38b109e747a77032cd4b67ee4e39ad55e424b15e6f58b8f8fe531824b3e389d4023dc0c46cac1f775f7d6423da436e8b05127
|
7
|
+
data.tar.gz: d940008038a48b33184dc0d6ebec5e55db003507af56f073b352680c7c1d23adc954a023ff0e0f2ba1f7e4a98ee1370c549638ff747d20128df0cb85402b8592
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at TODO: Write your email address. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Samuel Garratt
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# MermaidHtml
|
2
|
+
|
3
|
+
This is a simple gem to create an html file that uses cucumber js.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'mermaid_html'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install mermaid_html
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
`mermaid_html file SCHEMA --css=tmp/css --js=tmp/js`
|
24
|
+
where SCHEMA is the name of a file to convert.
|
25
|
+
The css and js options are by default 'css' and 'js' respectively. They refer to the folders mermaid js and css will be installed into.
|
26
|
+
|
27
|
+
If you want the file and it's css and js to be in a folder relative to the current one, use the `--out` parameter.
|
28
|
+
|
29
|
+
For example
|
30
|
+
|
31
|
+
`mermaid_html file SCHEMA --out=tmp`
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
36
|
+
|
37
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitLab at https://gitlab.com/samuel-garratt/mermaid_html. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
46
|
+
|
47
|
+
## Code of Conduct
|
48
|
+
|
49
|
+
Everyone interacting in the MermaidHtml project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://gitlab.com/samuel-garratt/mermaid_html/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mermaid_html"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/mermaid_html
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
5
|
+
require 'mermaid_html'
|
6
|
+
require 'fileutils'
|
7
|
+
|
8
|
+
# Create folder if there's not a file already there.
|
9
|
+
# Will create parent folder if necessary.
|
10
|
+
# @param [String] folder Folder to create
|
11
|
+
def create_folder(folder)
|
12
|
+
if File.exist? folder
|
13
|
+
unless File.directory? folder
|
14
|
+
warn "!! #{folder} already exists and is not a directory"
|
15
|
+
end
|
16
|
+
else
|
17
|
+
FileUtils.mkdir_p folder
|
18
|
+
puts "Created folder: #{folder}/"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# @param [String] filename Name of the file to create
|
23
|
+
# @param [String] content Content to place inside file
|
24
|
+
def create_file(filename: nil, content: nil)
|
25
|
+
raise 'Need to pass filename' unless filename
|
26
|
+
raise 'Need to pass contents to insert into file' unless content
|
27
|
+
create_folder File.split(filename).first
|
28
|
+
if File.exist? filename
|
29
|
+
old_content = File.read(filename)
|
30
|
+
puts "Updated #{filename}" if old_content != content
|
31
|
+
else
|
32
|
+
puts 'Created: ' + filename
|
33
|
+
end
|
34
|
+
File.open(filename, 'w') { |f| f.puts content }
|
35
|
+
end
|
36
|
+
|
37
|
+
class Exe < Thor
|
38
|
+
|
39
|
+
include MermaidHtml::MermaidFiles
|
40
|
+
|
41
|
+
option :css, default: 'css', banner: 'What folder to put css in'
|
42
|
+
option :js, default: 'js', banner: 'What folder to put js in'
|
43
|
+
option :out, default: '.', banner: 'Output folder relative to current'
|
44
|
+
desc 'file [file_name]', 'Create Mermaid html from schema file'
|
45
|
+
def file(filename)
|
46
|
+
MermaidHtml.css_folder = options[:css]
|
47
|
+
MermaidHtml.js_folder = options[:js]
|
48
|
+
create_file filename: File.join(options[:out], MermaidHtml.css_folder, 'mermaid.css'), content: mermaid_css
|
49
|
+
create_file filename: File.join(options[:out], MermaidHtml.css_folder, 'mermaid-font.css'), content: mermaid_font
|
50
|
+
create_file filename: File.join(options[:out], MermaidHtml.js_folder, 'mermaid.js'), content: mermaid_js
|
51
|
+
create_file filename: File.join(options[:out], "#{filename}.html"), content: mermaid_html(File.read(filename))
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
Exe.start(ARGV)
|
data/lib/mermaid_html.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'mermaid_html/version'
|
2
|
+
require 'mermaid_html/mermaid_files'
|
3
|
+
|
4
|
+
module MermaidHtml
|
5
|
+
@css_folder = 'css'
|
6
|
+
@js_folder = 'js'
|
7
|
+
class << self
|
8
|
+
# Folder css will be added to
|
9
|
+
attr_accessor :css_folder
|
10
|
+
# Folder js will be added to
|
11
|
+
attr_accessor :js_folder
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
|
2
|
+
mermaid.initialize({
|
3
|
+
theme: 'forest',
|
4
|
+
// themeCSS: '.node rect { fill: red; }',
|
5
|
+
logLevel: 3,
|
6
|
+
flowchart: { curve: 'linear' },
|
7
|
+
gantt: { axisFormat: '%m/%d/%Y' },
|
8
|
+
sequence: { actorMargin: 50 },
|
9
|
+
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
10
|
+
});
|
@@ -0,0 +1,346 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
#mermaid-1537387603584 .label {
|
5
|
+
font-family: 'trebuchet ms', verdana, arial;
|
6
|
+
color: #333; }
|
7
|
+
|
8
|
+
#mermaid-1537387603584 .node rect,
|
9
|
+
#mermaid-1537387603584 .node circle,
|
10
|
+
#mermaid-1537387603584 .node ellipse,
|
11
|
+
#mermaid-1537387603584 .node polygon {
|
12
|
+
fill: #cde498;
|
13
|
+
stroke: #13540c;
|
14
|
+
stroke-width: 1px; }
|
15
|
+
|
16
|
+
#mermaid-1537387603584 .node.clickable {
|
17
|
+
cursor: pointer; }
|
18
|
+
|
19
|
+
#mermaid-1537387603584 .arrowheadPath {
|
20
|
+
fill: green; }
|
21
|
+
|
22
|
+
#mermaid-1537387603584 .edgePath .path {
|
23
|
+
stroke: green;
|
24
|
+
stroke-width: 1.5px; }
|
25
|
+
|
26
|
+
#mermaid-1537387603584 .edgeLabel {
|
27
|
+
background-color: #e8e8e8; }
|
28
|
+
|
29
|
+
#mermaid-1537387603584 .cluster rect {
|
30
|
+
fill: #cdffb2 !important;
|
31
|
+
stroke: #6eaa49 !important;
|
32
|
+
stroke-width: 1px !important; }
|
33
|
+
|
34
|
+
#mermaid-1537387603584 .cluster text {
|
35
|
+
fill: #333; }
|
36
|
+
|
37
|
+
#mermaid-1537387603584 div.mermaidTooltip {
|
38
|
+
position: absolute;
|
39
|
+
text-align: center;
|
40
|
+
max-width: 200px;
|
41
|
+
padding: 2px;
|
42
|
+
font-family: 'trebuchet ms', verdana, arial;
|
43
|
+
font-size: 12px;
|
44
|
+
background: #cdffb2;
|
45
|
+
border: 1px solid #6eaa49;
|
46
|
+
border-radius: 2px;
|
47
|
+
pointer-events: none;
|
48
|
+
z-index: 100; }
|
49
|
+
|
50
|
+
#mermaid-1537387603584 .actor {
|
51
|
+
stroke: #13540c;
|
52
|
+
fill: #cde498; }
|
53
|
+
|
54
|
+
#mermaid-1537387603584 text.actor {
|
55
|
+
fill: black;
|
56
|
+
stroke: none; }
|
57
|
+
|
58
|
+
#mermaid-1537387603584 .actor-line {
|
59
|
+
stroke: grey; }
|
60
|
+
|
61
|
+
#mermaid-1537387603584 .messageLine0 {
|
62
|
+
stroke-width: 1.5;
|
63
|
+
stroke-dasharray: '2 2';
|
64
|
+
marker-end: 'url(#arrowhead)';
|
65
|
+
stroke: #333; }
|
66
|
+
|
67
|
+
#mermaid-1537387603584 .messageLine1 {
|
68
|
+
stroke-width: 1.5;
|
69
|
+
stroke-dasharray: '2 2';
|
70
|
+
stroke: #333; }
|
71
|
+
|
72
|
+
#mermaid-1537387603584 #arrowhead {
|
73
|
+
fill: #333; }
|
74
|
+
|
75
|
+
#mermaid-1537387603584 #crosshead path {
|
76
|
+
fill: #333 !important;
|
77
|
+
stroke: #333 !important; }
|
78
|
+
|
79
|
+
#mermaid-1537387603584 .messageText {
|
80
|
+
fill: #333;
|
81
|
+
stroke: none; }
|
82
|
+
|
83
|
+
#mermaid-1537387603584 .labelBox {
|
84
|
+
stroke: #326932;
|
85
|
+
fill: #cde498; }
|
86
|
+
|
87
|
+
#mermaid-1537387603584 .labelText {
|
88
|
+
fill: black;
|
89
|
+
stroke: none; }
|
90
|
+
|
91
|
+
#mermaid-1537387603584 .loopText {
|
92
|
+
fill: black;
|
93
|
+
stroke: none; }
|
94
|
+
|
95
|
+
#mermaid-1537387603584 .loopLine {
|
96
|
+
stroke-width: 2;
|
97
|
+
stroke-dasharray: '2 2';
|
98
|
+
marker-end: 'url(#arrowhead)';
|
99
|
+
stroke: #326932; }
|
100
|
+
|
101
|
+
#mermaid-1537387603584 .note {
|
102
|
+
stroke: #6eaa49;
|
103
|
+
fill: #fff5ad; }
|
104
|
+
|
105
|
+
#mermaid-1537387603584 .noteText {
|
106
|
+
fill: black;
|
107
|
+
stroke: none;
|
108
|
+
font-family: 'trebuchet ms', verdana, arial;
|
109
|
+
font-size: 14px; }
|
110
|
+
|
111
|
+
|
112
|
+
#mermaid-1537387603584 .section {
|
113
|
+
stroke: none;
|
114
|
+
opacity: 0.2; }
|
115
|
+
|
116
|
+
#mermaid-1537387603584 .section0 {
|
117
|
+
fill: #6eaa49; }
|
118
|
+
|
119
|
+
#mermaid-1537387603584 .section2 {
|
120
|
+
fill: #6eaa49; }
|
121
|
+
|
122
|
+
#mermaid-1537387603584 .section1,
|
123
|
+
#mermaid-1537387603584 .section3 {
|
124
|
+
fill: white;
|
125
|
+
opacity: 0.2; }
|
126
|
+
|
127
|
+
#mermaid-1537387603584 .sectionTitle0 {
|
128
|
+
fill: #333; }
|
129
|
+
|
130
|
+
#mermaid-1537387603584 .sectionTitle1 {
|
131
|
+
fill: #333; }
|
132
|
+
|
133
|
+
#mermaid-1537387603584 .sectionTitle2 {
|
134
|
+
fill: #333; }
|
135
|
+
|
136
|
+
#mermaid-1537387603584 .sectionTitle3 {
|
137
|
+
fill: #333; }
|
138
|
+
|
139
|
+
#mermaid-1537387603584 .sectionTitle {
|
140
|
+
text-anchor: start;
|
141
|
+
font-size: 11px;
|
142
|
+
text-height: 14px; }
|
143
|
+
|
144
|
+
|
145
|
+
#mermaid-1537387603584 .grid .tick {
|
146
|
+
stroke: lightgrey;
|
147
|
+
opacity: 0.3;
|
148
|
+
shape-rendering: crispEdges; }
|
149
|
+
|
150
|
+
#mermaid-1537387603584 .grid path {
|
151
|
+
stroke-width: 0; }
|
152
|
+
|
153
|
+
|
154
|
+
#mermaid-1537387603584 .today {
|
155
|
+
fill: none;
|
156
|
+
stroke: red;
|
157
|
+
stroke-width: 2px; }
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
#mermaid-1537387603584 .task {
|
162
|
+
stroke-width: 2; }
|
163
|
+
|
164
|
+
#mermaid-1537387603584 .taskText {
|
165
|
+
text-anchor: middle;
|
166
|
+
font-size: 11px; }
|
167
|
+
|
168
|
+
#mermaid-1537387603584 .taskTextOutsideRight {
|
169
|
+
fill: black;
|
170
|
+
text-anchor: start;
|
171
|
+
font-size: 11px; }
|
172
|
+
|
173
|
+
#mermaid-1537387603584 .taskTextOutsideLeft {
|
174
|
+
fill: black;
|
175
|
+
text-anchor: end;
|
176
|
+
font-size: 11px; }
|
177
|
+
|
178
|
+
|
179
|
+
#mermaid-1537387603584 .taskText0,
|
180
|
+
#mermaid-1537387603584 .taskText1,
|
181
|
+
#mermaid-1537387603584 .taskText2,
|
182
|
+
#mermaid-1537387603584 .taskText3 {
|
183
|
+
fill: white; }
|
184
|
+
|
185
|
+
#mermaid-1537387603584 .task0,
|
186
|
+
#mermaid-1537387603584 .task1,
|
187
|
+
#mermaid-1537387603584 .task2,
|
188
|
+
#mermaid-1537387603584 .task3 {
|
189
|
+
fill: #487e3a;
|
190
|
+
stroke: #13540c; }
|
191
|
+
|
192
|
+
#mermaid-1537387603584 .taskTextOutside0,
|
193
|
+
#mermaid-1537387603584 .taskTextOutside2 {
|
194
|
+
fill: black; }
|
195
|
+
|
196
|
+
#mermaid-1537387603584 .taskTextOutside1,
|
197
|
+
#mermaid-1537387603584 .taskTextOutside3 {
|
198
|
+
fill: black; }
|
199
|
+
|
200
|
+
|
201
|
+
#mermaid-1537387603584 .active0,
|
202
|
+
#mermaid-1537387603584 .active1,
|
203
|
+
#mermaid-1537387603584 .active2,
|
204
|
+
#mermaid-1537387603584 .active3 {
|
205
|
+
fill: #cde498;
|
206
|
+
stroke: #13540c; }
|
207
|
+
|
208
|
+
#mermaid-1537387603584 .activeText0,
|
209
|
+
#mermaid-1537387603584 .activeText1,
|
210
|
+
#mermaid-1537387603584 .activeText2,
|
211
|
+
#mermaid-1537387603584 .activeText3 {
|
212
|
+
fill: black !important; }
|
213
|
+
|
214
|
+
|
215
|
+
#mermaid-1537387603584 .done0,
|
216
|
+
#mermaid-1537387603584 .done1,
|
217
|
+
#mermaid-1537387603584 .done2,
|
218
|
+
#mermaid-1537387603584 .done3 {
|
219
|
+
stroke: grey;
|
220
|
+
fill: lightgrey;
|
221
|
+
stroke-width: 2; }
|
222
|
+
|
223
|
+
#mermaid-1537387603584 .doneText0,
|
224
|
+
#mermaid-1537387603584 .doneText1,
|
225
|
+
#mermaid-1537387603584 .doneText2,
|
226
|
+
#mermaid-1537387603584 .doneText3 {
|
227
|
+
fill: black !important; }
|
228
|
+
|
229
|
+
|
230
|
+
#mermaid-1537387603584 .crit0,
|
231
|
+
#mermaid-1537387603584 .crit1,
|
232
|
+
#mermaid-1537387603584 .crit2,
|
233
|
+
#mermaid-1537387603584 .crit3 {
|
234
|
+
stroke: #ff8888;
|
235
|
+
fill: red;
|
236
|
+
stroke-width: 2; }
|
237
|
+
|
238
|
+
#mermaid-1537387603584 .activeCrit0,
|
239
|
+
#mermaid-1537387603584 .activeCrit1,
|
240
|
+
#mermaid-1537387603584 .activeCrit2,
|
241
|
+
#mermaid-1537387603584 .activeCrit3 {
|
242
|
+
stroke: #ff8888;
|
243
|
+
fill: #cde498;
|
244
|
+
stroke-width: 2; }
|
245
|
+
|
246
|
+
#mermaid-1537387603584 .doneCrit0,
|
247
|
+
#mermaid-1537387603584 .doneCrit1,
|
248
|
+
#mermaid-1537387603584 .doneCrit2,
|
249
|
+
#mermaid-1537387603584 .doneCrit3 {
|
250
|
+
stroke: #ff8888;
|
251
|
+
fill: lightgrey;
|
252
|
+
stroke-width: 2;
|
253
|
+
cursor: pointer;
|
254
|
+
shape-rendering: crispEdges; }
|
255
|
+
|
256
|
+
#mermaid-1537387603584 .doneCritText0,
|
257
|
+
#mermaid-1537387603584 .doneCritText1,
|
258
|
+
#mermaid-1537387603584 .doneCritText2,
|
259
|
+
#mermaid-1537387603584 .doneCritText3 {
|
260
|
+
fill: black !important; }
|
261
|
+
|
262
|
+
#mermaid-1537387603584 .activeCritText0,
|
263
|
+
#mermaid-1537387603584 .activeCritText1,
|
264
|
+
#mermaid-1537387603584 .activeCritText2,
|
265
|
+
#mermaid-1537387603584 .activeCritText3 {
|
266
|
+
fill: black !important; }
|
267
|
+
|
268
|
+
#mermaid-1537387603584 .titleText {
|
269
|
+
text-anchor: middle;
|
270
|
+
font-size: 18px;
|
271
|
+
fill: black; }
|
272
|
+
|
273
|
+
#mermaid-1537387603584 g.classGroup text {
|
274
|
+
fill: #13540c;
|
275
|
+
stroke: none;
|
276
|
+
font-family: 'trebuchet ms', verdana, arial;
|
277
|
+
font-size: 10px; }
|
278
|
+
|
279
|
+
#mermaid-1537387603584 g.classGroup rect {
|
280
|
+
fill: #cde498;
|
281
|
+
stroke: #13540c; }
|
282
|
+
|
283
|
+
#mermaid-1537387603584 g.classGroup line {
|
284
|
+
stroke: #13540c;
|
285
|
+
stroke-width: 1; }
|
286
|
+
|
287
|
+
#mermaid-1537387603584 .classLabel .box {
|
288
|
+
stroke: none;
|
289
|
+
stroke-width: 0;
|
290
|
+
fill: #cde498;
|
291
|
+
opacity: 0.5; }
|
292
|
+
|
293
|
+
#mermaid-1537387603584 .classLabel .label {
|
294
|
+
fill: #13540c;
|
295
|
+
font-size: 10px; }
|
296
|
+
|
297
|
+
#mermaid-1537387603584 .relation {
|
298
|
+
stroke: #13540c;
|
299
|
+
stroke-width: 1;
|
300
|
+
fill: none; }
|
301
|
+
|
302
|
+
#mermaid-1537387603584 #compositionStart {
|
303
|
+
fill: #13540c;
|
304
|
+
stroke: #13540c;
|
305
|
+
stroke-width: 1; }
|
306
|
+
|
307
|
+
#mermaid-1537387603584 #compositionEnd {
|
308
|
+
fill: #13540c;
|
309
|
+
stroke: #13540c;
|
310
|
+
stroke-width: 1; }
|
311
|
+
|
312
|
+
#mermaid-1537387603584 #aggregationStart {
|
313
|
+
fill: #cde498;
|
314
|
+
stroke: #13540c;
|
315
|
+
stroke-width: 1; }
|
316
|
+
|
317
|
+
#mermaid-1537387603584 #aggregationEnd {
|
318
|
+
fill: #cde498;
|
319
|
+
stroke: #13540c;
|
320
|
+
stroke-width: 1; }
|
321
|
+
|
322
|
+
#mermaid-1537387603584 #dependencyStart {
|
323
|
+
fill: #13540c;
|
324
|
+
stroke: #13540c;
|
325
|
+
stroke-width: 1; }
|
326
|
+
|
327
|
+
#mermaid-1537387603584 #dependencyEnd {
|
328
|
+
fill: #13540c;
|
329
|
+
stroke: #13540c;
|
330
|
+
stroke-width: 1; }
|
331
|
+
|
332
|
+
#mermaid-1537387603584 #extensionStart {
|
333
|
+
fill: #13540c;
|
334
|
+
stroke: #13540c;
|
335
|
+
stroke-width: 1; }
|
336
|
+
|
337
|
+
#mermaid-1537387603584 #extensionEnd {
|
338
|
+
fill: #13540c;
|
339
|
+
stroke: #13540c;
|
340
|
+
stroke-width: 1; }
|
341
|
+
|
342
|
+
#mermaid-1537387603584 .commit-id,
|
343
|
+
#mermaid-1537387603584 .commit-msg,
|
344
|
+
#mermaid-1537387603584 .branch-label {
|
345
|
+
fill: lightgrey;
|
346
|
+
color: lightgrey; }
|