Skip to content

Commit 98b2834

Browse files
committed
readding some libraries
1 parent 5e451a1 commit 98b2834

File tree

4,055 files changed

+255758
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,055 files changed

+255758
-0
lines changed

jquerytaskflowchart/LICENSE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
This is **multi-licensed**. You may choose to use it under **one of the following licenses**:
2+
3+
- **BSD 3-Clause License** or
4+
- **Apache License 2.0** or
5+
- **GNU LGPL v3** or
6+
- **[HLNC License](http://bloxtor.com/LICENSE_HLNC.md)**
7+
8+
Select the license that best fits your needs.
9+
10+
**This is 100% open to your needs!**
11+
12+
© 2025 [Bloxtor](http://bloxtor.com) and [Joao Pinto](http://jplpinto.com)

jquerytaskflowchart/README.md

Lines changed: 574 additions & 0 deletions
Large diffs are not rendered by default.

jquerytaskflowchart/css/print.css

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/*
2+
* Copyright (c) 2025 Bloxtor (http://bloxtor.com) and Joao Pinto (http://jplpinto.com)
3+
*
4+
* Multi-licensed: BSD 3-Clause | Apache 2.0 | GNU LGPL v3 | HLNC License (http://bloxtor.com/LICENSE_HLNC.md)
5+
* Choose one license that best fits your needs.
6+
*
7+
* Original JQuery Task flow Chart Repo: https://github.com/a19836/jquerytaskflowchart/
8+
* Original Bloxtor Repo: https://github.com/a19836/bloxtor
9+
*
10+
* YOU ARE NOT AUTHORIZED TO MODIFY OR REMOVE ANY PART OF THIS NOTICE!
11+
*/
12+
13+
/* GENERAL */
14+
.taskflowchart {
15+
height:auto !important;
16+
}
17+
.taskflowchart .workflow_menu {
18+
display:none !important;
19+
}
20+
.taskflowchart .tasks_menu {
21+
display:none !important;
22+
}
23+
.taskflowchart .tasks_menu_hide {
24+
display:none !important;
25+
}
26+
.taskflowchart .tasks_flow {
27+
top:0px !important;
28+
left:0px !important;
29+
width:100% !important;
30+
height:100% !important;
31+
overflow:visible !important;
32+
overflow-y:visible !important;
33+
overflow-x:visible !important;
34+
35+
border:0;
36+
}
37+
38+
.taskflowchart .tasks_flow .task,
39+
.taskflowchart .task.is_start_task .start_task_overlay {
40+
box-shadow:none !important;
41+
-o-box-shadow:none !important;
42+
-webkit-box-shadow:none !important;
43+
-moz-box-shadow:none !important;
44+
45+
/* For IE */
46+
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(enabled=false)" !important;
47+
filter: progid:DXImageTransform.Microsoft.Shadow(enabled=false) !important;
48+
}
49+
50+
.taskflowchart .tasks_flow .task .info *,
51+
.taskflowchart .tasks_flow .task .eps * {
52+
opacity:1 !important;
53+
-ms-filter: alpha(opacity=100) !important;
54+
filter: alpha(opacity=100) !important;
55+
}
56+
57+
/* MENUS */
58+
.task_context_menu {
59+
display:none !important;
60+
}
61+
.connection_context_menu {
62+
display:none !important;
63+
}
64+
65+
/* PROPERTIES */
66+
.selected_task_properties {
67+
display:none !important;
68+
}
69+
.selected_connection_properties {
70+
display:none !important;
71+
}
72+
.tasks_properties {
73+
display:none !important;
74+
}
75+
76+
.scroll {
77+
overflow-y:visible !important;
78+
overflow-x:visible !important;
79+
}

0 commit comments

Comments
 (0)