PluginProbe
Simple Org Chart / trunk
Simple Org Chart vtrunk
trunk 2.3.6
simple-org-chart / css / custom.css

custom.css in Simple Org Chart trunk, at css/custom.css

203 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /* general */
3 .clear {
4 clear: both;
5 }
6
7 .select2-container {
8 min-width: 200px;
9 }
10
11 /* list stuff */
12 #org{
13 background-color : white;
14 margin : 10px;
15 padding : 10px;
16 }
17
18 #show-list{
19 cursor : pointer;
20 }
21
22 .wp-admin .wrap.orgchart {
23 background: #fff;
24 border-top: 1px solid #eee;
25 box-shadow: 0 0px 8px 3px rgb(230, 232, 233);
26 }
27 .wp-admin div#chart {
28 min-height: 60vh;
29 }
30 /* Custom chart styling */
31 .jOrgChart {
32 margin : 10px;
33 padding : 20px;
34 }
35
36 /* Custom node styling */
37 .jOrgChart .node {
38 position: unset;
39 box-shadow: 0 1px 2px 1px rgba(230, 232, 233, 0.57);
40 font-size: 14px;
41 background-color: #FFFFFF;
42 border: 0px solid white;
43 color: #404040;
44 }
45 .node p{
46 font-family : tahoma;
47 font-size : 10px;
48 line-height : 11px;
49 padding : 2px;
50 }
51
52
53 .jOrgChart small {
54
55 font-style: italic;
56 clear: both;
57 display: block;
58 }
59
60
61 .jOrgChart .node a {
62 text-decoration: none;
63 color: inherit;
64 box-shadow: 0 0px 0 0 currentColor;
65 position: relative;
66 }
67
68
69 .jOrgChart .overlay1 {
70 z-index: 9999999;
71 position: fixed;
72 top: 0;
73 bottom: 0;
74 left: 0;
75 right: 0;
76 background: rgba(0, 0, 0, 0.7);
77 transition: opacity 500ms;
78 visibility: hidden;
79 opacity: 0;
80 }
81 .jOrgChart .overlay1:target {
82 visibility: visible;
83 opacity: 1;
84 }
85
86 .jOrgChart .popup1 {
87 margin: 70px auto;
88 padding: 20px;
89 background: #fff;
90 border-radius: 0;
91 width: 300px;
92 position: relative;
93 transition: all 1s ease-in-out;
94 text-align: left;
95 }
96
97 .jOrgChart .popup1 h2 {
98 margin-top: 0;
99 color: #333;
100 font-family: Tahoma, Arial, sans-serif;
101 }
102 .jOrgChart .popup1 .close1 {
103 line-height: 1;
104 position: absolute;
105 bottom: -20px;
106 right: 0;
107 transition: all 2ms;
108 font-size: 23px;
109 font-weight: normal;
110 text-decoration: none !important;
111 color: #ffffff;
112 box-shadow: 0 0 0;
113 }
114 .jOrgChart .popup1 .close1:hover {
115 color: #06D85F;
116 }
117 .jOrgChart .popup1 .content1 {
118 max-height: 30%;
119 overflow: auto;
120 }
121
122 @media screen and (max-width: 700px){
123
124 .jOrgChart .popup1{
125 width: 70%;
126 }
127 }
128
129 .oinline { display: inline-block;
130 padding-left: 10px;
131 padding-top: 20px;}
132
133 .org_bottom {
134 margin-top: 40px;
135 padding: 6px;
136 border-top: 1px solid #eee;
137 }
138 .org_bottom .submit {
139 float: right;
140 padding: 0;
141 margin: 0;
142 }
143 .chart_saved {
144 z-index: 9999;
145 position: fixed;
146 top: 0;
147 bottom: 0;
148 right: 0;
149 left: 0;
150 background: rgba(0, 0, 0, 0.7);
151
152 }
153
154 .chart_saved span {
155 border-radius: 4px;
156 background: #fff;
157 width: 200px;
158 text-align: center;
159 margin: 50vh auto;
160 position: relative;
161 display: block;
162 padding: 10px;
163 font-size: 17px;
164 }
165
166
167 span.oblock {
168 line-height: 1.5;
169 display: block;
170 font-size: 14px;
171 margin: 0px 0;
172 background: #fff;
173 padding: 10px;
174 border-bottom: 1px solid #f1f1f1;
175 }
176
177 .jOrgChart .close {
178 opacity: 0.3;
179 padding-top: 16px;
180 display: block;
181 }
182 .jOrgChart .close:hover {
183 opacity: 1;
184 }
185 .jOrgChart .close:before, .close:after {
186 position: absolute;
187 left: 17px;
188 content: ' ';
189 height: 11px;
190 width: 2px;
191 background-color: #e02626;
192 bottom: 3px;
193 }
194 .jOrgChart .close:before {
195 transform: rotate(45deg);
196 }
197 .jOrgChart .close:after {
198 transform: rotate(-45deg);
199 }
200
201 div#s2id_comboBox, div#s2id_user_dropdown {
202 width: 150px;
203 }