Version Description
Wordpress Multisite compatible
Download this release
Release Info
Developer | Blog2Social |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 5.8.0 |
Comparing to | |
See all releases |
Code changes from version 5.7.2 to 5.8.0
- assets/css/b2s/calendar.css +309 -309
- assets/css/b2s/curation.css +103 -103
- assets/css/b2s/network.css +613 -605
- assets/css/b2s/post.approve.css +305 -305
- assets/css/b2s/post.css +43 -39
- assets/css/b2s/post.draft.css +2 -2
- assets/css/b2s/post.notice.css +65 -65
- assets/css/b2s/post.publish.css +65 -65
- assets/css/b2s/post.sched.css +312 -312
- assets/css/b2s/premium.css +52 -52
- assets/css/b2s/settings.css +129 -129
- assets/css/b2s/ship.css +855 -847
- assets/css/b2s/support.css +54 -54
- assets/css/b2s/wp/plugin-deactivate.css +144 -144
- assets/css/b2s/wp/post-box.css +253 -253
- assets/css/general.css +7599 -7599
- assets/css/notice.css +45 -45
- assets/css/prg/login.css +26 -26
- assets/css/prg/post.css +28 -28
- assets/css/prg/ship.css +35 -35
- assets/fonts/glyphicons-halflings-regular.svg +287 -287
- assets/js/b2s/calendar.js +49 -20
- assets/js/b2s/curation.draft.js +185 -176
- assets/js/b2s/curation.js +503 -489
- assets/js/b2s/general.js +333 -323
- assets/js/b2s/lib.js +19 -19
- assets/js/b2s/network.js +1380 -1193
- assets/js/b2s/post.js +74 -19
- assets/js/b2s/premium.js +60 -55
- assets/js/b2s/settings.js +629 -590
- assets/js/b2s/ship.js +195 -16
- assets/js/b2s/start.js +290 -280
- assets/js/b2s/support.js +115 -131
assets/css/b2s/calendar.css
CHANGED
@@ -1,309 +1,309 @@
|
|
1 |
-
|
2 |
-
body .fc-state-default{
|
3 |
-
color: #fff;
|
4 |
-
background-color: #337ab7;
|
5 |
-
border-color: #2e6da4;
|
6 |
-
background-image: none;
|
7 |
-
text-shadow: none;
|
8 |
-
box-shadow: none;
|
9 |
-
}
|
10 |
-
body .b2s-calendar-header{
|
11 |
-
display: flex;
|
12 |
-
padding-bottom: 2px;
|
13 |
-
}
|
14 |
-
body .b2s-calendar-body > img{
|
15 |
-
float: right;
|
16 |
-
height: 28px;
|
17 |
-
width: 28px;
|
18 |
-
}
|
19 |
-
body .b2s-calendar-header .fc-content{
|
20 |
-
padding-left: 2px;
|
21 |
-
}
|
22 |
-
body .b2s-calendar-body{
|
23 |
-
background-color: #fff;
|
24 |
-
color: #000;
|
25 |
-
margin-bottom: 1px;
|
26 |
-
border-radius: 2px;
|
27 |
-
padding: 2px;
|
28 |
-
}
|
29 |
-
body .b2s-calendar-body::after{
|
30 |
-
content: "";
|
31 |
-
clear:both;
|
32 |
-
display: block;
|
33 |
-
}
|
34 |
-
body .fc-content{
|
35 |
-
display: block;
|
36 |
-
width: 100%;
|
37 |
-
}
|
38 |
-
body .fc-time{
|
39 |
-
display: block;
|
40 |
-
padding-right: 2px;
|
41 |
-
text-align: right;
|
42 |
-
float:right;
|
43 |
-
}
|
44 |
-
.network-name{
|
45 |
-
font-weight: bold;
|
46 |
-
}
|
47 |
-
.network-profile{
|
48 |
-
margin-bottom: 5px;
|
49 |
-
}
|
50 |
-
.b2s-post-item-thumb {
|
51 |
-
width: 5%;
|
52 |
-
margin-right: 8px;
|
53 |
-
}
|
54 |
-
|
55 |
-
.b2s-post-item-thumb img {
|
56 |
-
border-radius: 50%;
|
57 |
-
width: 48px;
|
58 |
-
}
|
59 |
-
|
60 |
-
.b2s-post-item-details {
|
61 |
-
width: 93%;
|
62 |
-
}
|
63 |
-
|
64 |
-
.b2s-post-item-details, .b2s-post-item-thumb {
|
65 |
-
float: left;
|
66 |
-
}
|
67 |
-
.b2s-post-item-details h4 {
|
68 |
-
font-size: 16px;
|
69 |
-
font-weight: 600;
|
70 |
-
text-transform: uppercase;
|
71 |
-
margin: 3px 3px 3px 0px;
|
72 |
-
}
|
73 |
-
|
74 |
-
.b2s-post-item-network-deprecated {
|
75 |
-
font-weight: 600;
|
76 |
-
font-size: 14px;
|
77 |
-
margin: 3px 3px 3px 0px;
|
78 |
-
}
|
79 |
-
|
80 |
-
.btn-circle {
|
81 |
-
width: 30px;
|
82 |
-
height: 30px;
|
83 |
-
text-align: center;
|
84 |
-
padding: 6px 0;
|
85 |
-
font-size: 12px;
|
86 |
-
line-height: 1.428571429;
|
87 |
-
border-radius: 15px;
|
88 |
-
}
|
89 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
90 |
-
margin-right: 10px;
|
91 |
-
margin-bottom: 20px;
|
92 |
-
border: 1px dashed #bdbfc2;
|
93 |
-
box-shadow: none;
|
94 |
-
padding: 5px;
|
95 |
-
}
|
96 |
-
textarea.form-control {
|
97 |
-
height: auto;
|
98 |
-
}
|
99 |
-
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
100 |
-
font-size: 14px;
|
101 |
-
font-weight: normal;
|
102 |
-
line-height: 1.125;
|
103 |
-
width: 100%;
|
104 |
-
border: medium none;
|
105 |
-
border-radius: 0;
|
106 |
-
margin-top: 10px;
|
107 |
-
margin-bottom: 10px;
|
108 |
-
font-family: helvetica,arial,sans-serif;
|
109 |
-
}
|
110 |
-
.b2s-post-item-details-item-message-input{
|
111 |
-
min-height: 100px;
|
112 |
-
}
|
113 |
-
.b2s-post-item-details-url-image{
|
114 |
-
cursor: pointer;
|
115 |
-
}
|
116 |
-
.b2s-user-network-settings-post-format-area label > input {
|
117 |
-
visibility: hidden;
|
118 |
-
position: absolute;
|
119 |
-
}
|
120 |
-
.b2s-settings-checked + img {
|
121 |
-
border: 3px solid #79b232 !important;
|
122 |
-
}
|
123 |
-
.b2s-image-item {
|
124 |
-
background-color: #fff;
|
125 |
-
border: 1px solid #ddd;
|
126 |
-
display: block;
|
127 |
-
float: left;
|
128 |
-
height: 200px;
|
129 |
-
line-height: 1.42857;
|
130 |
-
margin-bottom: 15px;
|
131 |
-
margin-left: 15px;
|
132 |
-
margin-top: 15px;
|
133 |
-
overflow: hidden;
|
134 |
-
padding: 4px;
|
135 |
-
transition: border 0.2s ease-in-out 0s;
|
136 |
-
width: 185px;
|
137 |
-
}
|
138 |
-
.b2s-image-item-thumb {
|
139 |
-
height: 150px;
|
140 |
-
}
|
141 |
-
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
142 |
-
margin-right: 5px !important;
|
143 |
-
}
|
144 |
-
.b2s-image-remove-btn {
|
145 |
-
position: absolute;
|
146 |
-
top: -5px;
|
147 |
-
right: 0px;
|
148 |
-
font-weight: 700 !important;
|
149 |
-
}
|
150 |
-
.b2s-calendar-delete{
|
151 |
-
cursor: pointer;
|
152 |
-
}
|
153 |
-
.b2s-btn-label-premium{
|
154 |
-
color: #fff;
|
155 |
-
text-decoration: none !important;
|
156 |
-
cursor: default !important;
|
157 |
-
}
|
158 |
-
.b2s-btn-label-premium:hover{
|
159 |
-
color: #fff;
|
160 |
-
text-decoration: none !important;
|
161 |
-
cursor: default !important;
|
162 |
-
}
|
163 |
-
.b2s-post-item .label-success{
|
164 |
-
display: none;
|
165 |
-
}
|
166 |
-
body .fc-day-grid-event .fc-content{
|
167 |
-
white-space: normal;
|
168 |
-
}
|
169 |
-
|
170 |
-
@media(max-width: 425px)
|
171 |
-
{
|
172 |
-
.b2s-calendar-body{
|
173 |
-
display: none;
|
174 |
-
}
|
175 |
-
}
|
176 |
-
|
177 |
-
@media(max-width: 350px)
|
178 |
-
{
|
179 |
-
body .fc-time{
|
180 |
-
font-size: 8px;
|
181 |
-
}
|
182 |
-
}
|
183 |
-
|
184 |
-
.b2s-loading-area {
|
185 |
-
width: 100% !important;
|
186 |
-
}
|
187 |
-
|
188 |
-
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
189 |
-
margin-bottom: 8px !important;
|
190 |
-
}
|
191 |
-
|
192 |
-
.b2s-post-item-info-area {
|
193 |
-
font-size: 11px !important;
|
194 |
-
}
|
195 |
-
|
196 |
-
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
197 |
-
line-height: 1.5 !important;
|
198 |
-
padding: 0 1px 3px !important;
|
199 |
-
}
|
200 |
-
|
201 |
-
.b2s-load-info-meta-tag-modal{
|
202 |
-
margin-top: 8px !important;
|
203 |
-
display: block !important;
|
204 |
-
margin-right: auto !important;
|
205 |
-
margin-left: auto !important;
|
206 |
-
}
|
207 |
-
|
208 |
-
.b2s-post-item-details-tag-add-div {
|
209 |
-
border: 0px !important;
|
210 |
-
box-shadow: 0px 0px 0px #000 !important;
|
211 |
-
}
|
212 |
-
|
213 |
-
.b2s-post-item-details-tag-input-elem {
|
214 |
-
margin: 2px 4px;
|
215 |
-
max-width: 145px !important;
|
216 |
-
}
|
217 |
-
.b2s-calendar-sched-post-btn{
|
218 |
-
font-size: 11px;
|
219 |
-
float: right;
|
220 |
-
padding: 2px 4px 0px 4px;
|
221 |
-
}
|
222 |
-
|
223 |
-
|
224 |
-
.form-inline {
|
225 |
-
width: 100%;
|
226 |
-
margin-bottom: 20px;
|
227 |
-
}
|
228 |
-
.form-inline .form-group {
|
229 |
-
margin-left: 2px;
|
230 |
-
}
|
231 |
-
|
232 |
-
@media(max-width: 549px) {
|
233 |
-
.b2s-post-btn {
|
234 |
-
width: 100%;
|
235 |
-
}
|
236 |
-
.form-inline button, .form-inline a {
|
237 |
-
width: 100%;
|
238 |
-
margin-bottom: 10px;
|
239 |
-
}
|
240 |
-
}
|
241 |
-
@media(max-width: 767px) {
|
242 |
-
.form-inline {
|
243 |
-
display: none;
|
244 |
-
}
|
245 |
-
.filterHide {
|
246 |
-
display: none;
|
247 |
-
}
|
248 |
-
.form-inline button ,.form-inline a {
|
249 |
-
width: 49%;
|
250 |
-
margin-bottom: 10px;
|
251 |
-
}
|
252 |
-
}
|
253 |
-
|
254 |
-
.b2s-calendar-filter{
|
255 |
-
margin-bottom: 0px !important;
|
256 |
-
}
|
257 |
-
|
258 |
-
.b2s-calendar-filter-network-list > label {
|
259 |
-
padding-left: 8px;
|
260 |
-
padding-top: 35px;
|
261 |
-
}
|
262 |
-
.b2s-calendar-filter-network-list > label:first-child {
|
263 |
-
padding-left: 0px;
|
264 |
-
}
|
265 |
-
|
266 |
-
.b2s-calendar-filter-network-legend-text{
|
267 |
-
font-weight: 600;
|
268 |
-
}
|
269 |
-
.b2s-calendar-filter-network-list > label > input{
|
270 |
-
visibility: hidden;
|
271 |
-
position: absolute;
|
272 |
-
}
|
273 |
-
.b2s-calendar-filter-network-list > label > input + span{
|
274 |
-
cursor:pointer;
|
275 |
-
border:12px solid #ddd;
|
276 |
-
background-color: #ddd;
|
277 |
-
color: #3d3f42;
|
278 |
-
}
|
279 |
-
.b2s-calendar-filter-network-list > label > input:checked + span{
|
280 |
-
border:12px solid #286090;
|
281 |
-
background-color: #286090;
|
282 |
-
color: #fff;
|
283 |
-
}
|
284 |
-
.b2s-calendar-filter-network-list> label > input + span > img{
|
285 |
-
margin-bottom: 5px;
|
286 |
-
}
|
287 |
-
.b2s-calendar-filter-img{
|
288 |
-
width: 32px;
|
289 |
-
}
|
290 |
-
|
291 |
-
.b2s-post-approve-info{
|
292 |
-
display: none;
|
293 |
-
}
|
294 |
-
|
295 |
-
#b2s-btn-select-blog-post, #b2s-btn-select-content-curation{
|
296 |
-
margin-top:10px;
|
297 |
-
}
|
298 |
-
|
299 |
-
.img-width-150{
|
300 |
-
width: 150px;
|
301 |
-
}
|
302 |
-
|
303 |
-
.img-thumbnail{
|
304 |
-
display: block !important;
|
305 |
-
height: auto;
|
306 |
-
margin-left: auto;
|
307 |
-
margin-right: auto;
|
308 |
-
max-height: 100%;
|
309 |
-
}
|
1 |
+
|
2 |
+
body .fc-state-default{
|
3 |
+
color: #fff;
|
4 |
+
background-color: #337ab7;
|
5 |
+
border-color: #2e6da4;
|
6 |
+
background-image: none;
|
7 |
+
text-shadow: none;
|
8 |
+
box-shadow: none;
|
9 |
+
}
|
10 |
+
body .b2s-calendar-header{
|
11 |
+
display: flex;
|
12 |
+
padding-bottom: 2px;
|
13 |
+
}
|
14 |
+
body .b2s-calendar-body > img{
|
15 |
+
float: right;
|
16 |
+
height: 28px;
|
17 |
+
width: 28px;
|
18 |
+
}
|
19 |
+
body .b2s-calendar-header .fc-content{
|
20 |
+
padding-left: 2px;
|
21 |
+
}
|
22 |
+
body .b2s-calendar-body{
|
23 |
+
background-color: #fff;
|
24 |
+
color: #000;
|
25 |
+
margin-bottom: 1px;
|
26 |
+
border-radius: 2px;
|
27 |
+
padding: 2px;
|
28 |
+
}
|
29 |
+
body .b2s-calendar-body::after{
|
30 |
+
content: "";
|
31 |
+
clear:both;
|
32 |
+
display: block;
|
33 |
+
}
|
34 |
+
body .fc-content{
|
35 |
+
display: block;
|
36 |
+
width: 100%;
|
37 |
+
}
|
38 |
+
body .fc-time{
|
39 |
+
display: block;
|
40 |
+
padding-right: 2px;
|
41 |
+
text-align: right;
|
42 |
+
float:right;
|
43 |
+
}
|
44 |
+
.network-name{
|
45 |
+
font-weight: bold;
|
46 |
+
}
|
47 |
+
.network-profile{
|
48 |
+
margin-bottom: 5px;
|
49 |
+
}
|
50 |
+
.b2s-post-item-thumb {
|
51 |
+
width: 5%;
|
52 |
+
margin-right: 8px;
|
53 |
+
}
|
54 |
+
|
55 |
+
.b2s-post-item-thumb img {
|
56 |
+
border-radius: 50%;
|
57 |
+
width: 48px;
|
58 |
+
}
|
59 |
+
|
60 |
+
.b2s-post-item-details {
|
61 |
+
width: 93%;
|
62 |
+
}
|
63 |
+
|
64 |
+
.b2s-post-item-details, .b2s-post-item-thumb {
|
65 |
+
float: left;
|
66 |
+
}
|
67 |
+
.b2s-post-item-details h4 {
|
68 |
+
font-size: 16px;
|
69 |
+
font-weight: 600;
|
70 |
+
text-transform: uppercase;
|
71 |
+
margin: 3px 3px 3px 0px;
|
72 |
+
}
|
73 |
+
|
74 |
+
.b2s-post-item-network-deprecated {
|
75 |
+
font-weight: 600;
|
76 |
+
font-size: 14px;
|
77 |
+
margin: 3px 3px 3px 0px;
|
78 |
+
}
|
79 |
+
|
80 |
+
.btn-circle {
|
81 |
+
width: 30px;
|
82 |
+
height: 30px;
|
83 |
+
text-align: center;
|
84 |
+
padding: 6px 0;
|
85 |
+
font-size: 12px;
|
86 |
+
line-height: 1.428571429;
|
87 |
+
border-radius: 15px;
|
88 |
+
}
|
89 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
90 |
+
margin-right: 10px;
|
91 |
+
margin-bottom: 20px;
|
92 |
+
border: 1px dashed #bdbfc2;
|
93 |
+
box-shadow: none;
|
94 |
+
padding: 5px;
|
95 |
+
}
|
96 |
+
textarea.form-control {
|
97 |
+
height: auto;
|
98 |
+
}
|
99 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
100 |
+
font-size: 14px;
|
101 |
+
font-weight: normal;
|
102 |
+
line-height: 1.125;
|
103 |
+
width: 100%;
|
104 |
+
border: medium none;
|
105 |
+
border-radius: 0;
|
106 |
+
margin-top: 10px;
|
107 |
+
margin-bottom: 10px;
|
108 |
+
font-family: helvetica,arial,sans-serif;
|
109 |
+
}
|
110 |
+
.b2s-post-item-details-item-message-input{
|
111 |
+
min-height: 100px;
|
112 |
+
}
|
113 |
+
.b2s-post-item-details-url-image{
|
114 |
+
cursor: pointer;
|
115 |
+
}
|
116 |
+
.b2s-user-network-settings-post-format-area label > input {
|
117 |
+
visibility: hidden;
|
118 |
+
position: absolute;
|
119 |
+
}
|
120 |
+
.b2s-settings-checked + img {
|
121 |
+
border: 3px solid #79b232 !important;
|
122 |
+
}
|
123 |
+
.b2s-image-item {
|
124 |
+
background-color: #fff;
|
125 |
+
border: 1px solid #ddd;
|
126 |
+
display: block;
|
127 |
+
float: left;
|
128 |
+
height: 200px;
|
129 |
+
line-height: 1.42857;
|
130 |
+
margin-bottom: 15px;
|
131 |
+
margin-left: 15px;
|
132 |
+
margin-top: 15px;
|
133 |
+
overflow: hidden;
|
134 |
+
padding: 4px;
|
135 |
+
transition: border 0.2s ease-in-out 0s;
|
136 |
+
width: 185px;
|
137 |
+
}
|
138 |
+
.b2s-image-item-thumb {
|
139 |
+
height: 150px;
|
140 |
+
}
|
141 |
+
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
142 |
+
margin-right: 5px !important;
|
143 |
+
}
|
144 |
+
.b2s-image-remove-btn {
|
145 |
+
position: absolute;
|
146 |
+
top: -5px;
|
147 |
+
right: 0px;
|
148 |
+
font-weight: 700 !important;
|
149 |
+
}
|
150 |
+
.b2s-calendar-delete{
|
151 |
+
cursor: pointer;
|
152 |
+
}
|
153 |
+
.b2s-btn-label-premium{
|
154 |
+
color: #fff;
|
155 |
+
text-decoration: none !important;
|
156 |
+
cursor: default !important;
|
157 |
+
}
|
158 |
+
.b2s-btn-label-premium:hover{
|
159 |
+
color: #fff;
|
160 |
+
text-decoration: none !important;
|
161 |
+
cursor: default !important;
|
162 |
+
}
|
163 |
+
.b2s-post-item .label-success{
|
164 |
+
display: none;
|
165 |
+
}
|
166 |
+
body .fc-day-grid-event .fc-content{
|
167 |
+
white-space: normal;
|
168 |
+
}
|
169 |
+
|
170 |
+
@media(max-width: 425px)
|
171 |
+
{
|
172 |
+
.b2s-calendar-body{
|
173 |
+
display: none;
|
174 |
+
}
|
175 |
+
}
|
176 |
+
|
177 |
+
@media(max-width: 350px)
|
178 |
+
{
|
179 |
+
body .fc-time{
|
180 |
+
font-size: 8px;
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
.b2s-loading-area {
|
185 |
+
width: 100% !important;
|
186 |
+
}
|
187 |
+
|
188 |
+
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
189 |
+
margin-bottom: 8px !important;
|
190 |
+
}
|
191 |
+
|
192 |
+
.b2s-post-item-info-area {
|
193 |
+
font-size: 11px !important;
|
194 |
+
}
|
195 |
+
|
196 |
+
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
197 |
+
line-height: 1.5 !important;
|
198 |
+
padding: 0 1px 3px !important;
|
199 |
+
}
|
200 |
+
|
201 |
+
.b2s-load-info-meta-tag-modal{
|
202 |
+
margin-top: 8px !important;
|
203 |
+
display: block !important;
|
204 |
+
margin-right: auto !important;
|
205 |
+
margin-left: auto !important;
|
206 |
+
}
|
207 |
+
|
208 |
+
.b2s-post-item-details-tag-add-div {
|
209 |
+
border: 0px !important;
|
210 |
+
box-shadow: 0px 0px 0px #000 !important;
|
211 |
+
}
|
212 |
+
|
213 |
+
.b2s-post-item-details-tag-input-elem {
|
214 |
+
margin: 2px 4px;
|
215 |
+
max-width: 145px !important;
|
216 |
+
}
|
217 |
+
.b2s-calendar-sched-post-btn{
|
218 |
+
font-size: 11px;
|
219 |
+
float: right;
|
220 |
+
padding: 2px 4px 0px 4px;
|
221 |
+
}
|
222 |
+
|
223 |
+
|
224 |
+
.form-inline {
|
225 |
+
width: 100%;
|
226 |
+
margin-bottom: 20px;
|
227 |
+
}
|
228 |
+
.form-inline .form-group {
|
229 |
+
margin-left: 2px;
|
230 |
+
}
|
231 |
+
|
232 |
+
@media(max-width: 549px) {
|
233 |
+
.b2s-post-btn {
|
234 |
+
width: 100%;
|
235 |
+
}
|
236 |
+
.form-inline button, .form-inline a {
|
237 |
+
width: 100%;
|
238 |
+
margin-bottom: 10px;
|
239 |
+
}
|
240 |
+
}
|
241 |
+
@media(max-width: 767px) {
|
242 |
+
.form-inline {
|
243 |
+
display: none;
|
244 |
+
}
|
245 |
+
.filterHide {
|
246 |
+
display: none;
|
247 |
+
}
|
248 |
+
.form-inline button ,.form-inline a {
|
249 |
+
width: 49%;
|
250 |
+
margin-bottom: 10px;
|
251 |
+
}
|
252 |
+
}
|
253 |
+
|
254 |
+
.b2s-calendar-filter{
|
255 |
+
margin-bottom: 0px !important;
|
256 |
+
}
|
257 |
+
|
258 |
+
.b2s-calendar-filter-network-list > label {
|
259 |
+
padding-left: 8px;
|
260 |
+
padding-top: 35px;
|
261 |
+
}
|
262 |
+
.b2s-calendar-filter-network-list > label:first-child {
|
263 |
+
padding-left: 0px;
|
264 |
+
}
|
265 |
+
|
266 |
+
.b2s-calendar-filter-network-legend-text{
|
267 |
+
font-weight: 600;
|
268 |
+
}
|
269 |
+
.b2s-calendar-filter-network-list > label > input{
|
270 |
+
visibility: hidden;
|
271 |
+
position: absolute;
|
272 |
+
}
|
273 |
+
.b2s-calendar-filter-network-list > label > input + span{
|
274 |
+
cursor:pointer;
|
275 |
+
border:12px solid #ddd;
|
276 |
+
background-color: #ddd;
|
277 |
+
color: #3d3f42;
|
278 |
+
}
|
279 |
+
.b2s-calendar-filter-network-list > label > input:checked + span{
|
280 |
+
border:12px solid #286090;
|
281 |
+
background-color: #286090;
|
282 |
+
color: #fff;
|
283 |
+
}
|
284 |
+
.b2s-calendar-filter-network-list> label > input + span > img{
|
285 |
+
margin-bottom: 5px;
|
286 |
+
}
|
287 |
+
.b2s-calendar-filter-img{
|
288 |
+
width: 32px;
|
289 |
+
}
|
290 |
+
|
291 |
+
.b2s-post-approve-info{
|
292 |
+
display: none;
|
293 |
+
}
|
294 |
+
|
295 |
+
#b2s-btn-select-blog-post, #b2s-btn-select-content-curation{
|
296 |
+
margin-top:10px;
|
297 |
+
}
|
298 |
+
|
299 |
+
.img-width-150{
|
300 |
+
width: 150px;
|
301 |
+
}
|
302 |
+
|
303 |
+
.img-thumbnail{
|
304 |
+
display: block !important;
|
305 |
+
height: auto;
|
306 |
+
margin-left: auto;
|
307 |
+
margin-right: auto;
|
308 |
+
max-height: 100%;
|
309 |
+
}
|
assets/css/b2s/curation.css
CHANGED
@@ -1,104 +1,104 @@
|
|
1 |
-
.b2s-curation-input-area-info-header-text{
|
2 |
-
margin: 15px 0 10px !important;
|
3 |
-
font-style: normal;
|
4 |
-
font-weight: normal;
|
5 |
-
font-size: 16px;
|
6 |
-
color: #5d5d5d;
|
7 |
-
}
|
8 |
-
|
9 |
-
.b2s-color-text-red{
|
10 |
-
color: #f14242 !important;
|
11 |
-
}
|
12 |
-
|
13 |
-
.b2s-btn-curation-continue{
|
14 |
-
font-weight: 600 !important;
|
15 |
-
letter-spacing: .1em;
|
16 |
-
text-transform: uppercase;
|
17 |
-
font-size: 12px !important;
|
18 |
-
}
|
19 |
-
|
20 |
-
.b2s-curation-input-area-btn{
|
21 |
-
margin: 25px 0 0;
|
22 |
-
}
|
23 |
-
|
24 |
-
#b2s-curation-input-url-help, .b2s-curation-result-area{
|
25 |
-
display: none;
|
26 |
-
}
|
27 |
-
|
28 |
-
.b2s-loading-area {
|
29 |
-
width: 100% !important;
|
30 |
-
}
|
31 |
-
|
32 |
-
.b2s-btn-change-url-preview{
|
33 |
-
cursor: pointer;
|
34 |
-
}
|
35 |
-
#b2s-curation-no-review-info, #b2s-curation-no-auth-info, .b2s-post-curation-ship-date-area, #b2s-curation-no-data-info, #b2s-curation-saved-draft-info{
|
36 |
-
display: none;
|
37 |
-
}
|
38 |
-
|
39 |
-
.b2s-post-item-details-preview-url{
|
40 |
-
word-wrap: break-word;
|
41 |
-
}
|
42 |
-
|
43 |
-
.b2s-post-item-details-preview-title{
|
44 |
-
font-weight: 600;
|
45 |
-
font-size: 14px;
|
46 |
-
}
|
47 |
-
.b2s-post-item-details-preview-desc{
|
48 |
-
font-size: 12px;
|
49 |
-
}
|
50 |
-
|
51 |
-
#b2s-post-curation-twitter-select option:disabled {
|
52 |
-
color: #d54e21;
|
53 |
-
opacity: 0.2;
|
54 |
-
}
|
55 |
-
|
56 |
-
|
57 |
-
.b2s-post-item-area {
|
58 |
-
width: 100%;
|
59 |
-
}
|
60 |
-
|
61 |
-
.b2s-post-item-thumb {
|
62 |
-
width: 5%;
|
63 |
-
margin-right: 8px;
|
64 |
-
}
|
65 |
-
.b2s-post-item-details, .b2s-post-item-thumb {
|
66 |
-
float: left;
|
67 |
-
}
|
68 |
-
.b2s-post-item-details {
|
69 |
-
width: 93%;
|
70 |
-
}
|
71 |
-
|
72 |
-
.b2s-post-item-thumb img {
|
73 |
-
border-radius: 50%;
|
74 |
-
width: 48px;
|
75 |
-
}
|
76 |
-
|
77 |
-
.b2s-post-item-details h4 {
|
78 |
-
font-size: 16px;
|
79 |
-
font-weight: 600;
|
80 |
-
text-transform: uppercase;
|
81 |
-
margin: 3px 3px 3px 0px;
|
82 |
-
}
|
83 |
-
|
84 |
-
.b2s-post-item-network-deprecated {
|
85 |
-
font-weight: 600;
|
86 |
-
font-size: 14px;
|
87 |
-
margin: 3px 3px 3px 0px;
|
88 |
-
}
|
89 |
-
|
90 |
-
.b2s-post-item-details p {
|
91 |
-
font-size: 12px;
|
92 |
-
}
|
93 |
-
|
94 |
-
.b2s-post-item-details-message-result {
|
95 |
-
margin-top: 2px;
|
96 |
-
}
|
97 |
-
|
98 |
-
.b2s-post-curation-ship-date[readonly]{
|
99 |
-
background-color: #fff !important;
|
100 |
-
}
|
101 |
-
|
102 |
-
#b2s-btn-curation-draft {
|
103 |
-
margin-left: 10px;
|
104 |
}
|
1 |
+
.b2s-curation-input-area-info-header-text{
|
2 |
+
margin: 15px 0 10px !important;
|
3 |
+
font-style: normal;
|
4 |
+
font-weight: normal;
|
5 |
+
font-size: 16px;
|
6 |
+
color: #5d5d5d;
|
7 |
+
}
|
8 |
+
|
9 |
+
.b2s-color-text-red{
|
10 |
+
color: #f14242 !important;
|
11 |
+
}
|
12 |
+
|
13 |
+
.b2s-btn-curation-continue{
|
14 |
+
font-weight: 600 !important;
|
15 |
+
letter-spacing: .1em;
|
16 |
+
text-transform: uppercase;
|
17 |
+
font-size: 12px !important;
|
18 |
+
}
|
19 |
+
|
20 |
+
.b2s-curation-input-area-btn{
|
21 |
+
margin: 25px 0 0;
|
22 |
+
}
|
23 |
+
|
24 |
+
#b2s-curation-input-url-help, .b2s-curation-result-area{
|
25 |
+
display: none;
|
26 |
+
}
|
27 |
+
|
28 |
+
.b2s-loading-area {
|
29 |
+
width: 100% !important;
|
30 |
+
}
|
31 |
+
|
32 |
+
.b2s-btn-change-url-preview{
|
33 |
+
cursor: pointer;
|
34 |
+
}
|
35 |
+
#b2s-curation-no-review-info, #b2s-curation-no-auth-info, .b2s-post-curation-ship-date-area, #b2s-curation-no-data-info, #b2s-curation-saved-draft-info{
|
36 |
+
display: none;
|
37 |
+
}
|
38 |
+
|
39 |
+
.b2s-post-item-details-preview-url{
|
40 |
+
word-wrap: break-word;
|
41 |
+
}
|
42 |
+
|
43 |
+
.b2s-post-item-details-preview-title{
|
44 |
+
font-weight: 600;
|
45 |
+
font-size: 14px;
|
46 |
+
}
|
47 |
+
.b2s-post-item-details-preview-desc{
|
48 |
+
font-size: 12px;
|
49 |
+
}
|
50 |
+
|
51 |
+
#b2s-post-curation-twitter-select option:disabled {
|
52 |
+
color: #d54e21;
|
53 |
+
opacity: 0.2;
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
.b2s-post-item-area {
|
58 |
+
width: 100%;
|
59 |
+
}
|
60 |
+
|
61 |
+
.b2s-post-item-thumb {
|
62 |
+
width: 5%;
|
63 |
+
margin-right: 8px;
|
64 |
+
}
|
65 |
+
.b2s-post-item-details, .b2s-post-item-thumb {
|
66 |
+
float: left;
|
67 |
+
}
|
68 |
+
.b2s-post-item-details {
|
69 |
+
width: 93%;
|
70 |
+
}
|
71 |
+
|
72 |
+
.b2s-post-item-thumb img {
|
73 |
+
border-radius: 50%;
|
74 |
+
width: 48px;
|
75 |
+
}
|
76 |
+
|
77 |
+
.b2s-post-item-details h4 {
|
78 |
+
font-size: 16px;
|
79 |
+
font-weight: 600;
|
80 |
+
text-transform: uppercase;
|
81 |
+
margin: 3px 3px 3px 0px;
|
82 |
+
}
|
83 |
+
|
84 |
+
.b2s-post-item-network-deprecated {
|
85 |
+
font-weight: 600;
|
86 |
+
font-size: 14px;
|
87 |
+
margin: 3px 3px 3px 0px;
|
88 |
+
}
|
89 |
+
|
90 |
+
.b2s-post-item-details p {
|
91 |
+
font-size: 12px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.b2s-post-item-details-message-result {
|
95 |
+
margin-top: 2px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.b2s-post-curation-ship-date[readonly]{
|
99 |
+
background-color: #fff !important;
|
100 |
+
}
|
101 |
+
|
102 |
+
#b2s-btn-curation-draft {
|
103 |
+
margin-left: 10px;
|
104 |
}
|
assets/css/b2s/network.css
CHANGED
@@ -1,606 +1,614 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
|
3 |
-
.b2s-loading-area-modify-collection{
|
4 |
-
text-align: center;
|
5 |
-
}
|
6 |
-
|
7 |
-
.list-group-item{
|
8 |
-
border: 0px !important;
|
9 |
-
}
|
10 |
-
@media(max-width: 767px) {
|
11 |
-
.form-inline {
|
12 |
-
display: none;
|
13 |
-
}
|
14 |
-
.filterHide {
|
15 |
-
display: none;
|
16 |
-
}
|
17 |
-
.form-inline button {
|
18 |
-
width: 100%;
|
19 |
-
margin-bottom: 10px;
|
20 |
-
}
|
21 |
-
}
|
22 |
-
|
23 |
-
@media(max-width: 450px) {
|
24 |
-
.add-padding-left{
|
25 |
-
padding: 0px !important;
|
26 |
-
}
|
27 |
-
}
|
28 |
-
|
29 |
-
.error{
|
30 |
-
border: 1px solid #FF0000 !important;
|
31 |
-
}
|
32 |
-
.b2s-network-auth-btn{
|
33 |
-
margin-left: 2px;
|
34 |
-
line-height: 2;
|
35 |
-
}
|
36 |
-
|
37 |
-
.b2s-network-item-auth-list-btn-delete{
|
38 |
-
line-height: 2;
|
39 |
-
}
|
40 |
-
|
41 |
-
.b2s-network-get-more-btn{
|
42 |
-
text-decoration: underline;
|
43 |
-
}
|
44 |
-
.b2s-network-auth-count{
|
45 |
-
font-weight: 700;
|
46 |
-
line-height: 1.5;
|
47 |
-
}
|
48 |
-
|
49 |
-
.b2s-sched-manager-title{
|
50 |
-
font-weight: 700;
|
51 |
-
line-height: 1.5;
|
52 |
-
padding-right: 165px;
|
53 |
-
}
|
54 |
-
|
55 |
-
.b2s-sched-manager-time-area{
|
56 |
-
width: 150px;
|
57 |
-
margin-right: -35px;
|
58 |
-
}
|
59 |
-
|
60 |
-
.b2s-sched-manager-add-padding{
|
61 |
-
margin-right: -13px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.b2s-add-padding-network-refresh{
|
65 |
-
padding: 4px 7px;
|
66 |
-
}
|
67 |
-
|
68 |
-
.b2s-add-padding-network-team{
|
69 |
-
padding: 4px 3px;
|
70 |
-
line-height: 2;
|
71 |
-
}
|
72 |
-
|
73 |
-
.b2s-sched-manager-best-time-info{
|
74 |
-
padding-left: 15px;
|
75 |
-
font-size: 12px;
|
76 |
-
}
|
77 |
-
|
78 |
-
.b2s-network-time-manager-area{
|
79 |
-
padding-right: 8px;
|
80 |
-
}
|
81 |
-
|
82 |
-
.b2s-add-padding-network-edit{
|
83 |
-
padding: 7px 4px;
|
84 |
-
}
|
85 |
-
.b2s-network-mandant-area{
|
86 |
-
margin-top: -7px !important;
|
87 |
-
}
|
88 |
-
|
89 |
-
.b2s-add-padding-network-delete{
|
90 |
-
padding: 4px 5px;
|
91 |
-
}
|
92 |
-
|
93 |
-
.b2s-sched-manager-day-area{
|
94 |
-
width: 150px;
|
95 |
-
padding-top: 2px;
|
96 |
-
}
|
97 |
-
|
98 |
-
.b2s-sched-manager-premium-area{
|
99 |
-
width: 195px;
|
100 |
-
padding-top: 5px;
|
101 |
-
}
|
102 |
-
|
103 |
-
.b2s-settings-sched-item-input-time, .b2s-settings-sched-item-input-day{
|
104 |
-
max-width: 90px;
|
105 |
-
}
|
106 |
-
|
107 |
-
.b2s-network-mandant-select{
|
108 |
-
min-width: 200px;
|
109 |
-
}
|
110 |
-
|
111 |
-
.b2s-network-mandant-name{
|
112 |
-
font-size: 12px;
|
113 |
-
font-style: italic;
|
114 |
-
color: #777;
|
115 |
-
font-weight: normal;
|
116 |
-
|
117 |
-
}
|
118 |
-
|
119 |
-
.b2s-network-approved-from{
|
120 |
-
font-size: 12px;
|
121 |
-
font-style: italic;
|
122 |
-
color: #777;
|
123 |
-
font-weight: normal;
|
124 |
-
|
125 |
-
}
|
126 |
-
|
127 |
-
.b2s-network-item-auth-list{
|
128 |
-
padding-top:6px;
|
129 |
-
font-size: 0.80rem !important;
|
130 |
-
}
|
131 |
-
|
132 |
-
.b2s-network-auth-list-info{
|
133 |
-
font-weight: 700;
|
134 |
-
}
|
135 |
-
|
136 |
-
.b2s-network-auth-list-info a {
|
137 |
-
text-decoration: underline;
|
138 |
-
}
|
139 |
-
|
140 |
-
.glyphicon-white{
|
141 |
-
color:#FFFFFF;
|
142 |
-
}
|
143 |
-
|
144 |
-
.b2s-network-item-auth-list-li{
|
145 |
-
border: 1px solid rgba(0,0,0,.1);
|
146 |
-
border-bottom: 0px;
|
147 |
-
line-height: 1.5;
|
148 |
-
padding: 6px;
|
149 |
-
margin-bottom: 0px !important;
|
150 |
-
}
|
151 |
-
|
152 |
-
ul.b2s-network-item-auth-list li:last-child{
|
153 |
-
border-bottom: 1px solid rgba(0,0,0,.1) !important;
|
154 |
-
}
|
155 |
-
|
156 |
-
.b2s-network-item-auth-type{
|
157 |
-
font-weight: 600;
|
158 |
-
line-height: 2;
|
159 |
-
}
|
160 |
-
|
161 |
-
.b2s-modify-board-and-group-network-modal-footer, .b2s-manage-auth-team-modal-footer{
|
162 |
-
border: 0px !important;
|
163 |
-
}
|
164 |
-
|
165 |
-
.b2s-sched-manager-item-input-day {
|
166 |
-
color: #32373c;
|
167 |
-
display: inline-block;
|
168 |
-
vertical-align: middle;
|
169 |
-
font: 18px/1 Arial,sans-serif;
|
170 |
-
font-weight: 700;
|
171 |
-
line-height: 30px;
|
172 |
-
padding: 0 2px !important;
|
173 |
-
min-width: 28px;
|
174 |
-
text-align: center;
|
175 |
-
border: 0 !important;
|
176 |
-
width: 2% !important;
|
177 |
-
-webkit-appearance: none !important;
|
178 |
-
box-shadow: inset 0px 0px 0px rgba(0,0,0,0) !important;
|
179 |
-
margin: 0 !important;
|
180 |
-
background-color:white !important;
|
181 |
-
}
|
182 |
-
.b2s-sched-manager-item-input-day-btn-plus {
|
183 |
-
cursor: pointer;
|
184 |
-
display: inline-block;
|
185 |
-
vertical-align: middle;
|
186 |
-
width: 24px;
|
187 |
-
height: 24px;
|
188 |
-
font: 23px/1 Arial,sans-serif;
|
189 |
-
text-align: center;
|
190 |
-
border-radius: 50%;
|
191 |
-
background-color: #eee;
|
192 |
-
border: 1px solid #ddd;
|
193 |
-
box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
|
194 |
-
color: #32373c
|
195 |
-
}
|
196 |
-
.b2s-sched-manager-item-input-day-btn-minus {
|
197 |
-
cursor: pointer;
|
198 |
-
display: inline-block;
|
199 |
-
vertical-align: middle;
|
200 |
-
width: 24px;
|
201 |
-
height: 24px;
|
202 |
-
font: 21px/1 Arial,sans-serif;
|
203 |
-
text-align: center;
|
204 |
-
border-radius: 50%;
|
205 |
-
background-clip: padding-box;
|
206 |
-
background-color: #eee;
|
207 |
-
border: 1px solid #ddd;
|
208 |
-
box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
|
209 |
-
color: #32373c
|
210 |
-
}
|
211 |
-
.b2s-text-middle{
|
212 |
-
vertical-align: middle;
|
213 |
-
font: 13px/1 Arial,sans-serif;
|
214 |
-
}
|
215 |
-
|
216 |
-
.b2s-label-warning-border-left{
|
217 |
-
border-left: 3px solid #FDBF45;
|
218 |
-
}
|
219 |
-
|
220 |
-
.b2s-label-info-border-left{
|
221 |
-
border-left: 3px solid #31708f;
|
222 |
-
}
|
223 |
-
|
224 |
-
.b2s-label-danger-border-left{
|
225 |
-
border-left: 3px solid #d9534f;
|
226 |
-
}
|
227 |
-
|
228 |
-
.b2s-label-success-border-left{
|
229 |
-
border-left: 3px solid #398439;
|
230 |
-
}
|
231 |
-
|
232 |
-
.b2s-margin-top-8 {
|
233 |
-
margin-top: 8px;
|
234 |
-
}
|
235 |
-
|
236 |
-
.b2s-margin-bottom-8 {
|
237 |
-
margin-bottom: 8px;
|
238 |
-
}
|
239 |
-
|
240 |
-
#b2s-manage-auth-team-modal {
|
241 |
-
z-index: 1049;
|
242 |
-
}
|
243 |
-
|
244 |
-
.b2s-add-padding-network-placeholder-btn{
|
245 |
-
padding: 4px 14px;
|
246 |
-
}
|
247 |
-
|
248 |
-
.b2s-bold{
|
249 |
-
font-weight: 600;
|
250 |
-
}
|
251 |
-
|
252 |
-
#b2s-delete-network-sched-post {
|
253 |
-
float: left;
|
254 |
-
}
|
255 |
-
|
256 |
-
.b2s-btn-network-delete-list {
|
257 |
-
margin-left: 36px;
|
258 |
-
list-style: disc;
|
259 |
-
}
|
260 |
-
|
261 |
-
.b2s-loading-area-manage-auth-team-modal{
|
262 |
-
float: left;
|
263 |
-
text-align: center;
|
264 |
-
}
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
.b2s-edit-template-content-post-item {
|
270 |
-
appearance:button;
|
271 |
-
-moz-appearance:button;
|
272 |
-
-webkit-appearance:button;
|
273 |
-
display: inline-block;
|
274 |
-
padding: 2px 5px;
|
275 |
-
cursor: pointer;
|
276 |
-
margin-right: 5px !important;
|
277 |
-
}
|
278 |
-
|
279 |
-
.b2s-edit-template-preview-profile-img-1 {
|
280 |
-
border: 1px solid lightgray;
|
281 |
-
border-radius: 25px;
|
282 |
-
padding: 1px;
|
283 |
-
height: 36px;
|
284 |
-
width: 36px;
|
285 |
-
}
|
286 |
-
|
287 |
-
.b2s-edit-template-preview-profile-img-3 {
|
288 |
-
border: 1px solid lightgray;
|
289 |
-
border-radius: 25px;
|
290 |
-
padding: 1px;
|
291 |
-
height: 36px;
|
292 |
-
width: 36px;
|
293 |
-
}
|
294 |
-
|
295 |
-
.b2s-edit-template-preview-profile-img-12 {
|
296 |
-
border: 1px solid lightgray;
|
297 |
-
border-radius: 25px;
|
298 |
-
padding: 1px;
|
299 |
-
height: 36px;
|
300 |
-
width: 36px;
|
301 |
-
}
|
302 |
-
|
303 |
-
.b2s-edit-template-preview-profile-img-2 {
|
304 |
-
border: 1px solid lightgray;
|
305 |
-
border-radius: 25px;
|
306 |
-
padding: 1px;
|
307 |
-
height: 36px;
|
308 |
-
width: 36px;
|
309 |
-
}
|
310 |
-
|
311 |
-
.b2s-edit-template-preview-profile-name-1 {
|
312 |
-
margin-left: -20px;
|
313 |
-
color: #385898;
|
314 |
-
font-family: Helvetica, Arial, sans-serif;
|
315 |
-
font-size: 14px;
|
316 |
-
font-weight: 600;
|
317 |
-
}
|
318 |
-
|
319 |
-
.b2s-edit-template-preview-profile-name-3 {
|
320 |
-
margin-left: -20px;
|
321 |
-
font-family: Helvetica, Arial, sans-serif;
|
322 |
-
font-size: 14px;
|
323 |
-
font-weight: 600;
|
324 |
-
}
|
325 |
-
|
326 |
-
.b2s-edit-template-preview-profile-name-2 {
|
327 |
-
font-family: Helvetica, Arial, sans-serif;
|
328 |
-
font-size: 14px;
|
329 |
-
font-weight: 600;
|
330 |
-
}
|
331 |
-
|
332 |
-
.b2s-edit-template-preview-profile-name-12 {
|
333 |
-
font-family: Helvetica, Arial, sans-serif;
|
334 |
-
font-size: 12px;
|
335 |
-
font-weight: 600;
|
336 |
-
margin-left: -10px;
|
337 |
-
margin-top: 10px;
|
338 |
-
}
|
339 |
-
|
340 |
-
.b2s-edit-template-preview-content-profile-name-12 {
|
341 |
-
font-family: Helvetica, Arial, sans-serif;
|
342 |
-
font-size: 12px;
|
343 |
-
font-weight: 600;
|
344 |
-
margin-right: 5px;
|
345 |
-
}
|
346 |
-
|
347 |
-
.b2s-edit-template-preview-profile-handle-2 {
|
348 |
-
font-size: 14px;
|
349 |
-
color: gray;
|
350 |
-
}
|
351 |
-
|
352 |
-
.b2s-edit-template-preview-content {
|
353 |
-
word-wrap: break-word;
|
354 |
-
}
|
355 |
-
|
356 |
-
.b2s-edit-template-preview-link-image, .b2s-edit-template-preview-image-image {
|
357 |
-
width: 100%;
|
358 |
-
}
|
359 |
-
|
360 |
-
.b2s-edit-template-preview-2 {
|
361 |
-
margin-left: -20px;
|
362 |
-
}
|
363 |
-
|
364 |
-
.b2s-edit-template-preview-image-image-2 {
|
365 |
-
border-radius: 10px;
|
366 |
-
border: 1px solid lightgrey;
|
367 |
-
margin-top: 10px;
|
368 |
-
}
|
369 |
-
|
370 |
-
.b2s-edit-template-preview-image-image-3, .b2s-edit-template-preview-link-image-3 {
|
371 |
-
margin-top: 10px;
|
372 |
-
border-top: 1px solid lightgray;
|
373 |
-
border-bottom: 1px solid lightgray;
|
374 |
-
}
|
375 |
-
|
376 |
-
.b2s-edit-template-preview-link-image-2 {
|
377 |
-
width: auto !important;
|
378 |
-
height: 85px;
|
379 |
-
}
|
380 |
-
|
381 |
-
.b2s-edit-template-preview-image-12 {
|
382 |
-
width: 100%;
|
383 |
-
}
|
384 |
-
|
385 |
-
.b2s-edit-template-link-post {
|
386 |
-
border-top-right-radius: 0px !important;
|
387 |
-
border-bottom-right-radius: 0px !important;
|
388 |
-
}
|
389 |
-
|
390 |
-
.b2s-edit-template-image-post {
|
391 |
-
border-top-left-radius: 0px !important;
|
392 |
-
border-bottom-left-radius: 0px !important;
|
393 |
-
}
|
394 |
-
|
395 |
-
.b2s-edit-template-preview-image-border-12 {
|
396 |
-
padding: 0 !important;
|
397 |
-
border-top: 1px solid lightgray;
|
398 |
-
border-bottom: 1px solid lightgray;
|
399 |
-
margin: 10px 0px;
|
400 |
-
overflow: hidden;
|
401 |
-
height: 370px;
|
402 |
-
}
|
403 |
-
|
404 |
-
.b2s-edit-template-preview-border-12 {
|
405 |
-
padding: 10px 0px;
|
406 |
-
}
|
407 |
-
.b2s-edit-template-preview-border-1 {
|
408 |
-
padding-top: 10px;
|
409 |
-
}
|
410 |
-
|
411 |
-
.b2s-edit-template-preview-border-3 {
|
412 |
-
padding-top: 10px;
|
413 |
-
}
|
414 |
-
|
415 |
-
.b2s-edit-template-preview-border {
|
416 |
-
border: 1px solid lightgray;
|
417 |
-
}
|
418 |
-
|
419 |
-
.b2s-edit-template-preview-content-1 {
|
420 |
-
margin: 5px 0px;
|
421 |
-
}
|
422 |
-
|
423 |
-
.b2s-edit-template-preview-content-3 {
|
424 |
-
margin: 5px 0px;
|
425 |
-
}
|
426 |
-
|
427 |
-
.b2s-edit-template-preview-image-border-1 {
|
428 |
-
padding: 0px !important;
|
429 |
-
border-top: 1px solid lightgray;
|
430 |
-
border-bottom: 1px solid lightgray;
|
431 |
-
}
|
432 |
-
|
433 |
-
.b2s-edit-template-preview-image-border-3 {
|
434 |
-
padding: 0px !important;
|
435 |
-
}
|
436 |
-
|
437 |
-
.b2s-edit-template-preview-link-title {
|
438 |
-
font-weight: 700;
|
439 |
-
font-size: 16px;
|
440 |
-
}
|
441 |
-
|
442 |
-
.b2s-edit-template-preview-link-meta-box-1 {
|
443 |
-
background-color: #f2f3f5;
|
444 |
-
padding-bottom: 5px;
|
445 |
-
border-bottom: 1px solid lightgray;
|
446 |
-
}
|
447 |
-
|
448 |
-
.b2s-edit-template-preview-link-meta-box-2 {
|
449 |
-
border: 1px solid lightgray;
|
450 |
-
border-radius: 14px;
|
451 |
-
margin-left: 0px !important;
|
452 |
-
margin-top: 10px;
|
453 |
-
}
|
454 |
-
|
455 |
-
.b2s-edit-template-preview-link-meta-box-image-2 {
|
456 |
-
overflow: hidden;
|
457 |
-
height: 85px;
|
458 |
-
display: flex;
|
459 |
-
align-items: center;
|
460 |
-
justify-content: center;
|
461 |
-
border-top-left-radius: 14px;
|
462 |
-
border-bottom-left-radius: 14px;
|
463 |
-
border-right: 1px solid lightgray;
|
464 |
-
}
|
465 |
-
|
466 |
-
.b2s-edit-template-preview-link-meta-box-desc-2 {
|
467 |
-
color: gray;
|
468 |
-
}
|
469 |
-
|
470 |
-
.b2s-edit-template-preview-link-meta-box-domain-2 {
|
471 |
-
color: gray;
|
472 |
-
}
|
473 |
-
|
474 |
-
.b2s-edit-template-preview-link-meta-box-3 {
|
475 |
-
background-color: #f2f3f5;
|
476 |
-
padding: 5px 0px;
|
477 |
-
border-bottom: 1px solid lightgray;
|
478 |
-
}
|
479 |
-
|
480 |
-
.b2s-edit-template-preview-link-meta-box-domain-3 {
|
481 |
-
font-size: 10px;
|
482 |
-
color: gray;
|
483 |
-
}
|
484 |
-
|
485 |
-
.b2s-edit-template-preview-link-meta-box-title-3 {
|
486 |
-
font-weight: 600;
|
487 |
-
}
|
488 |
-
|
489 |
-
.b2s-edit-template-link-info {
|
490 |
-
color: #31708f;
|
491 |
-
}
|
492 |
-
|
493 |
-
.b2s-edit-template-section-headline {
|
494 |
-
font-size: 14px;
|
495 |
-
font-weight: 600;
|
496 |
-
}
|
497 |
-
|
498 |
-
.b2s-edit-template-post-content {
|
499 |
-
width: 100%;
|
500 |
-
height: 80px;
|
501 |
-
}
|
502 |
-
|
503 |
-
.b2s-edit-template-image-cut {
|
504 |
-
width: 200%;
|
505 |
-
margin-left: -205px;
|
506 |
-
margin-top: -83px;
|
507 |
-
}
|
508 |
-
|
509 |
-
.b2s-edit-template-image-frame {
|
510 |
-
margin-top: 50px;
|
511 |
-
}
|
512 |
-
|
513 |
-
.b2s-edit-template-preview-dots-12 {
|
514 |
-
margin-top: -5px;
|
515 |
-
font-weight: 1000;
|
516 |
-
font-size: 15px;
|
517 |
-
letter-spacing: 2px;
|
518 |
-
}
|
519 |
-
|
520 |
-
.b2s-edit-template-preview-like-icons-12 {
|
521 |
-
width: 100px;
|
522 |
-
margin: -5px 0px 5px -5px;
|
523 |
-
}
|
524 |
-
|
525 |
-
.b2s-edit-template-preview-like-icons-1 {
|
526 |
-
width: 100%;
|
527 |
-
margin: 5px 0px;
|
528 |
-
}
|
529 |
-
|
530 |
-
.b2s-edit-template-preview-like-icons-2 {
|
531 |
-
width: 100%;
|
532 |
-
margin-top: 5px;
|
533 |
-
}
|
534 |
-
|
535 |
-
.b2s-edit-template-preview-like-icons-3 {
|
536 |
-
margin-top: 5px;
|
537 |
-
}
|
538 |
-
|
539 |
-
.b2s-edit-template-network-img {
|
540 |
-
height: 20px;
|
541 |
-
width: auto !important;
|
542 |
-
margin-right: 5px;
|
543 |
-
}
|
544 |
-
|
545 |
-
.b2s-edit-template-character-limit-label{
|
546 |
-
padding-top: 4px;
|
547 |
-
font-weight: 600;
|
548 |
-
}
|
549 |
-
.b2s-info-character-limit-text{
|
550 |
-
margin: 0 0 10px;
|
551 |
-
}
|
552 |
-
|
553 |
-
.b2s-edit-template-preview-border-19 {
|
554 |
-
padding-top: 15px;
|
555 |
-
padding-bottom: 15px;
|
556 |
-
border-radius: 3px;
|
557 |
-
}
|
558 |
-
|
559 |
-
.b2s-edit-template-preview-profile-img-19 {
|
560 |
-
height: 40px;
|
561 |
-
}
|
562 |
-
|
563 |
-
.b2s-edit-template-preview-profile-name-19 {
|
564 |
-
color: #009090;
|
565 |
-
font-size: 13px;
|
566 |
-
font-weight: 600;
|
567 |
-
line-height: 18px;
|
568 |
-
}
|
569 |
-
|
570 |
-
.b2s-edit-template-preview-header-19 {
|
571 |
-
padding-top: 15px;
|
572 |
-
padding-bottom: 15px;
|
573 |
-
border-bottom: 1px solid lightgray;
|
574 |
-
margin-bottom: 15px;
|
575 |
-
}
|
576 |
-
|
577 |
-
.b2s-edit-template-preview-like-icons-19 {
|
578 |
-
margin-top: 15px;
|
579 |
-
width: 120px;
|
580 |
-
}
|
581 |
-
|
582 |
-
.b2s-edit-template-preview-link-meta-box-title-19 {
|
583 |
-
color: #009090;
|
584 |
-
font-size: 18px;
|
585 |
-
font-weight: 400;
|
586 |
-
line-height: 22px;
|
587 |
-
}
|
588 |
-
|
589 |
-
.b2s-edit-template-preview-link-meta-box-desc-19 {
|
590 |
-
font-size: 13px;
|
591 |
-
line-height: 18px;
|
592 |
-
}
|
593 |
-
|
594 |
-
.b2s-edit-template-preview-link-meta-box-domain-19 {
|
595 |
-
font-size: 13px;
|
596 |
-
line-height: 18px;
|
597 |
-
color: gray;
|
598 |
-
}
|
599 |
-
|
600 |
-
.b2s-edit-template-image-preview .b2s-edit-template-preview-image-border-19 {
|
601 |
-
padding: 0px;
|
602 |
-
}
|
603 |
-
|
604 |
-
.b2s-edit-template-preview-content-19 {
|
605 |
-
margin: 15px 0px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
}
|
1 |
+
/*Custom*/
|
2 |
+
|
3 |
+
.b2s-loading-area-modify-collection{
|
4 |
+
text-align: center;
|
5 |
+
}
|
6 |
+
|
7 |
+
.list-group-item{
|
8 |
+
border: 0px !important;
|
9 |
+
}
|
10 |
+
@media(max-width: 767px) {
|
11 |
+
.form-inline {
|
12 |
+
display: none;
|
13 |
+
}
|
14 |
+
.filterHide {
|
15 |
+
display: none;
|
16 |
+
}
|
17 |
+
.form-inline button {
|
18 |
+
width: 100%;
|
19 |
+
margin-bottom: 10px;
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
@media(max-width: 450px) {
|
24 |
+
.add-padding-left{
|
25 |
+
padding: 0px !important;
|
26 |
+
}
|
27 |
+
}
|
28 |
+
|
29 |
+
.error{
|
30 |
+
border: 1px solid #FF0000 !important;
|
31 |
+
}
|
32 |
+
.b2s-network-auth-btn{
|
33 |
+
margin-left: 2px;
|
34 |
+
line-height: 2;
|
35 |
+
}
|
36 |
+
|
37 |
+
.b2s-network-item-auth-list-btn-delete{
|
38 |
+
line-height: 2;
|
39 |
+
}
|
40 |
+
|
41 |
+
.b2s-network-get-more-btn{
|
42 |
+
text-decoration: underline;
|
43 |
+
}
|
44 |
+
.b2s-network-auth-count{
|
45 |
+
font-weight: 700;
|
46 |
+
line-height: 1.5;
|
47 |
+
}
|
48 |
+
|
49 |
+
.b2s-sched-manager-title{
|
50 |
+
font-weight: 700;
|
51 |
+
line-height: 1.5;
|
52 |
+
padding-right: 165px;
|
53 |
+
}
|
54 |
+
|
55 |
+
.b2s-sched-manager-time-area{
|
56 |
+
width: 150px;
|
57 |
+
margin-right: -35px;
|
58 |
+
}
|
59 |
+
|
60 |
+
.b2s-sched-manager-add-padding{
|
61 |
+
margin-right: -13px;
|
62 |
+
}
|
63 |
+
|
64 |
+
.b2s-add-padding-network-refresh{
|
65 |
+
padding: 4px 7px;
|
66 |
+
}
|
67 |
+
|
68 |
+
.b2s-add-padding-network-team{
|
69 |
+
padding: 4px 3px;
|
70 |
+
line-height: 2;
|
71 |
+
}
|
72 |
+
|
73 |
+
.b2s-sched-manager-best-time-info{
|
74 |
+
padding-left: 15px;
|
75 |
+
font-size: 12px;
|
76 |
+
}
|
77 |
+
|
78 |
+
.b2s-network-time-manager-area{
|
79 |
+
padding-right: 8px;
|
80 |
+
}
|
81 |
+
|
82 |
+
.b2s-add-padding-network-edit{
|
83 |
+
padding: 7px 4px;
|
84 |
+
}
|
85 |
+
.b2s-network-mandant-area{
|
86 |
+
margin-top: -7px !important;
|
87 |
+
}
|
88 |
+
|
89 |
+
.b2s-add-padding-network-delete{
|
90 |
+
padding: 4px 5px;
|
91 |
+
}
|
92 |
+
|
93 |
+
.b2s-sched-manager-day-area{
|
94 |
+
width: 150px;
|
95 |
+
padding-top: 2px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.b2s-sched-manager-premium-area{
|
99 |
+
width: 195px;
|
100 |
+
padding-top: 5px;
|
101 |
+
}
|
102 |
+
|
103 |
+
.b2s-settings-sched-item-input-time, .b2s-settings-sched-item-input-day{
|
104 |
+
max-width: 90px;
|
105 |
+
}
|
106 |
+
|
107 |
+
.b2s-network-mandant-select{
|
108 |
+
min-width: 200px;
|
109 |
+
}
|
110 |
+
|
111 |
+
.b2s-network-mandant-name{
|
112 |
+
font-size: 12px;
|
113 |
+
font-style: italic;
|
114 |
+
color: #777;
|
115 |
+
font-weight: normal;
|
116 |
+
|
117 |
+
}
|
118 |
+
|
119 |
+
.b2s-network-approved-from{
|
120 |
+
font-size: 12px;
|
121 |
+
font-style: italic;
|
122 |
+
color: #777;
|
123 |
+
font-weight: normal;
|
124 |
+
|
125 |
+
}
|
126 |
+
|
127 |
+
.b2s-network-item-auth-list{
|
128 |
+
padding-top:6px;
|
129 |
+
font-size: 0.80rem !important;
|
130 |
+
}
|
131 |
+
|
132 |
+
.b2s-network-auth-list-info{
|
133 |
+
font-weight: 700;
|
134 |
+
}
|
135 |
+
|
136 |
+
.b2s-network-auth-list-info a {
|
137 |
+
text-decoration: underline;
|
138 |
+
}
|
139 |
+
|
140 |
+
.glyphicon-white{
|
141 |
+
color:#FFFFFF;
|
142 |
+
}
|
143 |
+
|
144 |
+
.b2s-network-item-auth-list-li{
|
145 |
+
border: 1px solid rgba(0,0,0,.1);
|
146 |
+
border-bottom: 0px;
|
147 |
+
line-height: 1.5;
|
148 |
+
padding: 6px;
|
149 |
+
margin-bottom: 0px !important;
|
150 |
+
}
|
151 |
+
|
152 |
+
ul.b2s-network-item-auth-list li:last-child{
|
153 |
+
border-bottom: 1px solid rgba(0,0,0,.1) !important;
|
154 |
+
}
|
155 |
+
|
156 |
+
.b2s-network-item-auth-type{
|
157 |
+
font-weight: 600;
|
158 |
+
line-height: 2;
|
159 |
+
}
|
160 |
+
|
161 |
+
.b2s-modify-board-and-group-network-modal-footer, .b2s-manage-auth-team-modal-footer{
|
162 |
+
border: 0px !important;
|
163 |
+
}
|
164 |
+
|
165 |
+
.b2s-sched-manager-item-input-day {
|
166 |
+
color: #32373c;
|
167 |
+
display: inline-block;
|
168 |
+
vertical-align: middle;
|
169 |
+
font: 18px/1 Arial,sans-serif;
|
170 |
+
font-weight: 700;
|
171 |
+
line-height: 30px;
|
172 |
+
padding: 0 2px !important;
|
173 |
+
min-width: 28px;
|
174 |
+
text-align: center;
|
175 |
+
border: 0 !important;
|
176 |
+
width: 2% !important;
|
177 |
+
-webkit-appearance: none !important;
|
178 |
+
box-shadow: inset 0px 0px 0px rgba(0,0,0,0) !important;
|
179 |
+
margin: 0 !important;
|
180 |
+
background-color:white !important;
|
181 |
+
}
|
182 |
+
.b2s-sched-manager-item-input-day-btn-plus {
|
183 |
+
cursor: pointer;
|
184 |
+
display: inline-block;
|
185 |
+
vertical-align: middle;
|
186 |
+
width: 24px;
|
187 |
+
height: 24px;
|
188 |
+
font: 23px/1 Arial,sans-serif;
|
189 |
+
text-align: center;
|
190 |
+
border-radius: 50%;
|
191 |
+
background-color: #eee;
|
192 |
+
border: 1px solid #ddd;
|
193 |
+
box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
|
194 |
+
color: #32373c
|
195 |
+
}
|
196 |
+
.b2s-sched-manager-item-input-day-btn-minus {
|
197 |
+
cursor: pointer;
|
198 |
+
display: inline-block;
|
199 |
+
vertical-align: middle;
|
200 |
+
width: 24px;
|
201 |
+
height: 24px;
|
202 |
+
font: 21px/1 Arial,sans-serif;
|
203 |
+
text-align: center;
|
204 |
+
border-radius: 50%;
|
205 |
+
background-clip: padding-box;
|
206 |
+
background-color: #eee;
|
207 |
+
border: 1px solid #ddd;
|
208 |
+
box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
|
209 |
+
color: #32373c
|
210 |
+
}
|
211 |
+
.b2s-text-middle{
|
212 |
+
vertical-align: middle;
|
213 |
+
font: 13px/1 Arial,sans-serif;
|
214 |
+
}
|
215 |
+
|
216 |
+
.b2s-label-warning-border-left{
|
217 |
+
border-left: 3px solid #FDBF45;
|
218 |
+
}
|
219 |
+
|
220 |
+
.b2s-label-info-border-left{
|
221 |
+
border-left: 3px solid #31708f;
|
222 |
+
}
|
223 |
+
|
224 |
+
.b2s-label-danger-border-left{
|
225 |
+
border-left: 3px solid #d9534f;
|
226 |
+
}
|
227 |
+
|
228 |
+
.b2s-label-success-border-left{
|
229 |
+
border-left: 3px solid #398439;
|
230 |
+
}
|
231 |
+
|
232 |
+
.b2s-margin-top-8 {
|
233 |
+
margin-top: 8px;
|
234 |
+
}
|
235 |
+
|
236 |
+
.b2s-margin-bottom-8 {
|
237 |
+
margin-bottom: 8px;
|
238 |
+
}
|
239 |
+
|
240 |
+
#b2s-manage-auth-team-modal {
|
241 |
+
z-index: 1049;
|
242 |
+
}
|
243 |
+
|
244 |
+
.b2s-add-padding-network-placeholder-btn{
|
245 |
+
padding: 4px 14px;
|
246 |
+
}
|
247 |
+
|
248 |
+
.b2s-bold{
|
249 |
+
font-weight: 600;
|
250 |
+
}
|
251 |
+
|
252 |
+
#b2s-delete-network-sched-post {
|
253 |
+
float: left;
|
254 |
+
}
|
255 |
+
|
256 |
+
.b2s-btn-network-delete-list {
|
257 |
+
margin-left: 36px;
|
258 |
+
list-style: disc;
|
259 |
+
}
|
260 |
+
|
261 |
+
.b2s-loading-area-manage-auth-team-modal{
|
262 |
+
float: left;
|
263 |
+
text-align: center;
|
264 |
+
}
|
265 |
+
|
266 |
+
|
267 |
+
|
268 |
+
|
269 |
+
.b2s-edit-template-content-post-item {
|
270 |
+
appearance:button;
|
271 |
+
-moz-appearance:button;
|
272 |
+
-webkit-appearance:button;
|
273 |
+
display: inline-block;
|
274 |
+
padding: 2px 5px;
|
275 |
+
cursor: pointer;
|
276 |
+
margin-right: 5px !important;
|
277 |
+
}
|
278 |
+
|
279 |
+
.b2s-edit-template-preview-profile-img-1 {
|
280 |
+
border: 1px solid lightgray;
|
281 |
+
border-radius: 25px;
|
282 |
+
padding: 1px;
|
283 |
+
height: 36px;
|
284 |
+
width: 36px;
|
285 |
+
}
|
286 |
+
|
287 |
+
.b2s-edit-template-preview-profile-img-3 {
|
288 |
+
border: 1px solid lightgray;
|
289 |
+
border-radius: 25px;
|
290 |
+
padding: 1px;
|
291 |
+
height: 36px;
|
292 |
+
width: 36px;
|
293 |
+
}
|
294 |
+
|
295 |
+
.b2s-edit-template-preview-profile-img-12 {
|
296 |
+
border: 1px solid lightgray;
|
297 |
+
border-radius: 25px;
|
298 |
+
padding: 1px;
|
299 |
+
height: 36px;
|
300 |
+
width: 36px;
|
301 |
+
}
|
302 |
+
|
303 |
+
.b2s-edit-template-preview-profile-img-2 {
|
304 |
+
border: 1px solid lightgray;
|
305 |
+
border-radius: 25px;
|
306 |
+
padding: 1px;
|
307 |
+
height: 36px;
|
308 |
+
width: 36px;
|
309 |
+
}
|
310 |
+
|
311 |
+
.b2s-edit-template-preview-profile-name-1 {
|
312 |
+
margin-left: -20px;
|
313 |
+
color: #385898;
|
314 |
+
font-family: Helvetica, Arial, sans-serif;
|
315 |
+
font-size: 14px;
|
316 |
+
font-weight: 600;
|
317 |
+
}
|
318 |
+
|
319 |
+
.b2s-edit-template-preview-profile-name-3 {
|
320 |
+
margin-left: -20px;
|
321 |
+
font-family: Helvetica, Arial, sans-serif;
|
322 |
+
font-size: 14px;
|
323 |
+
font-weight: 600;
|
324 |
+
}
|
325 |
+
|
326 |
+
.b2s-edit-template-preview-profile-name-2 {
|
327 |
+
font-family: Helvetica, Arial, sans-serif;
|
328 |
+
font-size: 14px;
|
329 |
+
font-weight: 600;
|
330 |
+
}
|
331 |
+
|
332 |
+
.b2s-edit-template-preview-profile-name-12 {
|
333 |
+
font-family: Helvetica, Arial, sans-serif;
|
334 |
+
font-size: 12px;
|
335 |
+
font-weight: 600;
|
336 |
+
margin-left: -10px;
|
337 |
+
margin-top: 10px;
|
338 |
+
}
|
339 |
+
|
340 |
+
.b2s-edit-template-preview-content-profile-name-12 {
|
341 |
+
font-family: Helvetica, Arial, sans-serif;
|
342 |
+
font-size: 12px;
|
343 |
+
font-weight: 600;
|
344 |
+
margin-right: 5px;
|
345 |
+
}
|
346 |
+
|
347 |
+
.b2s-edit-template-preview-profile-handle-2 {
|
348 |
+
font-size: 14px;
|
349 |
+
color: gray;
|
350 |
+
}
|
351 |
+
|
352 |
+
.b2s-edit-template-preview-content {
|
353 |
+
word-wrap: break-word;
|
354 |
+
}
|
355 |
+
|
356 |
+
.b2s-edit-template-preview-link-image, .b2s-edit-template-preview-image-image {
|
357 |
+
width: 100%;
|
358 |
+
}
|
359 |
+
|
360 |
+
.b2s-edit-template-preview-2 {
|
361 |
+
margin-left: -20px;
|
362 |
+
}
|
363 |
+
|
364 |
+
.b2s-edit-template-preview-image-image-2 {
|
365 |
+
border-radius: 10px;
|
366 |
+
border: 1px solid lightgrey;
|
367 |
+
margin-top: 10px;
|
368 |
+
}
|
369 |
+
|
370 |
+
.b2s-edit-template-preview-image-image-3, .b2s-edit-template-preview-link-image-3 {
|
371 |
+
margin-top: 10px;
|
372 |
+
border-top: 1px solid lightgray;
|
373 |
+
border-bottom: 1px solid lightgray;
|
374 |
+
}
|
375 |
+
|
376 |
+
.b2s-edit-template-preview-link-image-2 {
|
377 |
+
width: auto !important;
|
378 |
+
height: 85px;
|
379 |
+
}
|
380 |
+
|
381 |
+
.b2s-edit-template-preview-image-12 {
|
382 |
+
width: 100%;
|
383 |
+
}
|
384 |
+
|
385 |
+
.b2s-edit-template-link-post {
|
386 |
+
border-top-right-radius: 0px !important;
|
387 |
+
border-bottom-right-radius: 0px !important;
|
388 |
+
}
|
389 |
+
|
390 |
+
.b2s-edit-template-image-post {
|
391 |
+
border-top-left-radius: 0px !important;
|
392 |
+
border-bottom-left-radius: 0px !important;
|
393 |
+
}
|
394 |
+
|
395 |
+
.b2s-edit-template-preview-image-border-12 {
|
396 |
+
padding: 0 !important;
|
397 |
+
border-top: 1px solid lightgray;
|
398 |
+
border-bottom: 1px solid lightgray;
|
399 |
+
margin: 10px 0px;
|
400 |
+
overflow: hidden;
|
401 |
+
height: 370px;
|
402 |
+
}
|
403 |
+
|
404 |
+
.b2s-edit-template-preview-border-12 {
|
405 |
+
padding: 10px 0px;
|
406 |
+
}
|
407 |
+
.b2s-edit-template-preview-border-1 {
|
408 |
+
padding-top: 10px;
|
409 |
+
}
|
410 |
+
|
411 |
+
.b2s-edit-template-preview-border-3 {
|
412 |
+
padding-top: 10px;
|
413 |
+
}
|
414 |
+
|
415 |
+
.b2s-edit-template-preview-border {
|
416 |
+
border: 1px solid lightgray;
|
417 |
+
}
|
418 |
+
|
419 |
+
.b2s-edit-template-preview-content-1 {
|
420 |
+
margin: 5px 0px;
|
421 |
+
}
|
422 |
+
|
423 |
+
.b2s-edit-template-preview-content-3 {
|
424 |
+
margin: 5px 0px;
|
425 |
+
}
|
426 |
+
|
427 |
+
.b2s-edit-template-preview-image-border-1 {
|
428 |
+
padding: 0px !important;
|
429 |
+
border-top: 1px solid lightgray;
|
430 |
+
border-bottom: 1px solid lightgray;
|
431 |
+
}
|
432 |
+
|
433 |
+
.b2s-edit-template-preview-image-border-3 {
|
434 |
+
padding: 0px !important;
|
435 |
+
}
|
436 |
+
|
437 |
+
.b2s-edit-template-preview-link-title {
|
438 |
+
font-weight: 700;
|
439 |
+
font-size: 16px;
|
440 |
+
}
|
441 |
+
|
442 |
+
.b2s-edit-template-preview-link-meta-box-1 {
|
443 |
+
background-color: #f2f3f5;
|
444 |
+
padding-bottom: 5px;
|
445 |
+
border-bottom: 1px solid lightgray;
|
446 |
+
}
|
447 |
+
|
448 |
+
.b2s-edit-template-preview-link-meta-box-2 {
|
449 |
+
border: 1px solid lightgray;
|
450 |
+
border-radius: 14px;
|
451 |
+
margin-left: 0px !important;
|
452 |
+
margin-top: 10px;
|
453 |
+
}
|
454 |
+
|
455 |
+
.b2s-edit-template-preview-link-meta-box-image-2 {
|
456 |
+
overflow: hidden;
|
457 |
+
height: 85px;
|
458 |
+
display: flex;
|
459 |
+
align-items: center;
|
460 |
+
justify-content: center;
|
461 |
+
border-top-left-radius: 14px;
|
462 |
+
border-bottom-left-radius: 14px;
|
463 |
+
border-right: 1px solid lightgray;
|
464 |
+
}
|
465 |
+
|
466 |
+
.b2s-edit-template-preview-link-meta-box-desc-2 {
|
467 |
+
color: gray;
|
468 |
+
}
|
469 |
+
|
470 |
+
.b2s-edit-template-preview-link-meta-box-domain-2 {
|
471 |
+
color: gray;
|
472 |
+
}
|
473 |
+
|
474 |
+
.b2s-edit-template-preview-link-meta-box-3 {
|
475 |
+
background-color: #f2f3f5;
|
476 |
+
padding: 5px 0px;
|
477 |
+
border-bottom: 1px solid lightgray;
|
478 |
+
}
|
479 |
+
|
480 |
+
.b2s-edit-template-preview-link-meta-box-domain-3 {
|
481 |
+
font-size: 10px;
|
482 |
+
color: gray;
|
483 |
+
}
|
484 |
+
|
485 |
+
.b2s-edit-template-preview-link-meta-box-title-3 {
|
486 |
+
font-weight: 600;
|
487 |
+
}
|
488 |
+
|
489 |
+
.b2s-edit-template-link-info {
|
490 |
+
color: #31708f;
|
491 |
+
}
|
492 |
+
|
493 |
+
.b2s-edit-template-section-headline {
|
494 |
+
font-size: 14px;
|
495 |
+
font-weight: 600;
|
496 |
+
}
|
497 |
+
|
498 |
+
.b2s-edit-template-post-content {
|
499 |
+
width: 100%;
|
500 |
+
height: 80px;
|
501 |
+
}
|
502 |
+
|
503 |
+
.b2s-edit-template-image-cut {
|
504 |
+
width: 200%;
|
505 |
+
margin-left: -205px;
|
506 |
+
margin-top: -83px;
|
507 |
+
}
|
508 |
+
|
509 |
+
.b2s-edit-template-image-frame {
|
510 |
+
margin-top: 50px;
|
511 |
+
}
|
512 |
+
|
513 |
+
.b2s-edit-template-preview-dots-12 {
|
514 |
+
margin-top: -5px;
|
515 |
+
font-weight: 1000;
|
516 |
+
font-size: 15px;
|
517 |
+
letter-spacing: 2px;
|
518 |
+
}
|
519 |
+
|
520 |
+
.b2s-edit-template-preview-like-icons-12 {
|
521 |
+
width: 100px;
|
522 |
+
margin: -5px 0px 5px -5px;
|
523 |
+
}
|
524 |
+
|
525 |
+
.b2s-edit-template-preview-like-icons-1 {
|
526 |
+
width: 100%;
|
527 |
+
margin: 5px 0px;
|
528 |
+
}
|
529 |
+
|
530 |
+
.b2s-edit-template-preview-like-icons-2 {
|
531 |
+
width: 100%;
|
532 |
+
margin-top: 5px;
|
533 |
+
}
|
534 |
+
|
535 |
+
.b2s-edit-template-preview-like-icons-3 {
|
536 |
+
margin-top: 5px;
|
537 |
+
}
|
538 |
+
|
539 |
+
.b2s-edit-template-network-img {
|
540 |
+
height: 20px;
|
541 |
+
width: auto !important;
|
542 |
+
margin-right: 5px;
|
543 |
+
}
|
544 |
+
|
545 |
+
.b2s-edit-template-character-limit-label{
|
546 |
+
padding-top: 4px;
|
547 |
+
font-weight: 600;
|
548 |
+
}
|
549 |
+
.b2s-info-character-limit-text{
|
550 |
+
margin: 0 0 10px;
|
551 |
+
}
|
552 |
+
|
553 |
+
.b2s-edit-template-preview-border-19 {
|
554 |
+
padding-top: 15px;
|
555 |
+
padding-bottom: 15px;
|
556 |
+
border-radius: 3px;
|
557 |
+
}
|
558 |
+
|
559 |
+
.b2s-edit-template-preview-profile-img-19 {
|
560 |
+
height: 40px;
|
561 |
+
}
|
562 |
+
|
563 |
+
.b2s-edit-template-preview-profile-name-19 {
|
564 |
+
color: #009090;
|
565 |
+
font-size: 13px;
|
566 |
+
font-weight: 600;
|
567 |
+
line-height: 18px;
|
568 |
+
}
|
569 |
+
|
570 |
+
.b2s-edit-template-preview-header-19 {
|
571 |
+
padding-top: 15px;
|
572 |
+
padding-bottom: 15px;
|
573 |
+
border-bottom: 1px solid lightgray;
|
574 |
+
margin-bottom: 15px;
|
575 |
+
}
|
576 |
+
|
577 |
+
.b2s-edit-template-preview-like-icons-19 {
|
578 |
+
margin-top: 15px;
|
579 |
+
width: 120px;
|
580 |
+
}
|
581 |
+
|
582 |
+
.b2s-edit-template-preview-link-meta-box-title-19 {
|
583 |
+
color: #009090;
|
584 |
+
font-size: 18px;
|
585 |
+
font-weight: 400;
|
586 |
+
line-height: 22px;
|
587 |
+
}
|
588 |
+
|
589 |
+
.b2s-edit-template-preview-link-meta-box-desc-19 {
|
590 |
+
font-size: 13px;
|
591 |
+
line-height: 18px;
|
592 |
+
}
|
593 |
+
|
594 |
+
.b2s-edit-template-preview-link-meta-box-domain-19 {
|
595 |
+
font-size: 13px;
|
596 |
+
line-height: 18px;
|
597 |
+
color: gray;
|
598 |
+
}
|
599 |
+
|
600 |
+
.b2s-edit-template-image-preview .b2s-edit-template-preview-image-border-19 {
|
601 |
+
padding: 0px;
|
602 |
+
}
|
603 |
+
|
604 |
+
.b2s-edit-template-preview-content-19 {
|
605 |
+
margin: 15px 0px;
|
606 |
+
}
|
607 |
+
|
608 |
+
.b2s-login-form-label {
|
609 |
+
padding-top: 7px;
|
610 |
+
margin-top: 0;
|
611 |
+
margin-bottom: 0;
|
612 |
+
text-align: right;
|
613 |
+
font-weight: bold;
|
614 |
}
|
assets/css/b2s/post.approve.css
CHANGED
@@ -1,305 +1,305 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
.b2s-sched-btn {
|
3 |
-
margin-top: 0px;
|
4 |
-
}
|
5 |
-
.media {
|
6 |
-
width: 100%;
|
7 |
-
}
|
8 |
-
.form-inline {
|
9 |
-
width: 100%;
|
10 |
-
margin-bottom: 20px;
|
11 |
-
}
|
12 |
-
.form-inline .form-group {
|
13 |
-
margin-left: 2px;
|
14 |
-
}
|
15 |
-
.media-head {
|
16 |
-
width: 100% !important;
|
17 |
-
}
|
18 |
-
@media(max-width: 549px) {
|
19 |
-
.b2s-post-btn {
|
20 |
-
width: 100%;
|
21 |
-
}
|
22 |
-
.form-inline button, .form-inline a {
|
23 |
-
width: 100%;
|
24 |
-
margin-bottom: 10px;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
@media(max-width: 767px) {
|
28 |
-
.form-inline {
|
29 |
-
display: none;
|
30 |
-
}
|
31 |
-
.filterHide {
|
32 |
-
display: none;
|
33 |
-
}
|
34 |
-
.form-inline button ,.form-inline a {
|
35 |
-
width: 49%;
|
36 |
-
margin-bottom: 10px;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
.checkbox-item{
|
41 |
-
margin: 25px 5px 0 !important;
|
42 |
-
}
|
43 |
-
.checkbox-all-label{
|
44 |
-
padding-left:25px !important;
|
45 |
-
}
|
46 |
-
.checkbox-all{
|
47 |
-
margin-top: 2px !important;
|
48 |
-
}
|
49 |
-
|
50 |
-
|
51 |
-
.checkbox-all-label-btn{
|
52 |
-
padding-left:25px !important;
|
53 |
-
margin-left: -20px;
|
54 |
-
position: absolute;
|
55 |
-
}
|
56 |
-
.checkbox-all-btn{
|
57 |
-
color: #444 !important;
|
58 |
-
}
|
59 |
-
|
60 |
-
.datepicker table tr td.event {
|
61 |
-
background-color: #ffdb99;
|
62 |
-
border-color: #ffb733;
|
63 |
-
color: #000;
|
64 |
-
}
|
65 |
-
.datepicker table tr td.today {
|
66 |
-
background-color: #fff !important;
|
67 |
-
border-color: #fff !important;
|
68 |
-
color: #000;
|
69 |
-
font-weight: 700;
|
70 |
-
font-size: 15px;
|
71 |
-
}
|
72 |
-
.datepicker table tr td.active {
|
73 |
-
background-color: #337ab7 !important;
|
74 |
-
border-color: #2e6da4 !important;
|
75 |
-
color: #fff;
|
76 |
-
}
|
77 |
-
.datepicker-inline{
|
78 |
-
width: 100% !important;
|
79 |
-
}
|
80 |
-
.table-condensed{
|
81 |
-
width: 100%;
|
82 |
-
}
|
83 |
-
#b2s-sched-datepicker-area{
|
84 |
-
background-color: #fff;
|
85 |
-
border: 1px solid #ddd;
|
86 |
-
border-radius: 4px;
|
87 |
-
padding: 10px 15px;
|
88 |
-
margin-top: 10px;
|
89 |
-
}
|
90 |
-
.datepicker-switch, .prev, .next{
|
91 |
-
background: #eee no-repeat;
|
92 |
-
border-radius: 0px !important;
|
93 |
-
}
|
94 |
-
.prev, .next{
|
95 |
-
font-size: 24px;
|
96 |
-
}
|
97 |
-
|
98 |
-
.b2s-calendar-legend-active{
|
99 |
-
color: #337ab7 ;
|
100 |
-
border-color: #2e6da4;
|
101 |
-
border-radius: 4px;
|
102 |
-
}
|
103 |
-
.b2s-calendar-legend-event{
|
104 |
-
color: #ffdb99;
|
105 |
-
border-color: #ffb733;
|
106 |
-
border-radius: 4px;
|
107 |
-
}
|
108 |
-
.b2s-loading-area{
|
109 |
-
width: 100% !important;
|
110 |
-
}
|
111 |
-
.checbox-item-empty{
|
112 |
-
padding: 15px;
|
113 |
-
float:left;
|
114 |
-
}
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
/**edit post **/
|
119 |
-
.network-name{
|
120 |
-
font-weight: bold;
|
121 |
-
}
|
122 |
-
.network-profile{
|
123 |
-
margin-bottom: 5px;
|
124 |
-
}
|
125 |
-
.b2s-post-item-thumb {
|
126 |
-
width: 5%;
|
127 |
-
margin-right: 8px;
|
128 |
-
}
|
129 |
-
|
130 |
-
.b2s-post-item-thumb img {
|
131 |
-
border-radius: 50%;
|
132 |
-
width: 48px;
|
133 |
-
}
|
134 |
-
|
135 |
-
.b2s-post-item-details {
|
136 |
-
width: 93%;
|
137 |
-
}
|
138 |
-
|
139 |
-
.b2s-post-item-details, .b2s-post-item-thumb {
|
140 |
-
float: left;
|
141 |
-
}
|
142 |
-
.b2s-post-item-details h4 {
|
143 |
-
font-size: 16px;
|
144 |
-
font-weight: 600;
|
145 |
-
text-transform: uppercase;
|
146 |
-
margin: 3px 3px 3px 0px;
|
147 |
-
}
|
148 |
-
.b2s-post-item-network-deprecated {
|
149 |
-
font-weight: 600;
|
150 |
-
font-size: 14px;
|
151 |
-
margin: 3px 3px 3px 0px;
|
152 |
-
}
|
153 |
-
|
154 |
-
.btn-circle {
|
155 |
-
width: 30px;
|
156 |
-
height: 30px;
|
157 |
-
text-align: center;
|
158 |
-
padding: 6px 0;
|
159 |
-
font-size: 12px;
|
160 |
-
line-height: 1.428571429;
|
161 |
-
border-radius: 15px;
|
162 |
-
}
|
163 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
164 |
-
margin-right: 10px;
|
165 |
-
margin-bottom: 20px;
|
166 |
-
border: 1px dashed #bdbfc2;
|
167 |
-
box-shadow: none;
|
168 |
-
padding: 5px;
|
169 |
-
}
|
170 |
-
textarea.form-control {
|
171 |
-
height: auto;
|
172 |
-
}
|
173 |
-
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
174 |
-
font-size: 14px;
|
175 |
-
font-weight: normal;
|
176 |
-
line-height: 1.125;
|
177 |
-
width: 100%;
|
178 |
-
border: medium none;
|
179 |
-
border-radius: 0;
|
180 |
-
margin-top: 10px;
|
181 |
-
margin-bottom: 10px;
|
182 |
-
font-family: helvetica,arial,sans-serif;
|
183 |
-
}
|
184 |
-
.b2s-post-item-details-item-message-input{
|
185 |
-
min-height: 100px;
|
186 |
-
}
|
187 |
-
.b2s-post-item-details-url-image{
|
188 |
-
cursor: pointer;
|
189 |
-
}
|
190 |
-
.b2s-user-network-settings-post-format-area label > input {
|
191 |
-
visibility: hidden;
|
192 |
-
position: absolute;
|
193 |
-
}
|
194 |
-
.b2s-settings-checked + img {
|
195 |
-
border: 3px solid #79b232 !important;
|
196 |
-
}
|
197 |
-
.b2s-image-item {
|
198 |
-
background-color: #fff;
|
199 |
-
border: 1px solid #ddd;
|
200 |
-
display: block;
|
201 |
-
float: left;
|
202 |
-
height: 200px;
|
203 |
-
line-height: 1.42857;
|
204 |
-
margin-bottom: 15px;
|
205 |
-
margin-left: 15px;
|
206 |
-
margin-top: 15px;
|
207 |
-
overflow: hidden;
|
208 |
-
padding: 4px;
|
209 |
-
transition: border 0.2s ease-in-out 0s;
|
210 |
-
width: 185px;
|
211 |
-
}
|
212 |
-
.b2s-image-item-thumb {
|
213 |
-
height: 150px;
|
214 |
-
}
|
215 |
-
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
216 |
-
margin-right: 5px !important;
|
217 |
-
}
|
218 |
-
.b2s-image-remove-btn {
|
219 |
-
position: absolute;
|
220 |
-
top: -5px;
|
221 |
-
right: 0px;
|
222 |
-
font-weight: 700 !important;
|
223 |
-
}
|
224 |
-
.b2s-calendar-delete{
|
225 |
-
cursor: pointer;
|
226 |
-
}
|
227 |
-
.b2s-btn-label-premium{
|
228 |
-
color: #fff;
|
229 |
-
text-decoration: none !important;
|
230 |
-
cursor: default !important;
|
231 |
-
}
|
232 |
-
.b2s-btn-label-premium:hover{
|
233 |
-
color: #fff;
|
234 |
-
text-decoration: none !important;
|
235 |
-
cursor: default !important;
|
236 |
-
}
|
237 |
-
.b2s-post-item .label-success{
|
238 |
-
display: none;
|
239 |
-
}
|
240 |
-
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
241 |
-
margin-bottom: 8px !important;
|
242 |
-
}
|
243 |
-
|
244 |
-
.b2s-post-item-info-area {
|
245 |
-
font-size: 11px !important;
|
246 |
-
}
|
247 |
-
|
248 |
-
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
249 |
-
line-height: 1.5 !important;
|
250 |
-
padding: 0 1px 3px !important;
|
251 |
-
}
|
252 |
-
|
253 |
-
.b2s-load-info-meta-tag-modal{
|
254 |
-
margin-top: 8px !important;
|
255 |
-
display: block !important;
|
256 |
-
margin-right: auto !important;
|
257 |
-
margin-left: auto !important;
|
258 |
-
}
|
259 |
-
|
260 |
-
.b2s-post-item-details-tag-add-div {
|
261 |
-
border: 0px !important;
|
262 |
-
box-shadow: 0px 0px 0px #000 !important;
|
263 |
-
}
|
264 |
-
|
265 |
-
.b2s-post-item-details-tag-input-elem {
|
266 |
-
margin: 2px 4px;
|
267 |
-
max-width: 145px !important;
|
268 |
-
}
|
269 |
-
.b2s-calendar-sched-post-btn{
|
270 |
-
font-size: 11px;
|
271 |
-
float: right;
|
272 |
-
padding: 2px 4px 0px 4px;
|
273 |
-
}
|
274 |
-
|
275 |
-
|
276 |
-
.form-inline {
|
277 |
-
width: 100%;
|
278 |
-
margin-bottom: 20px;
|
279 |
-
}
|
280 |
-
.form-inline .form-group {
|
281 |
-
margin-left: 2px;
|
282 |
-
}
|
283 |
-
|
284 |
-
@media(max-width: 549px) {
|
285 |
-
.b2s-post-btn {
|
286 |
-
width: 100%;
|
287 |
-
}
|
288 |
-
.form-inline button, .form-inline a {
|
289 |
-
width: 100%;
|
290 |
-
margin-bottom: 10px;
|
291 |
-
}
|
292 |
-
}
|
293 |
-
@media(max-width: 767px) {
|
294 |
-
.form-inline {
|
295 |
-
display: none;
|
296 |
-
}
|
297 |
-
.filterHide {
|
298 |
-
display: none;
|
299 |
-
}
|
300 |
-
.form-inline button ,.form-inline a {
|
301 |
-
width: 49%;
|
302 |
-
margin-bottom: 10px;
|
303 |
-
}
|
304 |
-
}
|
305 |
-
|
1 |
+
/*Custom*/
|
2 |
+
.b2s-sched-btn {
|
3 |
+
margin-top: 0px;
|
4 |
+
}
|
5 |
+
.media {
|
6 |
+
width: 100%;
|
7 |
+
}
|
8 |
+
.form-inline {
|
9 |
+
width: 100%;
|
10 |
+
margin-bottom: 20px;
|
11 |
+
}
|
12 |
+
.form-inline .form-group {
|
13 |
+
margin-left: 2px;
|
14 |
+
}
|
15 |
+
.media-head {
|
16 |
+
width: 100% !important;
|
17 |
+
}
|
18 |
+
@media(max-width: 549px) {
|
19 |
+
.b2s-post-btn {
|
20 |
+
width: 100%;
|
21 |
+
}
|
22 |
+
.form-inline button, .form-inline a {
|
23 |
+
width: 100%;
|
24 |
+
margin-bottom: 10px;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
@media(max-width: 767px) {
|
28 |
+
.form-inline {
|
29 |
+
display: none;
|
30 |
+
}
|
31 |
+
.filterHide {
|
32 |
+
display: none;
|
33 |
+
}
|
34 |
+
.form-inline button ,.form-inline a {
|
35 |
+
width: 49%;
|
36 |
+
margin-bottom: 10px;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
.checkbox-item{
|
41 |
+
margin: 25px 5px 0 !important;
|
42 |
+
}
|
43 |
+
.checkbox-all-label{
|
44 |
+
padding-left:25px !important;
|
45 |
+
}
|
46 |
+
.checkbox-all{
|
47 |
+
margin-top: 2px !important;
|
48 |
+
}
|
49 |
+
|
50 |
+
|
51 |
+
.checkbox-all-label-btn{
|
52 |
+
padding-left:25px !important;
|
53 |
+
margin-left: -20px;
|
54 |
+
position: absolute;
|
55 |
+
}
|
56 |
+
.checkbox-all-btn{
|
57 |
+
color: #444 !important;
|
58 |
+
}
|
59 |
+
|
60 |
+
.datepicker table tr td.event {
|
61 |
+
background-color: #ffdb99;
|
62 |
+
border-color: #ffb733;
|
63 |
+
color: #000;
|
64 |
+
}
|
65 |
+
.datepicker table tr td.today {
|
66 |
+
background-color: #fff !important;
|
67 |
+
border-color: #fff !important;
|
68 |
+
color: #000;
|
69 |
+
font-weight: 700;
|
70 |
+
font-size: 15px;
|
71 |
+
}
|
72 |
+
.datepicker table tr td.active {
|
73 |
+
background-color: #337ab7 !important;
|
74 |
+
border-color: #2e6da4 !important;
|
75 |
+
color: #fff;
|
76 |
+
}
|
77 |
+
.datepicker-inline{
|
78 |
+
width: 100% !important;
|
79 |
+
}
|
80 |
+
.table-condensed{
|
81 |
+
width: 100%;
|
82 |
+
}
|
83 |
+
#b2s-sched-datepicker-area{
|
84 |
+
background-color: #fff;
|
85 |
+
border: 1px solid #ddd;
|
86 |
+
border-radius: 4px;
|
87 |
+
padding: 10px 15px;
|
88 |
+
margin-top: 10px;
|
89 |
+
}
|
90 |
+
.datepicker-switch, .prev, .next{
|
91 |
+
background: #eee no-repeat;
|
92 |
+
border-radius: 0px !important;
|
93 |
+
}
|
94 |
+
.prev, .next{
|
95 |
+
font-size: 24px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.b2s-calendar-legend-active{
|
99 |
+
color: #337ab7 ;
|
100 |
+
border-color: #2e6da4;
|
101 |
+
border-radius: 4px;
|
102 |
+
}
|
103 |
+
.b2s-calendar-legend-event{
|
104 |
+
color: #ffdb99;
|
105 |
+
border-color: #ffb733;
|
106 |
+
border-radius: 4px;
|
107 |
+
}
|
108 |
+
.b2s-loading-area{
|
109 |
+
width: 100% !important;
|
110 |
+
}
|
111 |
+
.checbox-item-empty{
|
112 |
+
padding: 15px;
|
113 |
+
float:left;
|
114 |
+
}
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
/**edit post **/
|
119 |
+
.network-name{
|
120 |
+
font-weight: bold;
|
121 |
+
}
|
122 |
+
.network-profile{
|
123 |
+
margin-bottom: 5px;
|
124 |
+
}
|
125 |
+
.b2s-post-item-thumb {
|
126 |
+
width: 5%;
|
127 |
+
margin-right: 8px;
|
128 |
+
}
|
129 |
+
|
130 |
+
.b2s-post-item-thumb img {
|
131 |
+
border-radius: 50%;
|
132 |
+
width: 48px;
|
133 |
+
}
|
134 |
+
|
135 |
+
.b2s-post-item-details {
|
136 |
+
width: 93%;
|
137 |
+
}
|
138 |
+
|
139 |
+
.b2s-post-item-details, .b2s-post-item-thumb {
|
140 |
+
float: left;
|
141 |
+
}
|
142 |
+
.b2s-post-item-details h4 {
|
143 |
+
font-size: 16px;
|
144 |
+
font-weight: 600;
|
145 |
+
text-transform: uppercase;
|
146 |
+
margin: 3px 3px 3px 0px;
|
147 |
+
}
|
148 |
+
.b2s-post-item-network-deprecated {
|
149 |
+
font-weight: 600;
|
150 |
+
font-size: 14px;
|
151 |
+
margin: 3px 3px 3px 0px;
|
152 |
+
}
|
153 |
+
|
154 |
+
.btn-circle {
|
155 |
+
width: 30px;
|
156 |
+
height: 30px;
|
157 |
+
text-align: center;
|
158 |
+
padding: 6px 0;
|
159 |
+
font-size: 12px;
|
160 |
+
line-height: 1.428571429;
|
161 |
+
border-radius: 15px;
|
162 |
+
}
|
163 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
164 |
+
margin-right: 10px;
|
165 |
+
margin-bottom: 20px;
|
166 |
+
border: 1px dashed #bdbfc2;
|
167 |
+
box-shadow: none;
|
168 |
+
padding: 5px;
|
169 |
+
}
|
170 |
+
textarea.form-control {
|
171 |
+
height: auto;
|
172 |
+
}
|
173 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
174 |
+
font-size: 14px;
|
175 |
+
font-weight: normal;
|
176 |
+
line-height: 1.125;
|
177 |
+
width: 100%;
|
178 |
+
border: medium none;
|
179 |
+
border-radius: 0;
|
180 |
+
margin-top: 10px;
|
181 |
+
margin-bottom: 10px;
|
182 |
+
font-family: helvetica,arial,sans-serif;
|
183 |
+
}
|
184 |
+
.b2s-post-item-details-item-message-input{
|
185 |
+
min-height: 100px;
|
186 |
+
}
|
187 |
+
.b2s-post-item-details-url-image{
|
188 |
+
cursor: pointer;
|
189 |
+
}
|
190 |
+
.b2s-user-network-settings-post-format-area label > input {
|
191 |
+
visibility: hidden;
|
192 |
+
position: absolute;
|
193 |
+
}
|
194 |
+
.b2s-settings-checked + img {
|
195 |
+
border: 3px solid #79b232 !important;
|
196 |
+
}
|
197 |
+
.b2s-image-item {
|
198 |
+
background-color: #fff;
|
199 |
+
border: 1px solid #ddd;
|
200 |
+
display: block;
|
201 |
+
float: left;
|
202 |
+
height: 200px;
|
203 |
+
line-height: 1.42857;
|
204 |
+
margin-bottom: 15px;
|
205 |
+
margin-left: 15px;
|
206 |
+
margin-top: 15px;
|
207 |
+
overflow: hidden;
|
208 |
+
padding: 4px;
|
209 |
+
transition: border 0.2s ease-in-out 0s;
|
210 |
+
width: 185px;
|
211 |
+
}
|
212 |
+
.b2s-image-item-thumb {
|
213 |
+
height: 150px;
|
214 |
+
}
|
215 |
+
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
216 |
+
margin-right: 5px !important;
|
217 |
+
}
|
218 |
+
.b2s-image-remove-btn {
|
219 |
+
position: absolute;
|
220 |
+
top: -5px;
|
221 |
+
right: 0px;
|
222 |
+
font-weight: 700 !important;
|
223 |
+
}
|
224 |
+
.b2s-calendar-delete{
|
225 |
+
cursor: pointer;
|
226 |
+
}
|
227 |
+
.b2s-btn-label-premium{
|
228 |
+
color: #fff;
|
229 |
+
text-decoration: none !important;
|
230 |
+
cursor: default !important;
|
231 |
+
}
|
232 |
+
.b2s-btn-label-premium:hover{
|
233 |
+
color: #fff;
|
234 |
+
text-decoration: none !important;
|
235 |
+
cursor: default !important;
|
236 |
+
}
|
237 |
+
.b2s-post-item .label-success{
|
238 |
+
display: none;
|
239 |
+
}
|
240 |
+
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
241 |
+
margin-bottom: 8px !important;
|
242 |
+
}
|
243 |
+
|
244 |
+
.b2s-post-item-info-area {
|
245 |
+
font-size: 11px !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
249 |
+
line-height: 1.5 !important;
|
250 |
+
padding: 0 1px 3px !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.b2s-load-info-meta-tag-modal{
|
254 |
+
margin-top: 8px !important;
|
255 |
+
display: block !important;
|
256 |
+
margin-right: auto !important;
|
257 |
+
margin-left: auto !important;
|
258 |
+
}
|
259 |
+
|
260 |
+
.b2s-post-item-details-tag-add-div {
|
261 |
+
border: 0px !important;
|
262 |
+
box-shadow: 0px 0px 0px #000 !important;
|
263 |
+
}
|
264 |
+
|
265 |
+
.b2s-post-item-details-tag-input-elem {
|
266 |
+
margin: 2px 4px;
|
267 |
+
max-width: 145px !important;
|
268 |
+
}
|
269 |
+
.b2s-calendar-sched-post-btn{
|
270 |
+
font-size: 11px;
|
271 |
+
float: right;
|
272 |
+
padding: 2px 4px 0px 4px;
|
273 |
+
}
|
274 |
+
|
275 |
+
|
276 |
+
.form-inline {
|
277 |
+
width: 100%;
|
278 |
+
margin-bottom: 20px;
|
279 |
+
}
|
280 |
+
.form-inline .form-group {
|
281 |
+
margin-left: 2px;
|
282 |
+
}
|
283 |
+
|
284 |
+
@media(max-width: 549px) {
|
285 |
+
.b2s-post-btn {
|
286 |
+
width: 100%;
|
287 |
+
}
|
288 |
+
.form-inline button, .form-inline a {
|
289 |
+
width: 100%;
|
290 |
+
margin-bottom: 10px;
|
291 |
+
}
|
292 |
+
}
|
293 |
+
@media(max-width: 767px) {
|
294 |
+
.form-inline {
|
295 |
+
display: none;
|
296 |
+
}
|
297 |
+
.filterHide {
|
298 |
+
display: none;
|
299 |
+
}
|
300 |
+
.form-inline button ,.form-inline a {
|
301 |
+
width: 49%;
|
302 |
+
margin-bottom: 10px;
|
303 |
+
}
|
304 |
+
}
|
305 |
+
|
assets/css/b2s/post.css
CHANGED
@@ -1,40 +1,44 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
.b2s-post-btn {
|
3 |
-
float: left;
|
4 |
-
}
|
5 |
-
.form-inline {
|
6 |
-
width: 100%;
|
7 |
-
margin-bottom: 20px;
|
8 |
-
}
|
9 |
-
.form-inline .form-group {
|
10 |
-
margin-left: 2px;
|
11 |
-
}
|
12 |
-
@media(max-width: 549px) {
|
13 |
-
.b2s-post-btn {
|
14 |
-
width: 100%;
|
15 |
-
}
|
16 |
-
.form-inline button, .form-inline a {
|
17 |
-
width: 100%;
|
18 |
-
margin-bottom: 10px;
|
19 |
-
}
|
20 |
-
}
|
21 |
-
@media(max-width: 767px) {
|
22 |
-
.form-inline {
|
23 |
-
display: none;
|
24 |
-
}
|
25 |
-
.filterHide {
|
26 |
-
display: none;
|
27 |
-
}
|
28 |
-
.form-inline button ,.form-inline a {
|
29 |
-
width: 49%;
|
30 |
-
margin-bottom: 10px;
|
31 |
-
}
|
32 |
-
}
|
33 |
-
|
34 |
-
.b2s-loading-area{
|
35 |
-
width: 100% !important;
|
36 |
-
}
|
37 |
-
|
38 |
-
.b2s-post-approve-info{
|
39 |
-
display: none;
|
|
|
|
|
|
|
|
|
40 |
}
|
1 |
+
/*Custom*/
|
2 |
+
.b2s-post-btn {
|
3 |
+
float: left;
|
4 |
+
}
|
5 |
+
.form-inline {
|
6 |
+
width: 100%;
|
7 |
+
margin-bottom: 20px;
|
8 |
+
}
|
9 |
+
.form-inline .form-group {
|
10 |
+
margin-left: 2px;
|
11 |
+
}
|
12 |
+
@media(max-width: 549px) {
|
13 |
+
.b2s-post-btn {
|
14 |
+
width: 100%;
|
15 |
+
}
|
16 |
+
.form-inline button, .form-inline a {
|
17 |
+
width: 100%;
|
18 |
+
margin-bottom: 10px;
|
19 |
+
}
|
20 |
+
}
|
21 |
+
@media(max-width: 767px) {
|
22 |
+
.form-inline {
|
23 |
+
display: none;
|
24 |
+
}
|
25 |
+
.filterHide {
|
26 |
+
display: none;
|
27 |
+
}
|
28 |
+
.form-inline button ,.form-inline a {
|
29 |
+
width: 49%;
|
30 |
+
margin-bottom: 10px;
|
31 |
+
}
|
32 |
+
}
|
33 |
+
|
34 |
+
.b2s-loading-area{
|
35 |
+
width: 100% !important;
|
36 |
+
}
|
37 |
+
|
38 |
+
.b2s-post-approve-info{
|
39 |
+
display: none;
|
40 |
+
}
|
41 |
+
|
42 |
+
.loadDraftBtn {
|
43 |
+
margin-right: 5px;
|
44 |
}
|
assets/css/b2s/post.draft.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
.deleteDraftBtn {
|
2 |
-
margin-right: 10px;
|
3 |
}
|
1 |
+
.deleteDraftBtn {
|
2 |
+
margin-right: 10px;
|
3 |
}
|
assets/css/b2s/post.notice.css
CHANGED
@@ -1,66 +1,66 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
.network-text-info{
|
3 |
-
word-break: keep-all;
|
4 |
-
}
|
5 |
-
.b2s-publish-btn {
|
6 |
-
margin-top: 0px;
|
7 |
-
}
|
8 |
-
.media-nav {
|
9 |
-
width: 100% !important;
|
10 |
-
}
|
11 |
-
.form-inline {
|
12 |
-
width: 100%;
|
13 |
-
margin-bottom: 20px;
|
14 |
-
}
|
15 |
-
.form-inline .form-group {
|
16 |
-
margin-left: 2px;
|
17 |
-
}
|
18 |
-
@media(max-width: 549px) {
|
19 |
-
.b2s-post-btn {
|
20 |
-
width: 100%;
|
21 |
-
}
|
22 |
-
.form-inline button, .form-inline a {
|
23 |
-
width: 100%;
|
24 |
-
margin-bottom: 10px;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
@media(max-width: 767px) {
|
28 |
-
.form-inline {
|
29 |
-
display: none;
|
30 |
-
}
|
31 |
-
.filterHide {
|
32 |
-
display: none;
|
33 |
-
}
|
34 |
-
.form-inline button ,.form-inline a {
|
35 |
-
width: 49%;
|
36 |
-
margin-bottom: 10px;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
.checkbox-item{
|
41 |
-
margin: 25px 5px 0 !important;
|
42 |
-
}
|
43 |
-
.checkbox-all-label{
|
44 |
-
padding-left:25px !important;
|
45 |
-
}
|
46 |
-
|
47 |
-
.checkbox-all{
|
48 |
-
margin-top: 2px !important;
|
49 |
-
}
|
50 |
-
|
51 |
-
.checkbox-all-label-btn{
|
52 |
-
padding-left:25px !important;
|
53 |
-
margin-left: -20px;
|
54 |
-
position: absolute;
|
55 |
-
}
|
56 |
-
.checkbox-all-btn{
|
57 |
-
color: #444 !important;
|
58 |
-
}
|
59 |
-
|
60 |
-
.b2s-loading-area{
|
61 |
-
width: 100% !important;
|
62 |
-
}
|
63 |
-
.checbox-item-empty{
|
64 |
-
padding: 15px;
|
65 |
-
float:left;
|
66 |
}
|
1 |
+
/*Custom*/
|
2 |
+
.network-text-info{
|
3 |
+
word-break: keep-all;
|
4 |
+
}
|
5 |
+
.b2s-publish-btn {
|
6 |
+
margin-top: 0px;
|
7 |
+
}
|
8 |
+
.media-nav {
|
9 |
+
width: 100% !important;
|
10 |
+
}
|
11 |
+
.form-inline {
|
12 |
+
width: 100%;
|
13 |
+
margin-bottom: 20px;
|
14 |
+
}
|
15 |
+
.form-inline .form-group {
|
16 |
+
margin-left: 2px;
|
17 |
+
}
|
18 |
+
@media(max-width: 549px) {
|
19 |
+
.b2s-post-btn {
|
20 |
+
width: 100%;
|
21 |
+
}
|
22 |
+
.form-inline button, .form-inline a {
|
23 |
+
width: 100%;
|
24 |
+
margin-bottom: 10px;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
@media(max-width: 767px) {
|
28 |
+
.form-inline {
|
29 |
+
display: none;
|
30 |
+
}
|
31 |
+
.filterHide {
|
32 |
+
display: none;
|
33 |
+
}
|
34 |
+
.form-inline button ,.form-inline a {
|
35 |
+
width: 49%;
|
36 |
+
margin-bottom: 10px;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
.checkbox-item{
|
41 |
+
margin: 25px 5px 0 !important;
|
42 |
+
}
|
43 |
+
.checkbox-all-label{
|
44 |
+
padding-left:25px !important;
|
45 |
+
}
|
46 |
+
|
47 |
+
.checkbox-all{
|
48 |
+
margin-top: 2px !important;
|
49 |
+
}
|
50 |
+
|
51 |
+
.checkbox-all-label-btn{
|
52 |
+
padding-left:25px !important;
|
53 |
+
margin-left: -20px;
|
54 |
+
position: absolute;
|
55 |
+
}
|
56 |
+
.checkbox-all-btn{
|
57 |
+
color: #444 !important;
|
58 |
+
}
|
59 |
+
|
60 |
+
.b2s-loading-area{
|
61 |
+
width: 100% !important;
|
62 |
+
}
|
63 |
+
.checbox-item-empty{
|
64 |
+
padding: 15px;
|
65 |
+
float:left;
|
66 |
}
|
assets/css/b2s/post.publish.css
CHANGED
@@ -1,66 +1,66 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
.network-text-info{
|
3 |
-
word-break: keep-all;
|
4 |
-
}
|
5 |
-
.b2s-publish-btn {
|
6 |
-
margin-top: 0px;
|
7 |
-
}
|
8 |
-
.media-nav {
|
9 |
-
width: 100% !important;
|
10 |
-
}
|
11 |
-
.form-inline {
|
12 |
-
width: 100%;
|
13 |
-
margin-bottom: 20px;
|
14 |
-
}
|
15 |
-
.form-inline .form-group {
|
16 |
-
margin-left: 2px;
|
17 |
-
}
|
18 |
-
@media(max-width: 549px) {
|
19 |
-
.b2s-post-btn {
|
20 |
-
width: 100%;
|
21 |
-
}
|
22 |
-
.form-inline button, .form-inline a {
|
23 |
-
width: 100%;
|
24 |
-
margin-bottom: 10px;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
@media(max-width: 767px) {
|
28 |
-
.form-inline {
|
29 |
-
display: none;
|
30 |
-
}
|
31 |
-
.filterHide {
|
32 |
-
display: none;
|
33 |
-
}
|
34 |
-
.form-inline button ,.form-inline a {
|
35 |
-
width: 49%;
|
36 |
-
margin-bottom: 10px;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
.checkbox-item{
|
41 |
-
margin: 25px 5px 0 !important;
|
42 |
-
}
|
43 |
-
.checkbox-all-label{
|
44 |
-
padding-left:25px !important;
|
45 |
-
}
|
46 |
-
|
47 |
-
.checkbox-all{
|
48 |
-
margin-top: 2px !important;
|
49 |
-
}
|
50 |
-
|
51 |
-
.checkbox-all-label-btn{
|
52 |
-
padding-left:25px !important;
|
53 |
-
margin-left: -20px;
|
54 |
-
position: absolute;
|
55 |
-
}
|
56 |
-
.checkbox-all-btn{
|
57 |
-
color: #444 !important;
|
58 |
-
}
|
59 |
-
|
60 |
-
.b2s-loading-area{
|
61 |
-
width: 100% !important;
|
62 |
-
}
|
63 |
-
.checbox-item-empty{
|
64 |
-
padding: 15px;
|
65 |
-
float:left;
|
66 |
}
|
1 |
+
/*Custom*/
|
2 |
+
.network-text-info{
|
3 |
+
word-break: keep-all;
|
4 |
+
}
|
5 |
+
.b2s-publish-btn {
|
6 |
+
margin-top: 0px;
|
7 |
+
}
|
8 |
+
.media-nav {
|
9 |
+
width: 100% !important;
|
10 |
+
}
|
11 |
+
.form-inline {
|
12 |
+
width: 100%;
|
13 |
+
margin-bottom: 20px;
|
14 |
+
}
|
15 |
+
.form-inline .form-group {
|
16 |
+
margin-left: 2px;
|
17 |
+
}
|
18 |
+
@media(max-width: 549px) {
|
19 |
+
.b2s-post-btn {
|
20 |
+
width: 100%;
|
21 |
+
}
|
22 |
+
.form-inline button, .form-inline a {
|
23 |
+
width: 100%;
|
24 |
+
margin-bottom: 10px;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
@media(max-width: 767px) {
|
28 |
+
.form-inline {
|
29 |
+
display: none;
|
30 |
+
}
|
31 |
+
.filterHide {
|
32 |
+
display: none;
|
33 |
+
}
|
34 |
+
.form-inline button ,.form-inline a {
|
35 |
+
width: 49%;
|
36 |
+
margin-bottom: 10px;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
.checkbox-item{
|
41 |
+
margin: 25px 5px 0 !important;
|
42 |
+
}
|
43 |
+
.checkbox-all-label{
|
44 |
+
padding-left:25px !important;
|
45 |
+
}
|
46 |
+
|
47 |
+
.checkbox-all{
|
48 |
+
margin-top: 2px !important;
|
49 |
+
}
|
50 |
+
|
51 |
+
.checkbox-all-label-btn{
|
52 |
+
padding-left:25px !important;
|
53 |
+
margin-left: -20px;
|
54 |
+
position: absolute;
|
55 |
+
}
|
56 |
+
.checkbox-all-btn{
|
57 |
+
color: #444 !important;
|
58 |
+
}
|
59 |
+
|
60 |
+
.b2s-loading-area{
|
61 |
+
width: 100% !important;
|
62 |
+
}
|
63 |
+
.checbox-item-empty{
|
64 |
+
padding: 15px;
|
65 |
+
float:left;
|
66 |
}
|
assets/css/b2s/post.sched.css
CHANGED
@@ -1,312 +1,312 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
.b2s-sched-btn {
|
3 |
-
margin-top: 0px;
|
4 |
-
}
|
5 |
-
.media {
|
6 |
-
width: 100%;
|
7 |
-
}
|
8 |
-
.form-inline {
|
9 |
-
width: 100%;
|
10 |
-
margin-bottom: 20px;
|
11 |
-
}
|
12 |
-
.form-inline .form-group {
|
13 |
-
margin-left: 2px;
|
14 |
-
}
|
15 |
-
.media-head {
|
16 |
-
width: 100% !important;
|
17 |
-
}
|
18 |
-
@media(max-width: 549px) {
|
19 |
-
.b2s-post-btn {
|
20 |
-
width: 100%;
|
21 |
-
}
|
22 |
-
.form-inline button, .form-inline a {
|
23 |
-
width: 100%;
|
24 |
-
margin-bottom: 10px;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
@media(max-width: 767px) {
|
28 |
-
.form-inline {
|
29 |
-
display: none;
|
30 |
-
}
|
31 |
-
.filterHide {
|
32 |
-
display: none;
|
33 |
-
}
|
34 |
-
.form-inline button ,.form-inline a {
|
35 |
-
width: 49%;
|
36 |
-
margin-bottom: 10px;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
.checkbox-item{
|
41 |
-
margin: 25px 5px 0 !important;
|
42 |
-
}
|
43 |
-
.checkbox-all-label{
|
44 |
-
padding-left:25px !important;
|
45 |
-
}
|
46 |
-
.checkbox-all{
|
47 |
-
margin-top: 2px !important;
|
48 |
-
}
|
49 |
-
|
50 |
-
|
51 |
-
.checkbox-all-label-btn{
|
52 |
-
padding-left:25px !important;
|
53 |
-
margin-left: -20px;
|
54 |
-
position: absolute;
|
55 |
-
}
|
56 |
-
.checkbox-all-btn{
|
57 |
-
color: #444 !important;
|
58 |
-
}
|
59 |
-
|
60 |
-
.datepicker table tr td.event {
|
61 |
-
background-color: #ffdb99;
|
62 |
-
border-color: #ffb733;
|
63 |
-
color: #000;
|
64 |
-
}
|
65 |
-
.datepicker table tr td.today {
|
66 |
-
background-color: #fff !important;
|
67 |
-
border-color: #fff !important;
|
68 |
-
color: #000;
|
69 |
-
font-weight: 700;
|
70 |
-
font-size: 15px;
|
71 |
-
}
|
72 |
-
.datepicker table tr td.active {
|
73 |
-
background-color: #337ab7 !important;
|
74 |
-
border-color: #2e6da4 !important;
|
75 |
-
color: #fff;
|
76 |
-
}
|
77 |
-
.datepicker-inline{
|
78 |
-
width: 100% !important;
|
79 |
-
}
|
80 |
-
.table-condensed{
|
81 |
-
width: 100%;
|
82 |
-
}
|
83 |
-
#b2s-sched-datepicker-area{
|
84 |
-
background-color: #fff;
|
85 |
-
border: 1px solid #ddd;
|
86 |
-
border-radius: 4px;
|
87 |
-
padding: 10px 15px;
|
88 |
-
margin-top: 10px;
|
89 |
-
}
|
90 |
-
.datepicker-switch, .prev, .next{
|
91 |
-
background: #eee no-repeat;
|
92 |
-
border-radius: 0px !important;
|
93 |
-
}
|
94 |
-
.prev, .next{
|
95 |
-
font-size: 24px;
|
96 |
-
}
|
97 |
-
|
98 |
-
.b2s-calendar-legend-active{
|
99 |
-
color: #337ab7 ;
|
100 |
-
border-color: #2e6da4;
|
101 |
-
border-radius: 4px;
|
102 |
-
}
|
103 |
-
.b2s-calendar-legend-event{
|
104 |
-
color: #ffdb99;
|
105 |
-
border-color: #ffb733;
|
106 |
-
border-radius: 4px;
|
107 |
-
}
|
108 |
-
.b2s-loading-area{
|
109 |
-
width: 100% !important;
|
110 |
-
}
|
111 |
-
.checbox-item-empty{
|
112 |
-
padding: 15px;
|
113 |
-
float:left;
|
114 |
-
}
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
/**edit post **/
|
119 |
-
.network-name{
|
120 |
-
font-weight: bold;
|
121 |
-
}
|
122 |
-
.network-profile{
|
123 |
-
margin-bottom: 5px;
|
124 |
-
}
|
125 |
-
.b2s-post-item-thumb {
|
126 |
-
width: 5%;
|
127 |
-
margin-right: 8px;
|
128 |
-
}
|
129 |
-
|
130 |
-
.b2s-post-item-thumb img {
|
131 |
-
border-radius: 50%;
|
132 |
-
width: 48px;
|
133 |
-
}
|
134 |
-
|
135 |
-
.b2s-post-item-details {
|
136 |
-
width: 93%;
|
137 |
-
}
|
138 |
-
|
139 |
-
.b2s-post-item-details, .b2s-post-item-thumb {
|
140 |
-
float: left;
|
141 |
-
}
|
142 |
-
.b2s-post-item-details h4 {
|
143 |
-
font-size: 16px;
|
144 |
-
font-weight: 600;
|
145 |
-
text-transform: uppercase;
|
146 |
-
margin: 3px 3px 3px 0px;
|
147 |
-
}
|
148 |
-
.b2s-post-item-network-deprecated {
|
149 |
-
font-weight: 600;
|
150 |
-
font-size: 14px;
|
151 |
-
margin: 3px 3px 3px 0px;
|
152 |
-
}
|
153 |
-
|
154 |
-
.btn-circle {
|
155 |
-
width: 30px;
|
156 |
-
height: 30px;
|
157 |
-
text-align: center;
|
158 |
-
padding: 6px 0;
|
159 |
-
font-size: 12px;
|
160 |
-
line-height: 1.428571429;
|
161 |
-
border-radius: 15px;
|
162 |
-
}
|
163 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
164 |
-
margin-right: 10px;
|
165 |
-
margin-bottom: 20px;
|
166 |
-
border: 1px dashed #bdbfc2;
|
167 |
-
box-shadow: none;
|
168 |
-
padding: 5px;
|
169 |
-
}
|
170 |
-
textarea.form-control {
|
171 |
-
height: auto;
|
172 |
-
}
|
173 |
-
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
174 |
-
font-size: 14px;
|
175 |
-
font-weight: normal;
|
176 |
-
line-height: 1.125;
|
177 |
-
width: 100%;
|
178 |
-
border: medium none;
|
179 |
-
border-radius: 0;
|
180 |
-
margin-top: 10px;
|
181 |
-
margin-bottom: 10px;
|
182 |
-
font-family: helvetica,arial,sans-serif;
|
183 |
-
}
|
184 |
-
.b2s-post-item-details-item-message-input{
|
185 |
-
min-height: 100px;
|
186 |
-
}
|
187 |
-
.b2s-post-item-details-url-image{
|
188 |
-
cursor: pointer;
|
189 |
-
}
|
190 |
-
.b2s-user-network-settings-post-format-area label > input {
|
191 |
-
visibility: hidden;
|
192 |
-
position: absolute;
|
193 |
-
}
|
194 |
-
.b2s-settings-checked + img {
|
195 |
-
border: 3px solid #79b232 !important;
|
196 |
-
}
|
197 |
-
.b2s-image-item {
|
198 |
-
background-color: #fff;
|
199 |
-
border: 1px solid #ddd;
|
200 |
-
display: block;
|
201 |
-
float: left;
|
202 |
-
height: 200px;
|
203 |
-
line-height: 1.42857;
|
204 |
-
margin-bottom: 15px;
|
205 |
-
margin-left: 15px;
|
206 |
-
margin-top: 15px;
|
207 |
-
overflow: hidden;
|
208 |
-
padding: 4px;
|
209 |
-
transition: border 0.2s ease-in-out 0s;
|
210 |
-
width: 185px;
|
211 |
-
}
|
212 |
-
.b2s-image-item-thumb {
|
213 |
-
height: 150px;
|
214 |
-
}
|
215 |
-
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
216 |
-
margin-right: 5px !important;
|
217 |
-
}
|
218 |
-
.b2s-image-remove-btn {
|
219 |
-
position: absolute;
|
220 |
-
top: -5px;
|
221 |
-
right: 0px;
|
222 |
-
font-weight: 700 !important;
|
223 |
-
}
|
224 |
-
.b2s-calendar-delete{
|
225 |
-
cursor: pointer;
|
226 |
-
}
|
227 |
-
.b2s-btn-label-premium{
|
228 |
-
color: #fff;
|
229 |
-
text-decoration: none !important;
|
230 |
-
cursor: default !important;
|
231 |
-
}
|
232 |
-
.b2s-btn-label-premium:hover{
|
233 |
-
color: #fff;
|
234 |
-
text-decoration: none !important;
|
235 |
-
cursor: default !important;
|
236 |
-
}
|
237 |
-
.b2s-post-item .label-success{
|
238 |
-
display: none;
|
239 |
-
}
|
240 |
-
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
241 |
-
margin-bottom: 8px !important;
|
242 |
-
}
|
243 |
-
|
244 |
-
.b2s-post-item-info-area {
|
245 |
-
font-size: 11px !important;
|
246 |
-
}
|
247 |
-
|
248 |
-
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
249 |
-
line-height: 1.5 !important;
|
250 |
-
padding: 0 1px 3px !important;
|
251 |
-
}
|
252 |
-
|
253 |
-
.b2s-load-info-meta-tag-modal{
|
254 |
-
margin-top: 8px !important;
|
255 |
-
display: block !important;
|
256 |
-
margin-right: auto !important;
|
257 |
-
margin-left: auto !important;
|
258 |
-
}
|
259 |
-
|
260 |
-
.b2s-post-item-details-tag-add-div {
|
261 |
-
border: 0px !important;
|
262 |
-
box-shadow: 0px 0px 0px #000 !important;
|
263 |
-
}
|
264 |
-
|
265 |
-
.b2s-post-item-details-tag-input-elem {
|
266 |
-
margin: 2px 4px;
|
267 |
-
max-width: 145px !important;
|
268 |
-
}
|
269 |
-
.b2s-calendar-sched-post-btn{
|
270 |
-
font-size: 11px;
|
271 |
-
float: right;
|
272 |
-
padding: 2px 4px 0px 4px;
|
273 |
-
}
|
274 |
-
|
275 |
-
|
276 |
-
.form-inline {
|
277 |
-
width: 100%;
|
278 |
-
margin-bottom: 20px;
|
279 |
-
}
|
280 |
-
.form-inline .form-group {
|
281 |
-
margin-left: 2px;
|
282 |
-
}
|
283 |
-
|
284 |
-
@media(max-width: 549px) {
|
285 |
-
.b2s-post-btn {
|
286 |
-
width: 100%;
|
287 |
-
}
|
288 |
-
.form-inline button, .form-inline a {
|
289 |
-
width: 100%;
|
290 |
-
margin-bottom: 10px;
|
291 |
-
}
|
292 |
-
}
|
293 |
-
@media(max-width: 767px) {
|
294 |
-
.form-inline {
|
295 |
-
display: none;
|
296 |
-
}
|
297 |
-
.filterHide {
|
298 |
-
display: none;
|
299 |
-
}
|
300 |
-
.form-inline button ,.form-inline a {
|
301 |
-
width: 49%;
|
302 |
-
margin-bottom: 10px;
|
303 |
-
}
|
304 |
-
}
|
305 |
-
|
306 |
-
.img-thumbnail{
|
307 |
-
display: block !important;
|
308 |
-
height: auto;
|
309 |
-
margin-left: auto;
|
310 |
-
margin-right: auto;
|
311 |
-
max-height: 100%;
|
312 |
-
}
|
1 |
+
/*Custom*/
|
2 |
+
.b2s-sched-btn {
|
3 |
+
margin-top: 0px;
|
4 |
+
}
|
5 |
+
.media {
|
6 |
+
width: 100%;
|
7 |
+
}
|
8 |
+
.form-inline {
|
9 |
+
width: 100%;
|
10 |
+
margin-bottom: 20px;
|
11 |
+
}
|
12 |
+
.form-inline .form-group {
|
13 |
+
margin-left: 2px;
|
14 |
+
}
|
15 |
+
.media-head {
|
16 |
+
width: 100% !important;
|
17 |
+
}
|
18 |
+
@media(max-width: 549px) {
|
19 |
+
.b2s-post-btn {
|
20 |
+
width: 100%;
|
21 |
+
}
|
22 |
+
.form-inline button, .form-inline a {
|
23 |
+
width: 100%;
|
24 |
+
margin-bottom: 10px;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
@media(max-width: 767px) {
|
28 |
+
.form-inline {
|
29 |
+
display: none;
|
30 |
+
}
|
31 |
+
.filterHide {
|
32 |
+
display: none;
|
33 |
+
}
|
34 |
+
.form-inline button ,.form-inline a {
|
35 |
+
width: 49%;
|
36 |
+
margin-bottom: 10px;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
.checkbox-item{
|
41 |
+
margin: 25px 5px 0 !important;
|
42 |
+
}
|
43 |
+
.checkbox-all-label{
|
44 |
+
padding-left:25px !important;
|
45 |
+
}
|
46 |
+
.checkbox-all{
|
47 |
+
margin-top: 2px !important;
|
48 |
+
}
|
49 |
+
|
50 |
+
|
51 |
+
.checkbox-all-label-btn{
|
52 |
+
padding-left:25px !important;
|
53 |
+
margin-left: -20px;
|
54 |
+
position: absolute;
|
55 |
+
}
|
56 |
+
.checkbox-all-btn{
|
57 |
+
color: #444 !important;
|
58 |
+
}
|
59 |
+
|
60 |
+
.datepicker table tr td.event {
|
61 |
+
background-color: #ffdb99;
|
62 |
+
border-color: #ffb733;
|
63 |
+
color: #000;
|
64 |
+
}
|
65 |
+
.datepicker table tr td.today {
|
66 |
+
background-color: #fff !important;
|
67 |
+
border-color: #fff !important;
|
68 |
+
color: #000;
|
69 |
+
font-weight: 700;
|
70 |
+
font-size: 15px;
|
71 |
+
}
|
72 |
+
.datepicker table tr td.active {
|
73 |
+
background-color: #337ab7 !important;
|
74 |
+
border-color: #2e6da4 !important;
|
75 |
+
color: #fff;
|
76 |
+
}
|
77 |
+
.datepicker-inline{
|
78 |
+
width: 100% !important;
|
79 |
+
}
|
80 |
+
.table-condensed{
|
81 |
+
width: 100%;
|
82 |
+
}
|
83 |
+
#b2s-sched-datepicker-area{
|
84 |
+
background-color: #fff;
|
85 |
+
border: 1px solid #ddd;
|
86 |
+
border-radius: 4px;
|
87 |
+
padding: 10px 15px;
|
88 |
+
margin-top: 10px;
|
89 |
+
}
|
90 |
+
.datepicker-switch, .prev, .next{
|
91 |
+
background: #eee no-repeat;
|
92 |
+
border-radius: 0px !important;
|
93 |
+
}
|
94 |
+
.prev, .next{
|
95 |
+
font-size: 24px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.b2s-calendar-legend-active{
|
99 |
+
color: #337ab7 ;
|
100 |
+
border-color: #2e6da4;
|
101 |
+
border-radius: 4px;
|
102 |
+
}
|
103 |
+
.b2s-calendar-legend-event{
|
104 |
+
color: #ffdb99;
|
105 |
+
border-color: #ffb733;
|
106 |
+
border-radius: 4px;
|
107 |
+
}
|
108 |
+
.b2s-loading-area{
|
109 |
+
width: 100% !important;
|
110 |
+
}
|
111 |
+
.checbox-item-empty{
|
112 |
+
padding: 15px;
|
113 |
+
float:left;
|
114 |
+
}
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
/**edit post **/
|
119 |
+
.network-name{
|
120 |
+
font-weight: bold;
|
121 |
+
}
|
122 |
+
.network-profile{
|
123 |
+
margin-bottom: 5px;
|
124 |
+
}
|
125 |
+
.b2s-post-item-thumb {
|
126 |
+
width: 5%;
|
127 |
+
margin-right: 8px;
|
128 |
+
}
|
129 |
+
|
130 |
+
.b2s-post-item-thumb img {
|
131 |
+
border-radius: 50%;
|
132 |
+
width: 48px;
|
133 |
+
}
|
134 |
+
|
135 |
+
.b2s-post-item-details {
|
136 |
+
width: 93%;
|
137 |
+
}
|
138 |
+
|
139 |
+
.b2s-post-item-details, .b2s-post-item-thumb {
|
140 |
+
float: left;
|
141 |
+
}
|
142 |
+
.b2s-post-item-details h4 {
|
143 |
+
font-size: 16px;
|
144 |
+
font-weight: 600;
|
145 |
+
text-transform: uppercase;
|
146 |
+
margin: 3px 3px 3px 0px;
|
147 |
+
}
|
148 |
+
.b2s-post-item-network-deprecated {
|
149 |
+
font-weight: 600;
|
150 |
+
font-size: 14px;
|
151 |
+
margin: 3px 3px 3px 0px;
|
152 |
+
}
|
153 |
+
|
154 |
+
.btn-circle {
|
155 |
+
width: 30px;
|
156 |
+
height: 30px;
|
157 |
+
text-align: center;
|
158 |
+
padding: 6px 0;
|
159 |
+
font-size: 12px;
|
160 |
+
line-height: 1.428571429;
|
161 |
+
border-radius: 15px;
|
162 |
+
}
|
163 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border {
|
164 |
+
margin-right: 10px;
|
165 |
+
margin-bottom: 20px;
|
166 |
+
border: 1px dashed #bdbfc2;
|
167 |
+
box-shadow: none;
|
168 |
+
padding: 5px;
|
169 |
+
}
|
170 |
+
textarea.form-control {
|
171 |
+
height: auto;
|
172 |
+
}
|
173 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input {
|
174 |
+
font-size: 14px;
|
175 |
+
font-weight: normal;
|
176 |
+
line-height: 1.125;
|
177 |
+
width: 100%;
|
178 |
+
border: medium none;
|
179 |
+
border-radius: 0;
|
180 |
+
margin-top: 10px;
|
181 |
+
margin-bottom: 10px;
|
182 |
+
font-family: helvetica,arial,sans-serif;
|
183 |
+
}
|
184 |
+
.b2s-post-item-details-item-message-input{
|
185 |
+
min-height: 100px;
|
186 |
+
}
|
187 |
+
.b2s-post-item-details-url-image{
|
188 |
+
cursor: pointer;
|
189 |
+
}
|
190 |
+
.b2s-user-network-settings-post-format-area label > input {
|
191 |
+
visibility: hidden;
|
192 |
+
position: absolute;
|
193 |
+
}
|
194 |
+
.b2s-settings-checked + img {
|
195 |
+
border: 3px solid #79b232 !important;
|
196 |
+
}
|
197 |
+
.b2s-image-item {
|
198 |
+
background-color: #fff;
|
199 |
+
border: 1px solid #ddd;
|
200 |
+
display: block;
|
201 |
+
float: left;
|
202 |
+
height: 200px;
|
203 |
+
line-height: 1.42857;
|
204 |
+
margin-bottom: 15px;
|
205 |
+
margin-left: 15px;
|
206 |
+
margin-top: 15px;
|
207 |
+
overflow: hidden;
|
208 |
+
padding: 4px;
|
209 |
+
transition: border 0.2s ease-in-out 0s;
|
210 |
+
width: 185px;
|
211 |
+
}
|
212 |
+
.b2s-image-item-thumb {
|
213 |
+
height: 150px;
|
214 |
+
}
|
215 |
+
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
216 |
+
margin-right: 5px !important;
|
217 |
+
}
|
218 |
+
.b2s-image-remove-btn {
|
219 |
+
position: absolute;
|
220 |
+
top: -5px;
|
221 |
+
right: 0px;
|
222 |
+
font-weight: 700 !important;
|
223 |
+
}
|
224 |
+
.b2s-calendar-delete{
|
225 |
+
cursor: pointer;
|
226 |
+
}
|
227 |
+
.b2s-btn-label-premium{
|
228 |
+
color: #fff;
|
229 |
+
text-decoration: none !important;
|
230 |
+
cursor: default !important;
|
231 |
+
}
|
232 |
+
.b2s-btn-label-premium:hover{
|
233 |
+
color: #fff;
|
234 |
+
text-decoration: none !important;
|
235 |
+
cursor: default !important;
|
236 |
+
}
|
237 |
+
.b2s-post-item .label-success{
|
238 |
+
display: none;
|
239 |
+
}
|
240 |
+
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
241 |
+
margin-bottom: 8px !important;
|
242 |
+
}
|
243 |
+
|
244 |
+
.b2s-post-item-info-area {
|
245 |
+
font-size: 11px !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
249 |
+
line-height: 1.5 !important;
|
250 |
+
padding: 0 1px 3px !important;
|
251 |
+
}
|
252 |
+
|
253 |
+
.b2s-load-info-meta-tag-modal{
|
254 |
+
margin-top: 8px !important;
|
255 |
+
display: block !important;
|
256 |
+
margin-right: auto !important;
|
257 |
+
margin-left: auto !important;
|
258 |
+
}
|
259 |
+
|
260 |
+
.b2s-post-item-details-tag-add-div {
|
261 |
+
border: 0px !important;
|
262 |
+
box-shadow: 0px 0px 0px #000 !important;
|
263 |
+
}
|
264 |
+
|
265 |
+
.b2s-post-item-details-tag-input-elem {
|
266 |
+
margin: 2px 4px;
|
267 |
+
max-width: 145px !important;
|
268 |
+
}
|
269 |
+
.b2s-calendar-sched-post-btn{
|
270 |
+
font-size: 11px;
|
271 |
+
float: right;
|
272 |
+
padding: 2px 4px 0px 4px;
|
273 |
+
}
|
274 |
+
|
275 |
+
|
276 |
+
.form-inline {
|
277 |
+
width: 100%;
|
278 |
+
margin-bottom: 20px;
|
279 |
+
}
|
280 |
+
.form-inline .form-group {
|
281 |
+
margin-left: 2px;
|
282 |
+
}
|
283 |
+
|
284 |
+
@media(max-width: 549px) {
|
285 |
+
.b2s-post-btn {
|
286 |
+
width: 100%;
|
287 |
+
}
|
288 |
+
.form-inline button, .form-inline a {
|
289 |
+
width: 100%;
|
290 |
+
margin-bottom: 10px;
|
291 |
+
}
|
292 |
+
}
|
293 |
+
@media(max-width: 767px) {
|
294 |
+
.form-inline {
|
295 |
+
display: none;
|
296 |
+
}
|
297 |
+
.filterHide {
|
298 |
+
display: none;
|
299 |
+
}
|
300 |
+
.form-inline button ,.form-inline a {
|
301 |
+
width: 49%;
|
302 |
+
margin-bottom: 10px;
|
303 |
+
}
|
304 |
+
}
|
305 |
+
|
306 |
+
.img-thumbnail{
|
307 |
+
display: block !important;
|
308 |
+
height: auto;
|
309 |
+
margin-left: auto;
|
310 |
+
margin-right: auto;
|
311 |
+
max-height: 100%;
|
312 |
+
}
|
assets/css/b2s/premium.css
CHANGED
@@ -1,53 +1,53 @@
|
|
1 |
-
body .thumbnail{
|
2 |
-
border: none;
|
3 |
-
}
|
4 |
-
|
5 |
-
|
6 |
-
.b2s-premium-h2{
|
7 |
-
margin-top: 0px !important;
|
8 |
-
}
|
9 |
-
|
10 |
-
.b2s-premium-go-to-text{
|
11 |
-
color: #79B232 !important;
|
12 |
-
}
|
13 |
-
|
14 |
-
.b2s-premium-line{
|
15 |
-
margin-bottom: 0px!important;
|
16 |
-
}
|
17 |
-
.b2s-premium-btn-group{
|
18 |
-
text-align: center;
|
19 |
-
margin-top: 15px;
|
20 |
-
margin-bottom: 15px;
|
21 |
-
}
|
22 |
-
|
23 |
-
.chosen-single {
|
24 |
-
box-shadow: none !important;
|
25 |
-
background: none !important;
|
26 |
-
border-radius: 3px !important;
|
27 |
-
height: 30px !important;
|
28 |
-
padding-top: 3px !important;
|
29 |
-
padding-bottom: 3px !important;
|
30 |
-
}
|
31 |
-
|
32 |
-
.chosen-single div {
|
33 |
-
padding-top: 2px !important;
|
34 |
-
}
|
35 |
-
|
36 |
-
#b2s_license_user_select_chosen {
|
37 |
-
width: 100% !important;
|
38 |
-
}
|
39 |
-
|
40 |
-
@media(min-width:991px){
|
41 |
-
#b2s-license-user-area {
|
42 |
-
padding-left: 0px;
|
43 |
-
padding-right: 5px;
|
44 |
-
padding-bottom: 5px;
|
45 |
-
}
|
46 |
-
}
|
47 |
-
@media(max-width:991px){
|
48 |
-
#b2s-license-user-area{
|
49 |
-
padding-bottom: 5px;
|
50 |
-
padding-right: 0px;
|
51 |
-
padding-left: 0px;
|
52 |
-
}
|
53 |
}
|
1 |
+
body .thumbnail{
|
2 |
+
border: none;
|
3 |
+
}
|
4 |
+
|
5 |
+
|
6 |
+
.b2s-premium-h2{
|
7 |
+
margin-top: 0px !important;
|
8 |
+
}
|
9 |
+
|
10 |
+
.b2s-premium-go-to-text{
|
11 |
+
color: #79B232 !important;
|
12 |
+
}
|
13 |
+
|
14 |
+
.b2s-premium-line{
|
15 |
+
margin-bottom: 0px!important;
|
16 |
+
}
|
17 |
+
.b2s-premium-btn-group{
|
18 |
+
text-align: center;
|
19 |
+
margin-top: 15px;
|
20 |
+
margin-bottom: 15px;
|
21 |
+
}
|
22 |
+
|
23 |
+
.chosen-single {
|
24 |
+
box-shadow: none !important;
|
25 |
+
background: none !important;
|
26 |
+
border-radius: 3px !important;
|
27 |
+
height: 30px !important;
|
28 |
+
padding-top: 3px !important;
|
29 |
+
padding-bottom: 3px !important;
|
30 |
+
}
|
31 |
+
|
32 |
+
.chosen-single div {
|
33 |
+
padding-top: 2px !important;
|
34 |
+
}
|
35 |
+
|
36 |
+
#b2s_license_user_select_chosen {
|
37 |
+
width: 100% !important;
|
38 |
+
}
|
39 |
+
|
40 |
+
@media(min-width:991px){
|
41 |
+
#b2s-license-user-area {
|
42 |
+
padding-left: 0px;
|
43 |
+
padding-right: 5px;
|
44 |
+
padding-bottom: 5px;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
@media(max-width:991px){
|
48 |
+
#b2s-license-user-area{
|
49 |
+
padding-bottom: 5px;
|
50 |
+
padding-right: 0px;
|
51 |
+
padding-left: 0px;
|
52 |
+
}
|
53 |
}
|
assets/css/b2s/settings.css
CHANGED
@@ -1,129 +1,129 @@
|
|
1 |
-
/*Custom*/
|
2 |
-
@media(max-width: 767px) {
|
3 |
-
.filterHide {
|
4 |
-
display: none;
|
5 |
-
}
|
6 |
-
.form-inline button {
|
7 |
-
width: 100%;
|
8 |
-
margin-bottom: 10px;
|
9 |
-
}
|
10 |
-
}
|
11 |
-
.error{
|
12 |
-
border: 1px solid #FF0000 !important;
|
13 |
-
}
|
14 |
-
|
15 |
-
.nav > li > a{
|
16 |
-
padding: 10px 15px !important;
|
17 |
-
}
|
18 |
-
|
19 |
-
.b2s-settings-line{
|
20 |
-
margin-top: 0px!important;
|
21 |
-
}
|
22 |
-
|
23 |
-
.b2s-display-inline{
|
24 |
-
display: inline !important;
|
25 |
-
}
|
26 |
-
|
27 |
-
.b2s-user-time-zone-label{
|
28 |
-
padding-right: 10px;
|
29 |
-
}
|
30 |
-
|
31 |
-
@media(min-width: 768px) {
|
32 |
-
.b2s-settings-time-zone-info{
|
33 |
-
padding-left: 130px;
|
34 |
-
}
|
35 |
-
}
|
36 |
-
|
37 |
-
.b2s-auto-post-publish-label, .b2s-auto-post-update-label{
|
38 |
-
font-style:italic;
|
39 |
-
}
|
40 |
-
|
41 |
-
.b2s-post-type-list{
|
42 |
-
float: left;
|
43 |
-
margin-bottom: 5px;
|
44 |
-
width: 50%;
|
45 |
-
}
|
46 |
-
|
47 |
-
.b2s-post-type-select-btn{
|
48 |
-
padding: 0 0 1px !important;
|
49 |
-
}
|
50 |
-
|
51 |
-
.b2s-input-margin-bottom-5{
|
52 |
-
margin-bottom: 5px;
|
53 |
-
}
|
54 |
-
|
55 |
-
.font-gray{
|
56 |
-
color: #9B9B9B !important;
|
57 |
-
}
|
58 |
-
|
59 |
-
.b2s-post-item-network-image{
|
60 |
-
height: 16px;
|
61 |
-
width: 16px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.b2s-network-auth-count {
|
65 |
-
font-size: 12px;
|
66 |
-
font-style: italic;
|
67 |
-
color: #777;
|
68 |
-
font-weight: normal;
|
69 |
-
line-height: 1;
|
70 |
-
}
|
71 |
-
.list-group-item{
|
72 |
-
border: 0px !important;
|
73 |
-
}
|
74 |
-
|
75 |
-
.b2s-img-network {
|
76 |
-
width: 36px !important;
|
77 |
-
margin-top: 8px !important;
|
78 |
-
}
|
79 |
-
|
80 |
-
.b2s-input-text-size-45{
|
81 |
-
width: 45px;
|
82 |
-
}
|
83 |
-
|
84 |
-
.chosen-container{
|
85 |
-
min-width: 50% !important;
|
86 |
-
}
|
87 |
-
|
88 |
-
.padding-bottom-3{
|
89 |
-
padding-bottom: 3px;
|
90 |
-
}
|
91 |
-
|
92 |
-
.b2s-text-sm{
|
93 |
-
margin-top: 5px;
|
94 |
-
font-size: 14px;
|
95 |
-
}
|
96 |
-
|
97 |
-
.b2s-bold{
|
98 |
-
font-weight: 600;
|
99 |
-
}
|
100 |
-
|
101 |
-
ul.chosen-choices {
|
102 |
-
background-image: none !important;
|
103 |
-
border-radius: 3px;
|
104 |
-
border: 1px solid #d7d7d7 !important;
|
105 |
-
box-shadow: none;
|
106 |
-
}
|
107 |
-
|
108 |
-
.b2s-auto-post-own-update-warning, .b2s-auto-post-own-general-warning{
|
109 |
-
border: 1px solid #aaa !important;
|
110 |
-
}
|
111 |
-
|
112 |
-
.b2s-network-tos-auto-post-import-warning{
|
113 |
-
display: none;
|
114 |
-
}
|
115 |
-
.b2s-network-tos-auto-post-import-warning > .alert{
|
116 |
-
margin-bottom: 0px !important;
|
117 |
-
}
|
118 |
-
.b2s-shortener-image{
|
119 |
-
height: 16px;
|
120 |
-
width: 16px;
|
121 |
-
}
|
122 |
-
.b2s-user-network-shortener-account-area{
|
123 |
-
vertical-align: middle;
|
124 |
-
}
|
125 |
-
|
126 |
-
.b2s-btn-link-txt{
|
127 |
-
font-size: 14px !important;
|
128 |
-
font-weight: 500 !important;
|
129 |
-
}
|
1 |
+
/*Custom*/
|
2 |
+
@media(max-width: 767px) {
|
3 |
+
.filterHide {
|
4 |
+
display: none;
|
5 |
+
}
|
6 |
+
.form-inline button {
|
7 |
+
width: 100%;
|
8 |
+
margin-bottom: 10px;
|
9 |
+
}
|
10 |
+
}
|
11 |
+
.error{
|
12 |
+
border: 1px solid #FF0000 !important;
|
13 |
+
}
|
14 |
+
|
15 |
+
.nav > li > a{
|
16 |
+
padding: 10px 15px !important;
|
17 |
+
}
|
18 |
+
|
19 |
+
.b2s-settings-line{
|
20 |
+
margin-top: 0px!important;
|
21 |
+
}
|
22 |
+
|
23 |
+
.b2s-display-inline{
|
24 |
+
display: inline !important;
|
25 |
+
}
|
26 |
+
|
27 |
+
.b2s-user-time-zone-label{
|
28 |
+
padding-right: 10px;
|
29 |
+
}
|
30 |
+
|
31 |
+
@media(min-width: 768px) {
|
32 |
+
.b2s-settings-time-zone-info{
|
33 |
+
padding-left: 130px;
|
34 |
+
}
|
35 |
+
}
|
36 |
+
|
37 |
+
.b2s-auto-post-publish-label, .b2s-auto-post-update-label{
|
38 |
+
font-style:italic;
|
39 |
+
}
|
40 |
+
|
41 |
+
.b2s-post-type-list{
|
42 |
+
float: left;
|
43 |
+
margin-bottom: 5px;
|
44 |
+
width: 50%;
|
45 |
+
}
|
46 |
+
|
47 |
+
.b2s-post-type-select-btn{
|
48 |
+
padding: 0 0 1px !important;
|
49 |
+
}
|
50 |
+
|
51 |
+
.b2s-input-margin-bottom-5{
|
52 |
+
margin-bottom: 5px;
|
53 |
+
}
|
54 |
+
|
55 |
+
.font-gray{
|
56 |
+
color: #9B9B9B !important;
|
57 |
+
}
|
58 |
+
|
59 |
+
.b2s-post-item-network-image{
|
60 |
+
height: 16px;
|
61 |
+
width: 16px;
|
62 |
+
}
|
63 |
+
|
64 |
+
.b2s-network-auth-count {
|
65 |
+
font-size: 12px;
|
66 |
+
font-style: italic;
|
67 |
+
color: #777;
|
68 |
+
font-weight: normal;
|
69 |
+
line-height: 1;
|
70 |
+
}
|
71 |
+
.list-group-item{
|
72 |
+
border: 0px !important;
|
73 |
+
}
|
74 |
+
|
75 |
+
.b2s-img-network {
|
76 |
+
width: 36px !important;
|
77 |
+
margin-top: 8px !important;
|
78 |
+
}
|
79 |
+
|
80 |
+
.b2s-input-text-size-45{
|
81 |
+
width: 45px;
|
82 |
+
}
|
83 |
+
|
84 |
+
.chosen-container{
|
85 |
+
min-width: 50% !important;
|
86 |
+
}
|
87 |
+
|
88 |
+
.padding-bottom-3{
|
89 |
+
padding-bottom: 3px;
|
90 |
+
}
|
91 |
+
|
92 |
+
.b2s-text-sm{
|
93 |
+
margin-top: 5px;
|
94 |
+
font-size: 14px;
|
95 |
+
}
|
96 |
+
|
97 |
+
.b2s-bold{
|
98 |
+
font-weight: 600;
|
99 |
+
}
|
100 |
+
|
101 |
+
ul.chosen-choices {
|
102 |
+
background-image: none !important;
|
103 |
+
border-radius: 3px;
|
104 |
+
border: 1px solid #d7d7d7 !important;
|
105 |
+
box-shadow: none;
|
106 |
+
}
|
107 |
+
|
108 |
+
.b2s-auto-post-own-update-warning, .b2s-auto-post-own-general-warning{
|
109 |
+
border: 1px solid #aaa !important;
|
110 |
+
}
|
111 |
+
|
112 |
+
.b2s-network-tos-auto-post-import-warning{
|
113 |
+
display: none;
|
114 |
+
}
|
115 |
+
.b2s-network-tos-auto-post-import-warning > .alert{
|
116 |
+
margin-bottom: 0px !important;
|
117 |
+
}
|
118 |
+
.b2s-shortener-image{
|
119 |
+
height: 16px;
|
120 |
+
width: 16px;
|
121 |
+
}
|
122 |
+
.b2s-user-network-shortener-account-area{
|
123 |
+
vertical-align: middle;
|
124 |
+
}
|
125 |
+
|
126 |
+
.b2s-btn-link-txt{
|
127 |
+
font-size: 14px !important;
|
128 |
+
font-weight: 500 !important;
|
129 |
+
}
|
assets/css/b2s/ship.css
CHANGED
@@ -1,847 +1,855 @@
|
|
1 |
-
/** Navbar */
|
2 |
-
#b2s-wrapper {
|
3 |
-
padding-right: 0;
|
4 |
-
-webkit-transition: all 0.5s ease;
|
5 |
-
-moz-transition: all 0.5s ease;
|
6 |
-
-o-transition: all 0.5s ease;
|
7 |
-
transition: all 0.5s ease;
|
8 |
-
}
|
9 |
-
@media(min-width:991px){
|
10 |
-
#b2s-sidebar-wrapper {
|
11 |
-
right: 25% !important;
|
12 |
-
margin-right: -24% !important;
|
13 |
-
}
|
14 |
-
|
15 |
-
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
16 |
-
width: -25% !important;
|
17 |
-
}
|
18 |
-
|
19 |
-
#b2s-sidebar-wrapper{
|
20 |
-
width:24% !important;
|
21 |
-
}
|
22 |
-
|
23 |
-
.sidebar-nav {
|
24 |
-
width: 100% !important;
|
25 |
-
}
|
26 |
-
.b2s-network-thumb{
|
27 |
-
width:20% !important;
|
28 |
-
}
|
29 |
-
.b2s-network-details{
|
30 |
-
width: 60% !important;
|
31 |
-
}
|
32 |
-
.b2s-network-status{
|
33 |
-
width: 15% !important;
|
34 |
-
}
|
35 |
-
.b2s-network-details-header{
|
36 |
-
width: 80% !important;
|
37 |
-
}
|
38 |
-
.toggelbutton{
|
39 |
-
display: none;
|
40 |
-
}
|
41 |
-
|
42 |
-
}
|
43 |
-
@media(max-width:991px){
|
44 |
-
.b2s-network-details, .b2s-network-details-header{
|
45 |
-
margin-left:10px;
|
46 |
-
}
|
47 |
-
.network-icon{
|
48 |
-
display: none;
|
49 |
-
}
|
50 |
-
}
|
51 |
-
|
52 |
-
.b2s-network-details-legend{
|
53 |
-
color:#FFFFFF;
|
54 |
-
text-align: center;
|
55 |
-
opacity: 0.6;
|
56 |
-
}
|
57 |
-
|
58 |
-
.b2s-no-textwarp{
|
59 |
-
white-space: nowrap;
|
60 |
-
}
|
61 |
-
#b2s-sidebar-wrapper {
|
62 |
-
z-index: 1000;
|
63 |
-
position: absolute;
|
64 |
-
right: 300px;
|
65 |
-
width: 0;
|
66 |
-
margin-right: -300px;
|
67 |
-
overflow-x: hidden;
|
68 |
-
background:#fff;
|
69 |
-
-webkit-transition: all 0.5s ease;
|
70 |
-
-moz-transition: all 0.5s ease;
|
71 |
-
-o-transition: all 0.5s ease;
|
72 |
-
transition: all 0.5s ease;
|
73 |
-
}
|
74 |
-
/*.b2s-post-item-details-release-input-time{
|
75 |
-
margin-left: 5px;
|
76 |
-
margin-right: 5px;
|
77 |
-
}*/
|
78 |
-
|
79 |
-
.b2s-post-item-details-release-input-time, .b2s-post-item-details-release-input-date, .b2s-post-item-details-release-input-select-timespan{
|
80 |
-
margin-top: 5px;
|
81 |
-
}
|
82 |
-
|
83 |
-
.b2s-select, .b2s-select-area{
|
84 |
-
margin-top: 6px;
|
85 |
-
}
|
86 |
-
|
87 |
-
.b2s-post-item-details-release-input-date-select{
|
88 |
-
margin-top: 0px !important;
|
89 |
-
}
|
90 |
-
|
91 |
-
.network-icon{
|
92 |
-
margin-top:5px;
|
93 |
-
}
|
94 |
-
|
95 |
-
|
96 |
-
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
97 |
-
width: 300px;
|
98 |
-
}
|
99 |
-
|
100 |
-
#b2s-content-wrapper {
|
101 |
-
position: relative;
|
102 |
-
margin-right: 20px;
|
103 |
-
}
|
104 |
-
|
105 |
-
/*.b2s-post-item-area{
|
106 |
-
max-width: 940px !important;
|
107 |
-
}*/
|
108 |
-
|
109 |
-
#b2s-wrapper.toggled {
|
110 |
-
padding-right: 0;
|
111 |
-
}
|
112 |
-
|
113 |
-
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
114 |
-
width: 48px;
|
115 |
-
}
|
116 |
-
|
117 |
-
#b2s-wrapper.toggled #b2s-content-wrapper {
|
118 |
-
position: relative;
|
119 |
-
margin-left: 0;
|
120 |
-
}
|
121 |
-
|
122 |
-
.b2s-network-select-btn-deactivate{
|
123 |
-
opacity: 0.3;
|
124 |
-
}
|
125 |
-
|
126 |
-
/* Sidebar Styles */
|
127 |
-
|
128 |
-
#b2s-sidebar-wrapper {
|
129 |
-
width: 300px;
|
130 |
-
background-color: #23282D;
|
131 |
-
}
|
132 |
-
|
133 |
-
.sidebar-nav {
|
134 |
-
top: 0;
|
135 |
-
width: 300px;
|
136 |
-
margin: 0;
|
137 |
-
padding: 0;
|
138 |
-
list-style: none;
|
139 |
-
}
|
140 |
-
|
141 |
-
.sidebar-nav li a {
|
142 |
-
text-decoration: none;
|
143 |
-
}
|
144 |
-
|
145 |
-
.sidebar-nav li a:hover {
|
146 |
-
text-decoration: none;
|
147 |
-
}
|
148 |
-
|
149 |
-
.sidebar-nav li a:active,
|
150 |
-
.sidebar-nav li a:focus {
|
151 |
-
text-decoration: none;
|
152 |
-
}
|
153 |
-
|
154 |
-
.sidebar-nav > .sidebar-brand {
|
155 |
-
height: 65px;
|
156 |
-
font-size: 18px;
|
157 |
-
line-height: 60px;
|
158 |
-
}
|
159 |
-
|
160 |
-
.sidebar-nav > .sidebar-brand a {
|
161 |
-
color: #999999;
|
162 |
-
}
|
163 |
-
|
164 |
-
.sidebar-nav > .sidebar-brand a:hover {
|
165 |
-
color: #fff;
|
166 |
-
background: none;
|
167 |
-
}
|
168 |
-
|
169 |
-
.sidebar-default{
|
170 |
-
background-color: #fff;
|
171 |
-
border: 1px solid transparent;
|
172 |
-
border-radius: 4px;
|
173 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
174 |
-
}
|
175 |
-
|
176 |
-
.sidebar-brand {
|
177 |
-
border-bottom: 1px solid rgba(102, 97, 91, 0.3);
|
178 |
-
}
|
179 |
-
.sidebar-brand {
|
180 |
-
padding: 18px 0px;
|
181 |
-
margin: 0 20px;
|
182 |
-
}
|
183 |
-
|
184 |
-
.sidebar-nav li{
|
185 |
-
margin-bottom: 0px !important;
|
186 |
-
}
|
187 |
-
|
188 |
-
|
189 |
-
/*Network List*/
|
190 |
-
|
191 |
-
.b2s-network-select-btn{
|
192 |
-
text-decoration:none !important;
|
193 |
-
}
|
194 |
-
|
195 |
-
.active {
|
196 |
-
background-color: #32373C;
|
197 |
-
}
|
198 |
-
.b2s-network-list {
|
199 |
-
display: inline-block;
|
200 |
-
padding: 4px 0;
|
201 |
-
width: 100%;
|
202 |
-
}
|
203 |
-
|
204 |
-
|
205 |
-
.b2s-margin-top-8{
|
206 |
-
margin-top:8px;
|
207 |
-
}
|
208 |
-
|
209 |
-
.b2s-network-thumb {
|
210 |
-
padding: 4px 6px 0;
|
211 |
-
width: 36px;
|
212 |
-
}
|
213 |
-
.b2s-network-thumb, .b2s-network-details,.b2s-network-details-header, .b2s-network-status {
|
214 |
-
float: left;
|
215 |
-
}
|
216 |
-
|
217 |
-
.b2s-network-thumb img {
|
218 |
-
border-radius: 50%;
|
219 |
-
height: 36px;
|
220 |
-
width: 36px;
|
221 |
-
}
|
222 |
-
|
223 |
-
.b2s-network-thumb i{
|
224 |
-
margin: 8px;
|
225 |
-
font-size: 22px;
|
226 |
-
color: #79B331;
|
227 |
-
}
|
228 |
-
|
229 |
-
.b2s-network-details {
|
230 |
-
width: 195px;
|
231 |
-
|
232 |
-
}
|
233 |
-
|
234 |
-
.b2s-network-details-header{
|
235 |
-
width: 240px;
|
236 |
-
}
|
237 |
-
|
238 |
-
.b2s-network-details-header h3 {
|
239 |
-
font-size: 16px;
|
240 |
-
color: #fff;
|
241 |
-
font-weight: 500;
|
242 |
-
text-transform: uppercase;
|
243 |
-
}
|
244 |
-
.b2s-network-details h4 {
|
245 |
-
font-size: 15px;
|
246 |
-
color: #fff;
|
247 |
-
font-weight: 400;
|
248 |
-
text-transform: uppercase;
|
249 |
-
margin-top:3px;
|
250 |
-
margin-bottom: 5px;
|
251 |
-
}
|
252 |
-
|
253 |
-
.b2s-network-list p {
|
254 |
-
color: #8f8f9b;
|
255 |
-
font-size: 14px;
|
256 |
-
margin-bottom: 0;
|
257 |
-
}
|
258 |
-
.b2s-network-status {
|
259 |
-
margin-top: 5px;
|
260 |
-
width: 25px;
|
261 |
-
}
|
262 |
-
|
263 |
-
.b2s-network-status img ,.b2s-network-list-add-thumb {
|
264 |
-
border-radius: 50%;
|
265 |
-
height: 36px;
|
266 |
-
width: 36px;
|
267 |
-
}
|
268 |
-
|
269 |
-
.b2s-post-item-details-item-message-input{
|
270 |
-
min-height: 8em;
|
271 |
-
}
|
272 |
-
|
273 |
-
.b2s-post-item-area{
|
274 |
-
width: 100%;
|
275 |
-
}
|
276 |
-
.b2s-post-item-details, .b2s-post-item-thumb{
|
277 |
-
float: left;
|
278 |
-
}
|
279 |
-
.b2s-post-item-thumb{
|
280 |
-
width: 5%;
|
281 |
-
margin-right: 8px;
|
282 |
-
}
|
283 |
-
|
284 |
-
.b2s-post-item-details{
|
285 |
-
width: 93%;
|
286 |
-
}
|
287 |
-
|
288 |
-
.b2s-post-item-thumb img{
|
289 |
-
border-radius: 50%;
|
290 |
-
width: 48px;
|
291 |
-
}
|
292 |
-
|
293 |
-
.b2s-post-item-details h4{
|
294 |
-
font-size: 16px;
|
295 |
-
font-weight: 600;
|
296 |
-
text-transform: uppercase;
|
297 |
-
margin: 3px 3px 3px 0px;
|
298 |
-
}
|
299 |
-
|
300 |
-
.b2s-post-item-network-deprecated {
|
301 |
-
font-weight: 600;
|
302 |
-
font-size: 14px;
|
303 |
-
margin: 3px 3px 3px 0px;
|
304 |
-
}
|
305 |
-
|
306 |
-
.b2s-post-item-info-area{
|
307 |
-
font-size: 11px !important;
|
308 |
-
}
|
309 |
-
|
310 |
-
.b2s-post-item-details-message-result{
|
311 |
-
margin-top:2px;
|
312 |
-
}
|
313 |
-
.b2s-post-item-details p{
|
314 |
-
font-size: 12px;
|
315 |
-
margin: 0px 3px;
|
316 |
-
|
317 |
-
}
|
318 |
-
|
319 |
-
.b2s-publish-area{
|
320 |
-
width: 100% !important;
|
321 |
-
}
|
322 |
-
|
323 |
-
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format, .b2s-post-ship-item-copy-original-text{
|
324 |
-
line-height: 1.5 !important;
|
325 |
-
padding: 0 1px 3px !important;
|
326 |
-
}
|
327 |
-
|
328 |
-
.b2s-post-item-details-item-title-input, .b2s-post-item-details-item-group-select, .b2s-post-item-details-tag-input{
|
329 |
-
margin-bottom: 5px;
|
330 |
-
}
|
331 |
-
|
332 |
-
.b2s-post-item-details-item-message-input-allow-html{
|
333 |
-
min-height: 200px;
|
334 |
-
}
|
335 |
-
.b2s-post-item-message-info{
|
336 |
-
margin-left:15px !important;
|
337 |
-
font-weight: 600;
|
338 |
-
|
339 |
-
}
|
340 |
-
|
341 |
-
.b2s-post-item-details-preview-url-reload{
|
342 |
-
cursor: pointer;
|
343 |
-
top:0px !important;
|
344 |
-
}
|
345 |
-
|
346 |
-
|
347 |
-
.b2s-post-item-details-url-title, .b2s-post-item-details-title-title, .b2s-post-item-details-tag-title,.b2s-post-item-details-release-choose{
|
348 |
-
font-size: 12px;
|
349 |
-
font-weight: 600;
|
350 |
-
letter-spacing: 0;
|
351 |
-
}
|
352 |
-
|
353 |
-
.b2s-post-item-details-tag-input-elem{
|
354 |
-
margin: 2px 4px;
|
355 |
-
max-width: 145px !important;
|
356 |
-
}
|
357 |
-
|
358 |
-
.b2s-no-image-area{
|
359 |
-
margin-left: 15px;
|
360 |
-
}
|
361 |
-
.b2s-no-image-area-text{
|
362 |
-
font-size: 12px;
|
363 |
-
margin-left: 2px;
|
364 |
-
}
|
365 |
-
|
366 |
-
.b2s-post-item-countChar{
|
367 |
-
padding-top:2px;
|
368 |
-
}
|
369 |
-
|
370 |
-
.b2s-post-item-details-tag-area{
|
371 |
-
float:left;
|
372 |
-
width: 100%;
|
373 |
-
min-height: 1px;
|
374 |
-
position: relative;
|
375 |
-
}
|
376 |
-
|
377 |
-
.b2s-post-item-details-release-area-details-ul, .b2s-post-item-relay-area-details-ul{
|
378 |
-
margin-top:1em;
|
379 |
-
}
|
380 |
-
.b2s-post-item-details-release-input-lable-day,.b2s-post-item-details-release-input-date{
|
381 |
-
font-size: 15px;
|
382 |
-
margin-right: 8px;
|
383 |
-
}
|
384 |
-
|
385 |
-
.b2s-post-item-details-release-input-lable-day{
|
386 |
-
margin-top: 5px;
|
387 |
-
}
|
388 |
-
|
389 |
-
.b2s-post-item-details-tag-add-div{
|
390 |
-
border: 0px !important;
|
391 |
-
box-shadow: 0px 0px 0px #000 !important;
|
392 |
-
}
|
393 |
-
.b2s-post-item-details-release-area{
|
394 |
-
float: left;
|
395 |
-
width: 100%;
|
396 |
-
}
|
397 |
-
|
398 |
-
.b2s-post-item-details-release-area-details, .b2s-post-item-relay-area-details{
|
399 |
-
float: left;
|
400 |
-
width: 100%;
|
401 |
-
}
|
402 |
-
.b2s-post-item-details-release-input-daySelect input{
|
403 |
-
margin-right: 15px;
|
404 |
-
}
|
405 |
-
|
406 |
-
.b2s-post-item-details-tag-input{
|
407 |
-
float: left;
|
408 |
-
margin-right: 5px;
|
409 |
-
}
|
410 |
-
|
411 |
-
.b2s-network-hide{
|
412 |
-
display: none !important;
|
413 |
-
}
|
414 |
-
|
415 |
-
|
416 |
-
.b2s-image-item{
|
417 |
-
background-color: #fff;
|
418 |
-
border: 1px solid #ddd;
|
419 |
-
display: block;
|
420 |
-
float: left;
|
421 |
-
height: 200px;
|
422 |
-
line-height: 1.42857;
|
423 |
-
margin-bottom: 15px;
|
424 |
-
margin-left: 15px;
|
425 |
-
margin-top: 15px;
|
426 |
-
overflow: hidden;
|
427 |
-
padding: 4px;
|
428 |
-
|
429 |
-
transition: border 0.2s ease-in-out 0s;
|
430 |
-
width: 185px;
|
431 |
-
}
|
432 |
-
.img-thumbnail{
|
433 |
-
display: block !important;
|
434 |
-
height: auto;
|
435 |
-
margin-left: auto;
|
436 |
-
margin-right: auto;
|
437 |
-
max-height: 100%;
|
438 |
-
}
|
439 |
-
|
440 |
-
.b2s-image-item-thumb{
|
441 |
-
height: 150px;
|
442 |
-
}
|
443 |
-
.b2s-image-item-thumb label{
|
444 |
-
display: inline;
|
445 |
-
}
|
446 |
-
.b2s-image-item-caption{
|
447 |
-
color: #333;
|
448 |
-
|
449 |
-
}
|
450 |
-
|
451 |
-
@media(min-width:991px){
|
452 |
-
.b2s-publish-navbar-btn{
|
453 |
-
margin-right: 24.3%;
|
454 |
-
}
|
455 |
-
}
|
456 |
-
|
457 |
-
@media(max-width:990px){
|
458 |
-
.b2s-publish-navbar-btn{
|
459 |
-
margin-right: 4.3%;
|
460 |
-
}
|
461 |
-
}
|
462 |
-
|
463 |
-
.b2s-publish-navbar-btn{
|
464 |
-
float: right;
|
465 |
-
}
|
466 |
-
|
467 |
-
.b2s-network-list-add-details{
|
468 |
-
padding-left: 15px;
|
469 |
-
}
|
470 |
-
|
471 |
-
.b2s-network-list-add-btn{
|
472 |
-
float: right;
|
473 |
-
margin-left:2px;
|
474 |
-
}
|
475 |
-
|
476 |
-
.text-break{
|
477 |
-
white-space:normal !important;
|
478 |
-
}
|
479 |
-
|
480 |
-
.b2s-hr-small{
|
481 |
-
margin-top:0.7em;
|
482 |
-
margin-bottom: 0.7em;
|
483 |
-
}
|
484 |
-
|
485 |
-
/*Custom*/
|
486 |
-
.form-control {
|
487 |
-
background-color: #ffffff;
|
488 |
-
background-image: none;
|
489 |
-
border: 1px solid #cccccc;
|
490 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
491 |
-
color: #555555;
|
492 |
-
display: block;
|
493 |
-
font-size: 14px;
|
494 |
-
height: 34px;
|
495 |
-
line-height: 1.42857;
|
496 |
-
padding: 6px 12px;
|
497 |
-
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
498 |
-
vertical-align: middle;
|
499 |
-
width: 100%;
|
500 |
-
}
|
501 |
-
|
502 |
-
input[type="checkbox"], input[type="radio"] {
|
503 |
-
margin: 0 !important;
|
504 |
-
}
|
505 |
-
|
506 |
-
.b2s-network-status-img,.b2s-network-status-no-img,.b2s-network-status-expiredDate{
|
507 |
-
font-size:25px;
|
508 |
-
margin: 5px;
|
509 |
-
}
|
510 |
-
|
511 |
-
.ad-tag-btn,.remove-tag-btn{
|
512 |
-
cursor: pointer;
|
513 |
-
margin:0px 4px 0px 4px;
|
514 |
-
}
|
515 |
-
.ad-tag-btn:hover,.remove-tag-btn:hover{
|
516 |
-
color:#000;
|
517 |
-
}
|
518 |
-
|
519 |
-
.b2s-post-details{
|
520 |
-
padding: 0 0 15px 15px !important;
|
521 |
-
}
|
522 |
-
|
523 |
-
.b2s-vertical-align-baseline{
|
524 |
-
vertical-align: baseline;
|
525 |
-
}
|
526 |
-
|
527 |
-
.b2s-post-item-loading-dummy > .panel {
|
528 |
-
min-height: 20em;
|
529 |
-
}
|
530 |
-
.b2s-post-item-loading-impulse-area{
|
531 |
-
margin-top:5em;
|
532 |
-
}
|
533 |
-
.b2s-post-item-details-portal-img-area{
|
534 |
-
margin-top:1em;
|
535 |
-
margin-bottom: 1em;
|
536 |
-
}
|
537 |
-
.b2s-post-item-details-portal-img-area > img{
|
538 |
-
margin: 0 auto;
|
539 |
-
}
|
540 |
-
|
541 |
-
.input-group-addon {
|
542 |
-
background-color: #ffffff;
|
543 |
-
border: 0;
|
544 |
-
border-radius: 0px;
|
545 |
-
}
|
546 |
-
|
547 |
-
.b2s-re-share-btn{
|
548 |
-
margin-right: 5px;
|
549 |
-
}
|
550 |
-
|
551 |
-
.b2s-re-share-info{
|
552 |
-
margin-top: 3px;
|
553 |
-
}
|
554 |
-
|
555 |
-
.scroll-to-bottom{
|
556 |
-
margin-top: 10px;
|
557 |
-
}
|
558 |
-
|
559 |
-
.b2s-image-remove-btn{
|
560 |
-
position: absolute;
|
561 |
-
top: -5px;
|
562 |
-
right: 0px;
|
563 |
-
font-weight: 700 !important;
|
564 |
-
}
|
565 |
-
|
566 |
-
/*Custom Network Layout*/
|
567 |
-
|
568 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border{
|
569 |
-
margin-right: 10px;
|
570 |
-
margin-bottom: 20px;
|
571 |
-
border: 1px dashed #bdbfc2;
|
572 |
-
box-shadow: none;
|
573 |
-
padding: 5px;
|
574 |
-
}
|
575 |
-
/*@media(max-width:991px){
|
576 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image{
|
577 |
-
width: 100%;
|
578 |
-
}
|
579 |
-
|
580 |
-
.fb-content, .xing-content, .linkedin-content {
|
581 |
-
float: left;
|
582 |
-
margin-bottom: 20px;
|
583 |
-
}
|
584 |
-
}
|
585 |
-
@media(min-width:991px){
|
586 |
-
.fb-url-image, .xing-url-image, .linkedin-url-image{
|
587 |
-
width: 100%;
|
588 |
-
}
|
589 |
-
.fb-content, .xing-content, .linkedin-content{
|
590 |
-
float: left;
|
591 |
-
width: 78%;
|
592 |
-
margin-bottom: 20px;
|
593 |
-
}
|
594 |
-
}*/
|
595 |
-
|
596 |
-
.fb-textarea-input:focus, .tw-textarea-input:focus, .tw-url-input:focus, .fb-url-input:focus, .xing-textarea-input:focus, .xing-url-input:focus, .linkedin-textarea-input:focus, .linkedin-url-input:focus{
|
597 |
-
border-color: #66afe9;
|
598 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
|
599 |
-
outline: 0 none;
|
600 |
-
}
|
601 |
-
|
602 |
-
.fb-textarea-input,.tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input{
|
603 |
-
font-size: 14px;
|
604 |
-
font-weight: normal;
|
605 |
-
line-height: 1.125;
|
606 |
-
width: 100%;
|
607 |
-
border: medium none;
|
608 |
-
border-radius: 0;
|
609 |
-
margin-top: 10px;
|
610 |
-
margin-bottom: 10px;
|
611 |
-
font-family: helvetica,arial,sans-serif;
|
612 |
-
}
|
613 |
-
|
614 |
-
.fb-url-input,.tw-url-input, .xing-url-input, .linkedin-url-input{
|
615 |
-
font-size: 12px;
|
616 |
-
font-weight: normal;
|
617 |
-
line-height: 1.38;
|
618 |
-
width: 100%;
|
619 |
-
border: medium none;
|
620 |
-
}
|
621 |
-
|
622 |
-
.fb-url-title{
|
623 |
-
font-size: 18px !important;
|
624 |
-
font-weight: 500;
|
625 |
-
line-height: 22px;
|
626 |
-
margin-top: 12px !important;
|
627 |
-
margin-bottom: 8px !important;
|
628 |
-
max-height: 110px;
|
629 |
-
overflow: hidden;
|
630 |
-
word-wrap: break-word;
|
631 |
-
font-family: Georgia,serif;
|
632 |
-
}
|
633 |
-
.fb-url-desc{
|
634 |
-
font-size: 12px;
|
635 |
-
line-height: 16px;
|
636 |
-
margin-bottom: 8px !important;
|
637 |
-
}
|
638 |
-
|
639 |
-
|
640 |
-
.tw-url-title{
|
641 |
-
font-size: 1.2em !important;
|
642 |
-
font-weight: 600;
|
643 |
-
text-overflow: ellipsis;
|
644 |
-
color: inherit !important;
|
645 |
-
}
|
646 |
-
|
647 |
-
.tw-url-desc{
|
648 |
-
margin: 5px 0 5px !important;
|
649 |
-
color: inherit !important;
|
650 |
-
margin-bottom: 8px !important;
|
651 |
-
}
|
652 |
-
|
653 |
-
.xing-container{
|
654 |
-
border-top: 1px solid #ebebeb;
|
655 |
-
padding: 10px 0px;
|
656 |
-
font-family: "Xing Sans","Trebuchet MS",Verdana,sans-serif;
|
657 |
-
}
|
658 |
-
|
659 |
-
.xing-content{
|
660 |
-
float: left;
|
661 |
-
width: 78%;
|
662 |
-
margin-bottom: 20px;
|
663 |
-
}
|
664 |
-
|
665 |
-
.xing-url-title{
|
666 |
-
margin-top: 0px;
|
667 |
-
margin-bottom: 4px;
|
668 |
-
font-size: 18px;
|
669 |
-
font-weight: normal;
|
670 |
-
line-height: 22px;
|
671 |
-
color: #009090;
|
672 |
-
}
|
673 |
-
|
674 |
-
.xing-url-desc{
|
675 |
-
line-height: 1.38462;
|
676 |
-
font-size: 13px;
|
677 |
-
}
|
678 |
-
|
679 |
-
.linkedin-container{
|
680 |
-
font-family: sans-serif;
|
681 |
-
color: #333;
|
682 |
-
padding: 10px 0px;
|
683 |
-
}
|
684 |
-
|
685 |
-
|
686 |
-
.linkedin-container:hover #linkedin-url-title, .linkedin-container:hover #linkedin-url-desc{
|
687 |
-
text-decoration: underline;
|
688 |
-
}
|
689 |
-
|
690 |
-
.linkedin-url-desc{
|
691 |
-
line-height: 14px;
|
692 |
-
color: #999;
|
693 |
-
font-size: 12px;
|
694 |
-
font-style: normal;
|
695 |
-
font-weight: normal;
|
696 |
-
text-decoration: inherit;
|
697 |
-
padding-left: 10px !important;
|
698 |
-
}
|
699 |
-
|
700 |
-
.linkedin-url-title{
|
701 |
-
font-size: 16px !important;
|
702 |
-
font-weight: normal;
|
703 |
-
line-height: 20px;
|
704 |
-
margin-bottom: 5px !important;
|
705 |
-
margin-top: 5px !important;
|
706 |
-
padding-left: 10px !important;
|
707 |
-
}
|
708 |
-
|
709 |
-
.glyphicon-refresh-animate {
|
710 |
-
-animation: spin .7s infinite linear;
|
711 |
-
-webkit-animation: spin2 .7s infinite linear;
|
712 |
-
}
|
713 |
-
|
714 |
-
@-webkit-keyframes spin2 {
|
715 |
-
from { -webkit-transform: rotate(0deg);}
|
716 |
-
to { -webkit-transform: rotate(360deg);}
|
717 |
-
}
|
718 |
-
|
719 |
-
@keyframes spin {
|
720 |
-
from { transform: scale(1) rotate(0deg);}
|
721 |
-
to { transform: scale(1) rotate(360deg);}
|
722 |
-
}
|
723 |
-
|
724 |
-
.datepicker table tr td.today {
|
725 |
-
background-color: #fff !important;
|
726 |
-
border-color: #fff !important;
|
727 |
-
color: #000;
|
728 |
-
font-weight: 700;
|
729 |
-
font-size: 15px;
|
730 |
-
}
|
731 |
-
.datepicker table tr td.active {
|
732 |
-
background-color: #337ab7 !important;
|
733 |
-
border-color: #2e6da4 !important;
|
734 |
-
color: #fff;
|
735 |
-
}
|
736 |
-
|
737 |
-
.b2s-box-sched-time-input{
|
738 |
-
width: 90px !important;
|
739 |
-
}
|
740 |
-
.b2s-box-sched-time-area{
|
741 |
-
margin-left: 100px;
|
742 |
-
}
|
743 |
-
.b2s-box-sched-time-area-label{
|
744 |
-
font-size: 12px;
|
745 |
-
margin-bottom: 1px !important;
|
746 |
-
font-weight: 600;
|
747 |
-
}
|
748 |
-
.b2s-settings-sched-time-info, .b2s-settings-time-zone-info{
|
749 |
-
margin-top: 30px;
|
750 |
-
font-size: 13px;
|
751 |
-
font-style:italic;
|
752 |
-
}
|
753 |
-
/*.b2s-time-settings-modal-btn{
|
754 |
-
margin-left: 38px;
|
755 |
-
margin-top: -15px;
|
756 |
-
}*/
|
757 |
-
|
758 |
-
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
759 |
-
margin-right: 5px !important;
|
760 |
-
}
|
761 |
-
.b2s-img-required{
|
762 |
-
border-color: #d9534f !important;
|
763 |
-
}
|
764 |
-
.b2s-post-item-details-url-image{
|
765 |
-
cursor: pointer;
|
766 |
-
}
|
767 |
-
|
768 |
-
.b2s-user-network-settings-post-format-area label > input{
|
769 |
-
visibility: hidden;
|
770 |
-
position: absolute;
|
771 |
-
}
|
772 |
-
.b2s-user-network-settings-post-format-area label > input + img{
|
773 |
-
cursor:pointer;
|
774 |
-
border:2px solid transparent;
|
775 |
-
}
|
776 |
-
|
777 |
-
.b2s-settings-checked + img{
|
778 |
-
border:3px solid #79b232 !important
|
779 |
-
}
|
780 |
-
|
781 |
-
.b2s-display-inline{
|
782 |
-
display: inline !important;
|
783 |
-
}
|
784 |
-
.b2s-post-item-network-image-selected-account{
|
785 |
-
margin-top: -5px;
|
786 |
-
}
|
787 |
-
|
788 |
-
.b2s-settings-time-zone-text{
|
789 |
-
font-size: 13px;
|
790 |
-
font-style: italic;
|
791 |
-
color: #adadad;
|
792 |
-
}
|
793 |
-
|
794 |
-
.b2s-sidbar-wrapper-nav-li,.b2s-sidbar-network-auth-btn,.btn-toggle-menu{
|
795 |
-
cursor: pointer;
|
796 |
-
}
|
797 |
-
|
798 |
-
.b2s-load-info-meta-tag-modal{
|
799 |
-
float:right;
|
800 |
-
}
|
801 |
-
.b2s-post-item-calendar-area {
|
802 |
-
padding-top:10px;
|
803 |
-
padding-bottom: 10px;
|
804 |
-
}
|
805 |
-
|
806 |
-
.b2s-toogle-calendar-btn{
|
807 |
-
margin-top: 2px;
|
808 |
-
}
|
809 |
-
|
810 |
-
input[type="number"]{
|
811 |
-
height: 34px !important;
|
812 |
-
}
|
813 |
-
|
814 |
-
.b2s-unique-content{
|
815 |
-
display: none;
|
816 |
-
}
|
817 |
-
|
818 |
-
.b2s-unique-content-alert, .b2s-network-tos-sched-alert{
|
819 |
-
margin-bottom: 0px !important;
|
820 |
-
}
|
821 |
-
.b2s-post-relay-area-select{
|
822 |
-
margin-bottom: 0px !important;
|
823 |
-
}
|
824 |
-
|
825 |
-
.b2s-border-color-warning{
|
826 |
-
border-color: #204d74 !important;
|
827 |
-
}
|
828 |
-
|
829 |
-
.b2s-post-approve-info{
|
830 |
-
display: none;
|
831 |
-
}
|
832 |
-
|
833 |
-
.b2s-sidebar-menu-item{
|
834 |
-
font-weight: 600 !important;
|
835 |
-
}
|
836 |
-
|
837 |
-
.b2s-submit-btn {
|
838 |
-
margin-left: 5px;
|
839 |
-
}
|
840 |
-
|
841 |
-
.b2s-loader-btn-ship{
|
842 |
-
height: 24px;
|
843 |
-
width: 24px;
|
844 |
-
margin-top: -10px !important;
|
845 |
-
margin-bottom: -6px !important;
|
846 |
-
display: none;
|
847 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/** Navbar */
|
2 |
+
#b2s-wrapper {
|
3 |
+
padding-right: 0;
|
4 |
+
-webkit-transition: all 0.5s ease;
|
5 |
+
-moz-transition: all 0.5s ease;
|
6 |
+
-o-transition: all 0.5s ease;
|
7 |
+
transition: all 0.5s ease;
|
8 |
+
}
|
9 |
+
@media(min-width:991px){
|
10 |
+
#b2s-sidebar-wrapper {
|
11 |
+
right: 25% !important;
|
12 |
+
margin-right: -24% !important;
|
13 |
+
}
|
14 |
+
|
15 |
+
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
16 |
+
width: -25% !important;
|
17 |
+
}
|
18 |
+
|
19 |
+
#b2s-sidebar-wrapper{
|
20 |
+
width:24% !important;
|
21 |
+
}
|
22 |
+
|
23 |
+
.sidebar-nav {
|
24 |
+
width: 100% !important;
|
25 |
+
}
|
26 |
+
.b2s-network-thumb{
|
27 |
+
width:20% !important;
|
28 |
+
}
|
29 |
+
.b2s-network-details{
|
30 |
+
width: 60% !important;
|
31 |
+
}
|
32 |
+
.b2s-network-status{
|
33 |
+
width: 15% !important;
|
34 |
+
}
|
35 |
+
.b2s-network-details-header{
|
36 |
+
width: 80% !important;
|
37 |
+
}
|
38 |
+
.toggelbutton{
|
39 |
+
display: none;
|
40 |
+
}
|
41 |
+
|
42 |
+
}
|
43 |
+
@media(max-width:991px){
|
44 |
+
.b2s-network-details, .b2s-network-details-header{
|
45 |
+
margin-left:10px;
|
46 |
+
}
|
47 |
+
.network-icon{
|
48 |
+
display: none;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
.b2s-network-details-legend{
|
53 |
+
color:#FFFFFF;
|
54 |
+
text-align: center;
|
55 |
+
opacity: 0.6;
|
56 |
+
}
|
57 |
+
|
58 |
+
.b2s-no-textwarp{
|
59 |
+
white-space: nowrap;
|
60 |
+
}
|
61 |
+
#b2s-sidebar-wrapper {
|
62 |
+
z-index: 1000;
|
63 |
+
position: absolute;
|
64 |
+
right: 300px;
|
65 |
+
width: 0;
|
66 |
+
margin-right: -300px;
|
67 |
+
overflow-x: hidden;
|
68 |
+
background:#fff;
|
69 |
+
-webkit-transition: all 0.5s ease;
|
70 |
+
-moz-transition: all 0.5s ease;
|
71 |
+
-o-transition: all 0.5s ease;
|
72 |
+
transition: all 0.5s ease;
|
73 |
+
}
|
74 |
+
/*.b2s-post-item-details-release-input-time{
|
75 |
+
margin-left: 5px;
|
76 |
+
margin-right: 5px;
|
77 |
+
}*/
|
78 |
+
|
79 |
+
.b2s-post-item-details-release-input-time, .b2s-post-item-details-release-input-date, .b2s-post-item-details-release-input-select-timespan{
|
80 |
+
margin-top: 5px;
|
81 |
+
}
|
82 |
+
|
83 |
+
.b2s-select, .b2s-select-area{
|
84 |
+
margin-top: 6px;
|
85 |
+
}
|
86 |
+
|
87 |
+
.b2s-post-item-details-release-input-date-select{
|
88 |
+
margin-top: 0px !important;
|
89 |
+
}
|
90 |
+
|
91 |
+
.network-icon{
|
92 |
+
margin-top:5px;
|
93 |
+
}
|
94 |
+
|
95 |
+
|
96 |
+
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
97 |
+
width: 300px;
|
98 |
+
}
|
99 |
+
|
100 |
+
#b2s-content-wrapper {
|
101 |
+
position: relative;
|
102 |
+
margin-right: 20px;
|
103 |
+
}
|
104 |
+
|
105 |
+
/*.b2s-post-item-area{
|
106 |
+
max-width: 940px !important;
|
107 |
+
}*/
|
108 |
+
|
109 |
+
#b2s-wrapper.toggled {
|
110 |
+
padding-right: 0;
|
111 |
+
}
|
112 |
+
|
113 |
+
#b2s-wrapper.toggled #b2s-sidebar-wrapper {
|
114 |
+
width: 48px;
|
115 |
+
}
|
116 |
+
|
117 |
+
#b2s-wrapper.toggled #b2s-content-wrapper {
|
118 |
+
position: relative;
|
119 |
+
margin-left: 0;
|
120 |
+
}
|
121 |
+
|
122 |
+
.b2s-network-select-btn-deactivate{
|
123 |
+
opacity: 0.3;
|
124 |
+
}
|
125 |
+
|
126 |
+
/* Sidebar Styles */
|
127 |
+
|
128 |
+
#b2s-sidebar-wrapper {
|
129 |
+
width: 300px;
|
130 |
+
background-color: #23282D;
|
131 |
+
}
|
132 |
+
|
133 |
+
.sidebar-nav {
|
134 |
+
top: 0;
|
135 |
+
width: 300px;
|
136 |
+
margin: 0;
|
137 |
+
padding: 0;
|
138 |
+
list-style: none;
|
139 |
+
}
|
140 |
+
|
141 |
+
.sidebar-nav li a {
|
142 |
+
text-decoration: none;
|
143 |
+
}
|
144 |
+
|
145 |
+
.sidebar-nav li a:hover {
|
146 |
+
text-decoration: none;
|
147 |
+
}
|
148 |
+
|
149 |
+
.sidebar-nav li a:active,
|
150 |
+
.sidebar-nav li a:focus {
|
151 |
+
text-decoration: none;
|
152 |
+
}
|
153 |
+
|
154 |
+
.sidebar-nav > .sidebar-brand {
|
155 |
+
height: 65px;
|
156 |
+
font-size: 18px;
|
157 |
+
line-height: 60px;
|
158 |
+
}
|
159 |
+
|
160 |
+
.sidebar-nav > .sidebar-brand a {
|
161 |
+
color: #999999;
|
162 |
+
}
|
163 |
+
|
164 |
+
.sidebar-nav > .sidebar-brand a:hover {
|
165 |
+
color: #fff;
|
166 |
+
background: none;
|
167 |
+
}
|
168 |
+
|
169 |
+
.sidebar-default{
|
170 |
+
background-color: #fff;
|
171 |
+
border: 1px solid transparent;
|
172 |
+
border-radius: 4px;
|
173 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
174 |
+
}
|
175 |
+
|
176 |
+
.sidebar-brand {
|
177 |
+
border-bottom: 1px solid rgba(102, 97, 91, 0.3);
|
178 |
+
}
|
179 |
+
.sidebar-brand {
|
180 |
+
padding: 18px 0px;
|
181 |
+
margin: 0 20px;
|
182 |
+
}
|
183 |
+
|
184 |
+
.sidebar-nav li{
|
185 |
+
margin-bottom: 0px !important;
|
186 |
+
}
|
187 |
+
|
188 |
+
|
189 |
+
/*Network List*/
|
190 |
+
|
191 |
+
.b2s-network-select-btn{
|
192 |
+
text-decoration:none !important;
|
193 |
+
}
|
194 |
+
|
195 |
+
.active {
|
196 |
+
background-color: #32373C;
|
197 |
+
}
|
198 |
+
.b2s-network-list {
|
199 |
+
display: inline-block;
|
200 |
+
padding: 4px 0;
|
201 |
+
width: 100%;
|
202 |
+
}
|
203 |
+
|
204 |
+
|
205 |
+
.b2s-margin-top-8{
|
206 |
+
margin-top:8px;
|
207 |
+
}
|
208 |
+
|
209 |
+
.b2s-network-thumb {
|
210 |
+
padding: 4px 6px 0;
|
211 |
+
width: 36px;
|
212 |
+
}
|
213 |
+
.b2s-network-thumb, .b2s-network-details,.b2s-network-details-header, .b2s-network-status {
|
214 |
+
float: left;
|
215 |
+
}
|
216 |
+
|
217 |
+
.b2s-network-thumb img {
|
218 |
+
border-radius: 50%;
|
219 |
+
height: 36px;
|
220 |
+
width: 36px;
|
221 |
+
}
|
222 |
+
|
223 |
+
.b2s-network-thumb i{
|
224 |
+
margin: 8px;
|
225 |
+
font-size: 22px;
|
226 |
+
color: #79B331;
|
227 |
+
}
|
228 |
+
|
229 |
+
.b2s-network-details {
|
230 |
+
width: 195px;
|
231 |
+
|
232 |
+
}
|
233 |
+
|
234 |
+
.b2s-network-details-header{
|
235 |
+
width: 240px;
|
236 |
+
}
|
237 |
+
|
238 |
+
.b2s-network-details-header h3 {
|
239 |
+
font-size: 16px;
|
240 |
+
color: #fff;
|
241 |
+
font-weight: 500;
|
242 |
+
text-transform: uppercase;
|
243 |
+
}
|
244 |
+
.b2s-network-details h4 {
|
245 |
+
font-size: 15px;
|
246 |
+
color: #fff;
|
247 |
+
font-weight: 400;
|
248 |
+
text-transform: uppercase;
|
249 |
+
margin-top:3px;
|
250 |
+
margin-bottom: 5px;
|
251 |
+
}
|
252 |
+
|
253 |
+
.b2s-network-list p {
|
254 |
+
color: #8f8f9b;
|
255 |
+
font-size: 14px;
|
256 |
+
margin-bottom: 0;
|
257 |
+
}
|
258 |
+
.b2s-network-status {
|
259 |
+
margin-top: 5px;
|
260 |
+
width: 25px;
|
261 |
+
}
|
262 |
+
|
263 |
+
.b2s-network-status img ,.b2s-network-list-add-thumb {
|
264 |
+
border-radius: 50%;
|
265 |
+
height: 36px;
|
266 |
+
width: 36px;
|
267 |
+
}
|
268 |
+
|
269 |
+
.b2s-post-item-details-item-message-input{
|
270 |
+
min-height: 8em;
|
271 |
+
}
|
272 |
+
|
273 |
+
.b2s-post-item-area{
|
274 |
+
width: 100%;
|
275 |
+
}
|
276 |
+
.b2s-post-item-details, .b2s-post-item-thumb{
|
277 |
+
float: left;
|
278 |
+
}
|
279 |
+
.b2s-post-item-thumb{
|
280 |
+
width: 5%;
|
281 |
+
margin-right: 8px;
|
282 |
+
}
|
283 |
+
|
284 |
+
.b2s-post-item-details{
|
285 |
+
width: 93%;
|
286 |
+
}
|
287 |
+
|
288 |
+
.b2s-post-item-thumb img{
|
289 |
+
border-radius: 50%;
|
290 |
+
width: 48px;
|
291 |
+
}
|
292 |
+
|
293 |
+
.b2s-post-item-details h4{
|
294 |
+
font-size: 16px;
|
295 |
+
font-weight: 600;
|
296 |
+
text-transform: uppercase;
|
297 |
+
margin: 3px 3px 3px 0px;
|
298 |
+
}
|
299 |
+
|
300 |
+
.b2s-post-item-network-deprecated {
|
301 |
+
font-weight: 600;
|
302 |
+
font-size: 14px;
|
303 |
+
margin: 3px 3px 3px 0px;
|
304 |
+
}
|
305 |
+
|
306 |
+
.b2s-post-item-info-area{
|
307 |
+
font-size: 11px !important;
|
308 |
+
}
|
309 |
+
|
310 |
+
.b2s-post-item-details-message-result{
|
311 |
+
margin-top:2px;
|
312 |
+
}
|
313 |
+
.b2s-post-item-details p{
|
314 |
+
font-size: 12px;
|
315 |
+
margin: 0px 3px;
|
316 |
+
|
317 |
+
}
|
318 |
+
|
319 |
+
.b2s-publish-area{
|
320 |
+
width: 100% !important;
|
321 |
+
}
|
322 |
+
|
323 |
+
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format, .b2s-post-ship-item-copy-original-text{
|
324 |
+
line-height: 1.5 !important;
|
325 |
+
padding: 0 1px 3px !important;
|
326 |
+
}
|
327 |
+
|
328 |
+
.b2s-post-item-details-item-title-input, .b2s-post-item-details-item-group-select, .b2s-post-item-details-tag-input{
|
329 |
+
margin-bottom: 5px;
|
330 |
+
}
|
331 |
+
|
332 |
+
.b2s-post-item-details-item-message-input-allow-html{
|
333 |
+
min-height: 200px;
|
334 |
+
}
|
335 |
+
.b2s-post-item-message-info{
|
336 |
+
margin-left:15px !important;
|
337 |
+
font-weight: 600;
|
338 |
+
|
339 |
+
}
|
340 |
+
|
341 |
+
.b2s-post-item-details-preview-url-reload{
|
342 |
+
cursor: pointer;
|
343 |
+
top:0px !important;
|
344 |
+
}
|
345 |
+
|
346 |
+
|
347 |
+
.b2s-post-item-details-url-title, .b2s-post-item-details-title-title, .b2s-post-item-details-tag-title,.b2s-post-item-details-release-choose{
|
348 |
+
font-size: 12px;
|
349 |
+
font-weight: 600;
|
350 |
+
letter-spacing: 0;
|
351 |
+
}
|
352 |
+
|
353 |
+
.b2s-post-item-details-tag-input-elem{
|
354 |
+
margin: 2px 4px;
|
355 |
+
max-width: 145px !important;
|
356 |
+
}
|
357 |
+
|
358 |
+
.b2s-no-image-area{
|
359 |
+
margin-left: 15px;
|
360 |
+
}
|
361 |
+
.b2s-no-image-area-text{
|
362 |
+
font-size: 12px;
|
363 |
+
margin-left: 2px;
|
364 |
+
}
|
365 |
+
|
366 |
+
.b2s-post-item-countChar{
|
367 |
+
padding-top:2px;
|
368 |
+
}
|
369 |
+
|
370 |
+
.b2s-post-item-details-tag-area{
|
371 |
+
float:left;
|
372 |
+
width: 100%;
|
373 |
+
min-height: 1px;
|
374 |
+
position: relative;
|
375 |
+
}
|
376 |
+
|
377 |
+
.b2s-post-item-details-release-area-details-ul, .b2s-post-item-relay-area-details-ul{
|
378 |
+
margin-top:1em;
|
379 |
+
}
|
380 |
+
.b2s-post-item-details-release-input-lable-day,.b2s-post-item-details-release-input-date{
|
381 |
+
font-size: 15px;
|
382 |
+
margin-right: 8px;
|
383 |
+
}
|
384 |
+
|
385 |
+
.b2s-post-item-details-release-input-lable-day{
|
386 |
+
margin-top: 5px;
|
387 |
+
}
|
388 |
+
|
389 |
+
.b2s-post-item-details-tag-add-div{
|
390 |
+
border: 0px !important;
|
391 |
+
box-shadow: 0px 0px 0px #000 !important;
|
392 |
+
}
|
393 |
+
.b2s-post-item-details-release-area{
|
394 |
+
float: left;
|
395 |
+
width: 100%;
|
396 |
+
}
|
397 |
+
|
398 |
+
.b2s-post-item-details-release-area-details, .b2s-post-item-relay-area-details{
|
399 |
+
float: left;
|
400 |
+
width: 100%;
|
401 |
+
}
|
402 |
+
.b2s-post-item-details-release-input-daySelect input{
|
403 |
+
margin-right: 15px;
|
404 |
+
}
|
405 |
+
|
406 |
+
.b2s-post-item-details-tag-input{
|
407 |
+
float: left;
|
408 |
+
margin-right: 5px;
|
409 |
+
}
|
410 |
+
|
411 |
+
.b2s-network-hide{
|
412 |
+
display: none !important;
|
413 |
+
}
|
414 |
+
|
415 |
+
|
416 |
+
.b2s-image-item{
|
417 |
+
background-color: #fff;
|
418 |
+
border: 1px solid #ddd;
|
419 |
+
display: block;
|
420 |
+
float: left;
|
421 |
+
height: 200px;
|
422 |
+
line-height: 1.42857;
|
423 |
+
margin-bottom: 15px;
|
424 |
+
margin-left: 15px;
|
425 |
+
margin-top: 15px;
|
426 |
+
overflow: hidden;
|
427 |
+
padding: 4px;
|
428 |
+
|
429 |
+
transition: border 0.2s ease-in-out 0s;
|
430 |
+
width: 185px;
|
431 |
+
}
|
432 |
+
.img-thumbnail{
|
433 |
+
display: block !important;
|
434 |
+
height: auto;
|
435 |
+
margin-left: auto;
|
436 |
+
margin-right: auto;
|
437 |
+
max-height: 100%;
|
438 |
+
}
|
439 |
+
|
440 |
+
.b2s-image-item-thumb{
|
441 |
+
height: 150px;
|
442 |
+
}
|
443 |
+
.b2s-image-item-thumb label{
|
444 |
+
display: inline;
|
445 |
+
}
|
446 |
+
.b2s-image-item-caption{
|
447 |
+
color: #333;
|
448 |
+
|
449 |
+
}
|
450 |
+
|
451 |
+
@media(min-width:991px){
|
452 |
+
.b2s-publish-navbar-btn{
|
453 |
+
margin-right: 24.3%;
|
454 |
+
}
|
455 |
+
}
|
456 |
+
|
457 |
+
@media(max-width:990px){
|
458 |
+
.b2s-publish-navbar-btn{
|
459 |
+
margin-right: 4.3%;
|
460 |
+
}
|
461 |
+
}
|
462 |
+
|
463 |
+
.b2s-publish-navbar-btn{
|
464 |
+
float: right;
|
465 |
+
}
|
466 |
+
|
467 |
+
.b2s-network-list-add-details{
|
468 |
+
padding-left: 15px;
|
469 |
+
}
|
470 |
+
|
471 |
+
.b2s-network-list-add-btn{
|
472 |
+
float: right;
|
473 |
+
margin-left:2px;
|
474 |
+
}
|
475 |
+
|
476 |
+
.text-break{
|
477 |
+
white-space:normal !important;
|
478 |
+
}
|
479 |
+
|
480 |
+
.b2s-hr-small{
|
481 |
+
margin-top:0.7em;
|
482 |
+
margin-bottom: 0.7em;
|
483 |
+
}
|
484 |
+
|
485 |
+
/*Custom*/
|
486 |
+
.form-control {
|
487 |
+
background-color: #ffffff;
|
488 |
+
background-image: none;
|
489 |
+
border: 1px solid #cccccc;
|
490 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
491 |
+
color: #555555;
|
492 |
+
display: block;
|
493 |
+
font-size: 14px;
|
494 |
+
height: 34px;
|
495 |
+
line-height: 1.42857;
|
496 |
+
padding: 6px 12px;
|
497 |
+
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
498 |
+
vertical-align: middle;
|
499 |
+
width: 100%;
|
500 |
+
}
|
501 |
+
|
502 |
+
input[type="checkbox"], input[type="radio"] {
|
503 |
+
margin: 0 !important;
|
504 |
+
}
|
505 |
+
|
506 |
+
.b2s-network-status-img,.b2s-network-status-no-img,.b2s-network-status-expiredDate{
|
507 |
+
font-size:25px;
|
508 |
+
margin: 5px;
|
509 |
+
}
|
510 |
+
|
511 |
+
.ad-tag-btn,.remove-tag-btn{
|
512 |
+
cursor: pointer;
|
513 |
+
margin:0px 4px 0px 4px;
|
514 |
+
}
|
515 |
+
.ad-tag-btn:hover,.remove-tag-btn:hover{
|
516 |
+
color:#000;
|
517 |
+
}
|
518 |
+
|
519 |
+
.b2s-post-details{
|
520 |
+
padding: 0 0 15px 15px !important;
|
521 |
+
}
|
522 |
+
|
523 |
+
.b2s-vertical-align-baseline{
|
524 |
+
vertical-align: baseline;
|
525 |
+
}
|
526 |
+
|
527 |
+
.b2s-post-item-loading-dummy > .panel {
|
528 |
+
min-height: 20em;
|
529 |
+
}
|
530 |
+
.b2s-post-item-loading-impulse-area{
|
531 |
+
margin-top:5em;
|
532 |
+
}
|
533 |
+
.b2s-post-item-details-portal-img-area{
|
534 |
+
margin-top:1em;
|
535 |
+
margin-bottom: 1em;
|
536 |
+
}
|
537 |
+
.b2s-post-item-details-portal-img-area > img{
|
538 |
+
margin: 0 auto;
|
539 |
+
}
|
540 |
+
|
541 |
+
.input-group-addon {
|
542 |
+
background-color: #ffffff;
|
543 |
+
border: 0;
|
544 |
+
border-radius: 0px;
|
545 |
+
}
|
546 |
+
|
547 |
+
.b2s-re-share-btn{
|
548 |
+
margin-right: 5px;
|
549 |
+
}
|
550 |
+
|
551 |
+
.b2s-re-share-info{
|
552 |
+
margin-top: 3px;
|
553 |
+
}
|
554 |
+
|
555 |
+
.scroll-to-bottom{
|
556 |
+
margin-top: 10px;
|
557 |
+
}
|
558 |
+
|
559 |
+
.b2s-image-remove-btn{
|
560 |
+
position: absolute;
|
561 |
+
top: -5px;
|
562 |
+
right: 0px;
|
563 |
+
font-weight: 700 !important;
|
564 |
+
}
|
565 |
+
|
566 |
+
/*Custom Network Layout*/
|
567 |
+
|
568 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image, .tw-url-image, .b2s-image-border{
|
569 |
+
margin-right: 10px;
|
570 |
+
margin-bottom: 20px;
|
571 |
+
border: 1px dashed #bdbfc2;
|
572 |
+
box-shadow: none;
|
573 |
+
padding: 5px;
|
574 |
+
}
|
575 |
+
/*@media(max-width:991px){
|
576 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image{
|
577 |
+
width: 100%;
|
578 |
+
}
|
579 |
+
|
580 |
+
.fb-content, .xing-content, .linkedin-content {
|
581 |
+
float: left;
|
582 |
+
margin-bottom: 20px;
|
583 |
+
}
|
584 |
+
}
|
585 |
+
@media(min-width:991px){
|
586 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image{
|
587 |
+
width: 100%;
|
588 |
+
}
|
589 |
+
.fb-content, .xing-content, .linkedin-content{
|
590 |
+
float: left;
|
591 |
+
width: 78%;
|
592 |
+
margin-bottom: 20px;
|
593 |
+
}
|
594 |
+
}*/
|
595 |
+
|
596 |
+
.fb-textarea-input:focus, .tw-textarea-input:focus, .tw-url-input:focus, .fb-url-input:focus, .xing-textarea-input:focus, .xing-url-input:focus, .linkedin-textarea-input:focus, .linkedin-url-input:focus{
|
597 |
+
border-color: #66afe9;
|
598 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
|
599 |
+
outline: 0 none;
|
600 |
+
}
|
601 |
+
|
602 |
+
.fb-textarea-input,.tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input{
|
603 |
+
font-size: 14px;
|
604 |
+
font-weight: normal;
|
605 |
+
line-height: 1.125;
|
606 |
+
width: 100%;
|
607 |
+
border: medium none;
|
608 |
+
border-radius: 0;
|
609 |
+
margin-top: 10px;
|
610 |
+
margin-bottom: 10px;
|
611 |
+
font-family: helvetica,arial,sans-serif;
|
612 |
+
}
|
613 |
+
|
614 |
+
.fb-url-input,.tw-url-input, .xing-url-input, .linkedin-url-input{
|
615 |
+
font-size: 12px;
|
616 |
+
font-weight: normal;
|
617 |
+
line-height: 1.38;
|
618 |
+
width: 100%;
|
619 |
+
border: medium none;
|
620 |
+
}
|
621 |
+
|
622 |
+
.fb-url-title{
|
623 |
+
font-size: 18px !important;
|
624 |
+
font-weight: 500;
|
625 |
+
line-height: 22px;
|
626 |
+
margin-top: 12px !important;
|
627 |
+
margin-bottom: 8px !important;
|
628 |
+
max-height: 110px;
|
629 |
+
overflow: hidden;
|
630 |
+
word-wrap: break-word;
|
631 |
+
font-family: Georgia,serif;
|
632 |
+
}
|
633 |
+
.fb-url-desc{
|
634 |
+
font-size: 12px;
|
635 |
+
line-height: 16px;
|
636 |
+
margin-bottom: 8px !important;
|
637 |
+
}
|
638 |
+
|
639 |
+
|
640 |
+
.tw-url-title{
|
641 |
+
font-size: 1.2em !important;
|
642 |
+
font-weight: 600;
|
643 |
+
text-overflow: ellipsis;
|
644 |
+
color: inherit !important;
|
645 |
+
}
|
646 |
+
|
647 |
+
.tw-url-desc{
|
648 |
+
margin: 5px 0 5px !important;
|
649 |
+
color: inherit !important;
|
650 |
+
margin-bottom: 8px !important;
|
651 |
+
}
|
652 |
+
|
653 |
+
.xing-container{
|
654 |
+
border-top: 1px solid #ebebeb;
|
655 |
+
padding: 10px 0px;
|
656 |
+
font-family: "Xing Sans","Trebuchet MS",Verdana,sans-serif;
|
657 |
+
}
|
658 |
+
|
659 |
+
.xing-content{
|
660 |
+
float: left;
|
661 |
+
width: 78%;
|
662 |
+
margin-bottom: 20px;
|
663 |
+
}
|
664 |
+
|
665 |
+
.xing-url-title{
|
666 |
+
margin-top: 0px;
|
667 |
+
margin-bottom: 4px;
|
668 |
+
font-size: 18px;
|
669 |
+
font-weight: normal;
|
670 |
+
line-height: 22px;
|
671 |
+
color: #009090;
|
672 |
+
}
|
673 |
+
|
674 |
+
.xing-url-desc{
|
675 |
+
line-height: 1.38462;
|
676 |
+
font-size: 13px;
|
677 |
+
}
|
678 |
+
|
679 |
+
.linkedin-container{
|
680 |
+
font-family: sans-serif;
|
681 |
+
color: #333;
|
682 |
+
padding: 10px 0px;
|
683 |
+
}
|
684 |
+
|
685 |
+
|
686 |
+
.linkedin-container:hover #linkedin-url-title, .linkedin-container:hover #linkedin-url-desc{
|
687 |
+
text-decoration: underline;
|
688 |
+
}
|
689 |
+
|
690 |
+
.linkedin-url-desc{
|
691 |
+
line-height: 14px;
|
692 |
+
color: #999;
|
693 |
+
font-size: 12px;
|
694 |
+
font-style: normal;
|
695 |
+
font-weight: normal;
|
696 |
+
text-decoration: inherit;
|
697 |
+
padding-left: 10px !important;
|
698 |
+
}
|
699 |
+
|
700 |
+
.linkedin-url-title{
|
701 |
+
font-size: 16px !important;
|
702 |
+
font-weight: normal;
|
703 |
+
line-height: 20px;
|
704 |
+
margin-bottom: 5px !important;
|
705 |
+
margin-top: 5px !important;
|
706 |
+
padding-left: 10px !important;
|
707 |
+
}
|
708 |
+
|
709 |
+
.glyphicon-refresh-animate {
|
710 |
+
-animation: spin .7s infinite linear;
|
711 |
+
-webkit-animation: spin2 .7s infinite linear;
|
712 |
+
}
|
713 |
+
|
714 |
+
@-webkit-keyframes spin2 {
|
715 |
+
from { -webkit-transform: rotate(0deg);}
|
716 |
+
to { -webkit-transform: rotate(360deg);}
|
717 |
+
}
|
718 |
+
|
719 |
+
@keyframes spin {
|
720 |
+
from { transform: scale(1) rotate(0deg);}
|
721 |
+
to { transform: scale(1) rotate(360deg);}
|
722 |
+
}
|
723 |
+
|
724 |
+
.datepicker table tr td.today {
|
725 |
+
background-color: #fff !important;
|
726 |
+
border-color: #fff !important;
|
727 |
+
color: #000;
|
728 |
+
font-weight: 700;
|
729 |
+
font-size: 15px;
|
730 |
+
}
|
731 |
+
.datepicker table tr td.active {
|
732 |
+
background-color: #337ab7 !important;
|
733 |
+
border-color: #2e6da4 !important;
|
734 |
+
color: #fff;
|
735 |
+
}
|
736 |
+
|
737 |
+
.b2s-box-sched-time-input{
|
738 |
+
width: 90px !important;
|
739 |
+
}
|
740 |
+
.b2s-box-sched-time-area{
|
741 |
+
margin-left: 100px;
|
742 |
+
}
|
743 |
+
.b2s-box-sched-time-area-label{
|
744 |
+
font-size: 12px;
|
745 |
+
margin-bottom: 1px !important;
|
746 |
+
font-weight: 600;
|
747 |
+
}
|
748 |
+
.b2s-settings-sched-time-info, .b2s-settings-time-zone-info{
|
749 |
+
margin-top: 30px;
|
750 |
+
font-size: 13px;
|
751 |
+
font-style:italic;
|
752 |
+
}
|
753 |
+
/*.b2s-time-settings-modal-btn{
|
754 |
+
margin-left: 38px;
|
755 |
+
margin-top: -15px;
|
756 |
+
}*/
|
757 |
+
|
758 |
+
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network{
|
759 |
+
margin-right: 5px !important;
|
760 |
+
}
|
761 |
+
.b2s-img-required{
|
762 |
+
border-color: #d9534f !important;
|
763 |
+
}
|
764 |
+
.b2s-post-item-details-url-image{
|
765 |
+
cursor: pointer;
|
766 |
+
}
|
767 |
+
|
768 |
+
.b2s-user-network-settings-post-format-area label > input{
|
769 |
+
visibility: hidden;
|
770 |
+
position: absolute;
|
771 |
+
}
|
772 |
+
.b2s-user-network-settings-post-format-area label > input + img{
|
773 |
+
cursor:pointer;
|
774 |
+
border:2px solid transparent;
|
775 |
+
}
|
776 |
+
|
777 |
+
.b2s-settings-checked + img{
|
778 |
+
border:3px solid #79b232 !important
|
779 |
+
}
|
780 |
+
|
781 |
+
.b2s-display-inline{
|
782 |
+
display: inline !important;
|
783 |
+
}
|
784 |
+
.b2s-post-item-network-image-selected-account{
|
785 |
+
margin-top: -5px;
|
786 |
+
}
|
787 |
+
|
788 |
+
.b2s-settings-time-zone-text{
|
789 |
+
font-size: 13px;
|
790 |
+
font-style: italic;
|
791 |
+
color: #adadad;
|
792 |
+
}
|
793 |
+
|
794 |
+
.b2s-sidbar-wrapper-nav-li,.b2s-sidbar-network-auth-btn,.btn-toggle-menu{
|
795 |
+
cursor: pointer;
|
796 |
+
}
|
797 |
+
|
798 |
+
.b2s-load-info-meta-tag-modal{
|
799 |
+
float:right;
|
800 |
+
}
|
801 |
+
.b2s-post-item-calendar-area {
|
802 |
+
padding-top:10px;
|
803 |
+
padding-bottom: 10px;
|
804 |
+
}
|
805 |
+
|
806 |
+
.b2s-toogle-calendar-btn{
|
807 |
+
margin-top: 2px;
|
808 |
+
}
|
809 |
+
|
810 |
+
input[type="number"]{
|
811 |
+
height: 34px !important;
|
812 |
+
}
|
813 |
+
|
814 |
+
.b2s-unique-content{
|
815 |
+
display: none;
|
816 |
+
}
|
817 |
+
|
818 |
+
.b2s-unique-content-alert, .b2s-network-tos-sched-alert{
|
819 |
+
margin-bottom: 0px !important;
|
820 |
+
}
|
821 |
+
.b2s-post-relay-area-select{
|
822 |
+
margin-bottom: 0px !important;
|
823 |
+
}
|
824 |
+
|
825 |
+
.b2s-border-color-warning{
|
826 |
+
border-color: #204d74 !important;
|
827 |
+
}
|
828 |
+
|
829 |
+
.b2s-post-approve-info{
|
830 |
+
display: none;
|
831 |
+
}
|
832 |
+
|
833 |
+
.b2s-sidebar-menu-item{
|
834 |
+
font-weight: 600 !important;
|
835 |
+
}
|
836 |
+
|
837 |
+
.b2s-submit-btn {
|
838 |
+
margin-left: 5px;
|
839 |
+
}
|
840 |
+
|
841 |
+
.b2s-loader-btn-ship{
|
842 |
+
height: 24px;
|
843 |
+
width: 24px;
|
844 |
+
margin-top: -10px !important;
|
845 |
+
margin-bottom: -6px !important;
|
846 |
+
display: none;
|
847 |
+
}
|
848 |
+
|
849 |
+
.b2s-login-form-label {
|
850 |
+
padding-top: 7px;
|
851 |
+
margin-top: 0;
|
852 |
+
margin-bottom: 0;
|
853 |
+
text-align: right;
|
854 |
+
font-weight: bold;
|
855 |
+
}
|
assets/css/b2s/support.css
CHANGED
@@ -1,55 +1,55 @@
|
|
1 |
-
@media (max-width: 768px)
|
2 |
-
{
|
3 |
-
body .col-md-6{
|
4 |
-
padding-left: 0;
|
5 |
-
padding-right: 0;
|
6 |
-
}
|
7 |
-
}
|
8 |
-
.b2s-faq-content a{
|
9 |
-
text-decoration: underline;
|
10 |
-
color: #444;
|
11 |
-
font-size: 14px !important;
|
12 |
-
}
|
13 |
-
.b2s-support-topic-img{
|
14 |
-
min-width: 3em;
|
15 |
-
}
|
16 |
-
|
17 |
-
.b2s-support-line{
|
18 |
-
margin-top: 0px!important;
|
19 |
-
}
|
20 |
-
|
21 |
-
.b2s-support-link-not-active {
|
22 |
-
pointer-events: none;
|
23 |
-
cursor: default;
|
24 |
-
text-decoration: none;
|
25 |
-
color: gray;
|
26 |
-
opacity: 0.5;
|
27 |
-
}
|
28 |
-
|
29 |
-
.b2s-margin-left-10 {
|
30 |
-
margin-left: 10px;
|
31 |
-
}
|
32 |
-
|
33 |
-
#b2s-support-check-system .glyphicon {
|
34 |
-
font-size: 15px;
|
35 |
-
}
|
36 |
-
|
37 |
-
#b2s-support-check-system hr {
|
38 |
-
margin-top: 0px !important;
|
39 |
-
}
|
40 |
-
|
41 |
-
.b2s-support-menu > li > a {
|
42 |
-
padding: 10px 15px !important;
|
43 |
-
}
|
44 |
-
|
45 |
-
.thumbnail-no-border{
|
46 |
-
border: 0px !important;
|
47 |
-
}
|
48 |
-
|
49 |
-
.b2s-sharing-debugger-result-area{
|
50 |
-
display: block;
|
51 |
-
}
|
52 |
-
|
53 |
-
.b2s-padding-top-8{
|
54 |
-
padding-top:8px;
|
55 |
}
|
1 |
+
@media (max-width: 768px)
|
2 |
+
{
|
3 |
+
body .col-md-6{
|
4 |
+
padding-left: 0;
|
5 |
+
padding-right: 0;
|
6 |
+
}
|
7 |
+
}
|
8 |
+
.b2s-faq-content a{
|
9 |
+
text-decoration: underline;
|
10 |
+
color: #444;
|
11 |
+
font-size: 14px !important;
|
12 |
+
}
|
13 |
+
.b2s-support-topic-img{
|
14 |
+
min-width: 3em;
|
15 |
+
}
|
16 |
+
|
17 |
+
.b2s-support-line{
|
18 |
+
margin-top: 0px!important;
|
19 |
+
}
|
20 |
+
|
21 |
+
.b2s-support-link-not-active {
|
22 |
+
pointer-events: none;
|
23 |
+
cursor: default;
|
24 |
+
text-decoration: none;
|
25 |
+
color: gray;
|
26 |
+
opacity: 0.5;
|
27 |
+
}
|
28 |
+
|
29 |
+
.b2s-margin-left-10 {
|
30 |
+
margin-left: 10px;
|
31 |
+
}
|
32 |
+
|
33 |
+
#b2s-support-check-system .glyphicon {
|
34 |
+
font-size: 15px;
|
35 |
+
}
|
36 |
+
|
37 |
+
#b2s-support-check-system hr {
|
38 |
+
margin-top: 0px !important;
|
39 |
+
}
|
40 |
+
|
41 |
+
.b2s-support-menu > li > a {
|
42 |
+
padding: 10px 15px !important;
|
43 |
+
}
|
44 |
+
|
45 |
+
.thumbnail-no-border{
|
46 |
+
border: 0px !important;
|
47 |
+
}
|
48 |
+
|
49 |
+
.b2s-sharing-debugger-result-area{
|
50 |
+
display: block;
|
51 |
+
}
|
52 |
+
|
53 |
+
.b2s-padding-top-8{
|
54 |
+
padding-top:8px;
|
55 |
}
|
assets/css/b2s/wp/plugin-deactivate.css
CHANGED
@@ -1,145 +1,145 @@
|
|
1 |
-
.b2s-plugin-modal {
|
2 |
-
overflow-x: hidden;
|
3 |
-
overflow-y: auto;
|
4 |
-
content: "";
|
5 |
-
display: none;
|
6 |
-
background: rgba(0, 0, 0, 0.6);
|
7 |
-
position: fixed;
|
8 |
-
top: 0;
|
9 |
-
left: 0;
|
10 |
-
right: 0;
|
11 |
-
bottom: 0;
|
12 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
13 |
-
z-index: 1050;
|
14 |
-
}
|
15 |
-
.b2s-plugin-modal-btn-close{
|
16 |
-
color: #000;
|
17 |
-
float: right;
|
18 |
-
font-size: 24px;
|
19 |
-
font-weight: bold;
|
20 |
-
text-decoration: none;
|
21 |
-
opacity: 0.4;
|
22 |
-
text-shadow: 0 1px 0 #fff;
|
23 |
-
background: transparent none repeat scroll 0 0;
|
24 |
-
border: 0 none;
|
25 |
-
cursor: pointer;
|
26 |
-
padding: 0;
|
27 |
-
}
|
28 |
-
.b2s-plugin-modal-dialog{
|
29 |
-
background: #fefefe none repeat scroll 0 0;
|
30 |
-
border-radius: 5px;
|
31 |
-
width: auto;
|
32 |
-
top:10%;
|
33 |
-
max-width: 600px;
|
34 |
-
position: relative;
|
35 |
-
}
|
36 |
-
@media(max-width: 420px) {
|
37 |
-
.b2s-plugin-modal-dialog{
|
38 |
-
margin: 10px;
|
39 |
-
|
40 |
-
}
|
41 |
-
}
|
42 |
-
@media(min-width: 421px) {
|
43 |
-
.b2s-plugin-modal-dialog{
|
44 |
-
margin: 30px auto;
|
45 |
-
}
|
46 |
-
}
|
47 |
-
.b2s-plugin-modal-body {
|
48 |
-
padding: 0px 15px;
|
49 |
-
}
|
50 |
-
.b2s-plugin-modal-header {
|
51 |
-
padding: 10px 20px;
|
52 |
-
}
|
53 |
-
.b2s-plugin-modal-header {
|
54 |
-
border-bottom: 1px solid #e5e5e5;
|
55 |
-
padding: 10px;
|
56 |
-
}
|
57 |
-
.b2s-plugin-modal-footer {
|
58 |
-
border-top: 1px solid #e5e5e5;
|
59 |
-
padding: 15px;
|
60 |
-
}
|
61 |
-
.b2s-plugin-modal-title {
|
62 |
-
line-height: 1.42857;
|
63 |
-
font-size: 20px;
|
64 |
-
margin: 0;
|
65 |
-
}
|
66 |
-
.b2s-plugin-modal-h4 {
|
67 |
-
line-height: 1.42857;
|
68 |
-
font-size: 20px;
|
69 |
-
margin: 0;
|
70 |
-
}
|
71 |
-
#b2s-meta-box-close {
|
72 |
-
display: none;
|
73 |
-
}
|
74 |
-
.b2s-btn-success, .b2s-label-success {
|
75 |
-
background-color: #79B232 !important;
|
76 |
-
}
|
77 |
-
.b2s-center-block {
|
78 |
-
display: block !important;
|
79 |
-
margin-left: auto;
|
80 |
-
margin-right: auto;
|
81 |
-
}
|
82 |
-
.b2s-btn-success {
|
83 |
-
background-color: #79B232 !important;
|
84 |
-
border-color: #398439 !important;
|
85 |
-
color: #fff !important;
|
86 |
-
}
|
87 |
-
.b2s-btn-primary {
|
88 |
-
color: #fff !important;
|
89 |
-
background-color: #337ab7 !important;
|
90 |
-
border-color: #2e6da4 !important;
|
91 |
-
}
|
92 |
-
.b2s-btn-none-underline{
|
93 |
-
text-decoration: none !important;
|
94 |
-
}
|
95 |
-
.b2s-btn {
|
96 |
-
-moz-user-select: none;
|
97 |
-
background-image: none;
|
98 |
-
border: 1px solid transparent;
|
99 |
-
border-radius: 4px;
|
100 |
-
cursor: pointer;
|
101 |
-
display: inline-block;
|
102 |
-
font-size: 12px;
|
103 |
-
font-weight: normal;
|
104 |
-
line-height: 1.42857;
|
105 |
-
margin-bottom: 0;
|
106 |
-
padding: 6px 12px;
|
107 |
-
text-align: center;
|
108 |
-
vertical-align: middle;
|
109 |
-
white-space: nowrap;
|
110 |
-
}
|
111 |
-
.b2s-btn-margin-bottom-15{
|
112 |
-
margin-bottom: 1.5em;
|
113 |
-
}
|
114 |
-
.b2s-info-btn{
|
115 |
-
font-size: 12px;
|
116 |
-
}
|
117 |
-
.b2s-btn-sm{
|
118 |
-
padding: 4px 12px !important;
|
119 |
-
}
|
120 |
-
.b2s-btn-close-meta-box{
|
121 |
-
padding: 0px !important;
|
122 |
-
float:right;
|
123 |
-
position: relative !important;
|
124 |
-
}
|
125 |
-
.b2s-close-icon::before {
|
126 |
-
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
127 |
-
color: #b4b9be;
|
128 |
-
content: "";
|
129 |
-
display: block;
|
130 |
-
font: 16px/20px dashicons;
|
131 |
-
height: 20px;
|
132 |
-
text-align: center;
|
133 |
-
width: 20px;
|
134 |
-
}
|
135 |
-
.b2s-close-icon{
|
136 |
-
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
137 |
-
border: medium none;
|
138 |
-
color: #b4b9be;
|
139 |
-
cursor: pointer;
|
140 |
-
margin: 0;
|
141 |
-
padding: 9px;
|
142 |
-
position: absolute;
|
143 |
-
right: 1px;
|
144 |
-
top: 0;
|
145 |
}
|
1 |
+
.b2s-plugin-modal {
|
2 |
+
overflow-x: hidden;
|
3 |
+
overflow-y: auto;
|
4 |
+
content: "";
|
5 |
+
display: none;
|
6 |
+
background: rgba(0, 0, 0, 0.6);
|
7 |
+
position: fixed;
|
8 |
+
top: 0;
|
9 |
+
left: 0;
|
10 |
+
right: 0;
|
11 |
+
bottom: 0;
|
12 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
13 |
+
z-index: 1050;
|
14 |
+
}
|
15 |
+
.b2s-plugin-modal-btn-close{
|
16 |
+
color: #000;
|
17 |
+
float: right;
|
18 |
+
font-size: 24px;
|
19 |
+
font-weight: bold;
|
20 |
+
text-decoration: none;
|
21 |
+
opacity: 0.4;
|
22 |
+
text-shadow: 0 1px 0 #fff;
|
23 |
+
background: transparent none repeat scroll 0 0;
|
24 |
+
border: 0 none;
|
25 |
+
cursor: pointer;
|
26 |
+
padding: 0;
|
27 |
+
}
|
28 |
+
.b2s-plugin-modal-dialog{
|
29 |
+
background: #fefefe none repeat scroll 0 0;
|
30 |
+
border-radius: 5px;
|
31 |
+
width: auto;
|
32 |
+
top:10%;
|
33 |
+
max-width: 600px;
|
34 |
+
position: relative;
|
35 |
+
}
|
36 |
+
@media(max-width: 420px) {
|
37 |
+
.b2s-plugin-modal-dialog{
|
38 |
+
margin: 10px;
|
39 |
+
|
40 |
+
}
|
41 |
+
}
|
42 |
+
@media(min-width: 421px) {
|
43 |
+
.b2s-plugin-modal-dialog{
|
44 |
+
margin: 30px auto;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
.b2s-plugin-modal-body {
|
48 |
+
padding: 0px 15px;
|
49 |
+
}
|
50 |
+
.b2s-plugin-modal-header {
|
51 |
+
padding: 10px 20px;
|
52 |
+
}
|
53 |
+
.b2s-plugin-modal-header {
|
54 |
+
border-bottom: 1px solid #e5e5e5;
|
55 |
+
padding: 10px;
|
56 |
+
}
|
57 |
+
.b2s-plugin-modal-footer {
|
58 |
+
border-top: 1px solid #e5e5e5;
|
59 |
+
padding: 15px;
|
60 |
+
}
|
61 |
+
.b2s-plugin-modal-title {
|
62 |
+
line-height: 1.42857;
|
63 |
+
font-size: 20px;
|
64 |
+
margin: 0;
|
65 |
+
}
|
66 |
+
.b2s-plugin-modal-h4 {
|
67 |
+
line-height: 1.42857;
|
68 |
+
font-size: 20px;
|
69 |
+
margin: 0;
|
70 |
+
}
|
71 |
+
#b2s-meta-box-close {
|
72 |
+
display: none;
|
73 |
+
}
|
74 |
+
.b2s-btn-success, .b2s-label-success {
|
75 |
+
background-color: #79B232 !important;
|
76 |
+
}
|
77 |
+
.b2s-center-block {
|
78 |
+
display: block !important;
|
79 |
+
margin-left: auto;
|
80 |
+
margin-right: auto;
|
81 |
+
}
|
82 |
+
.b2s-btn-success {
|
83 |
+
background-color: #79B232 !important;
|
84 |
+
border-color: #398439 !important;
|
85 |
+
color: #fff !important;
|
86 |
+
}
|
87 |
+
.b2s-btn-primary {
|
88 |
+
color: #fff !important;
|
89 |
+
background-color: #337ab7 !important;
|
90 |
+
border-color: #2e6da4 !important;
|
91 |
+
}
|
92 |
+
.b2s-btn-none-underline{
|
93 |
+
text-decoration: none !important;
|
94 |
+
}
|
95 |
+
.b2s-btn {
|
96 |
+
-moz-user-select: none;
|
97 |
+
background-image: none;
|
98 |
+
border: 1px solid transparent;
|
99 |
+
border-radius: 4px;
|
100 |
+
cursor: pointer;
|
101 |
+
display: inline-block;
|
102 |
+
font-size: 12px;
|
103 |
+
font-weight: normal;
|
104 |
+
line-height: 1.42857;
|
105 |
+
margin-bottom: 0;
|
106 |
+
padding: 6px 12px;
|
107 |
+
text-align: center;
|
108 |
+
vertical-align: middle;
|
109 |
+
white-space: nowrap;
|
110 |
+
}
|
111 |
+
.b2s-btn-margin-bottom-15{
|
112 |
+
margin-bottom: 1.5em;
|
113 |
+
}
|
114 |
+
.b2s-info-btn{
|
115 |
+
font-size: 12px;
|
116 |
+
}
|
117 |
+
.b2s-btn-sm{
|
118 |
+
padding: 4px 12px !important;
|
119 |
+
}
|
120 |
+
.b2s-btn-close-meta-box{
|
121 |
+
padding: 0px !important;
|
122 |
+
float:right;
|
123 |
+
position: relative !important;
|
124 |
+
}
|
125 |
+
.b2s-close-icon::before {
|
126 |
+
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
127 |
+
color: #b4b9be;
|
128 |
+
content: "";
|
129 |
+
display: block;
|
130 |
+
font: 16px/20px dashicons;
|
131 |
+
height: 20px;
|
132 |
+
text-align: center;
|
133 |
+
width: 20px;
|
134 |
+
}
|
135 |
+
.b2s-close-icon{
|
136 |
+
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
137 |
+
border: medium none;
|
138 |
+
color: #b4b9be;
|
139 |
+
cursor: pointer;
|
140 |
+
margin: 0;
|
141 |
+
padding: 9px;
|
142 |
+
position: absolute;
|
143 |
+
right: 1px;
|
144 |
+
top: 0;
|
145 |
}
|
assets/css/b2s/wp/post-box.css
CHANGED
@@ -1,253 +1,253 @@
|
|
1 |
-
.b2s-loading-area{
|
2 |
-
text-align: center;
|
3 |
-
font-size: 12px;
|
4 |
-
}
|
5 |
-
.b2s-loader-impulse{
|
6 |
-
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
7 |
-
border-radius: 100%;
|
8 |
-
margin: 0 auto;
|
9 |
-
}
|
10 |
-
.b2s-loader-impulse{
|
11 |
-
background-color: #79b331;
|
12 |
-
}
|
13 |
-
|
14 |
-
.b2s-loader-impulse-md{
|
15 |
-
height: 48px;
|
16 |
-
width: 48px;
|
17 |
-
}
|
18 |
-
@keyframes sk-pulseScaleOut {
|
19 |
-
0% {
|
20 |
-
-webkit-transform: scale(0);
|
21 |
-
transform: scale(0); }
|
22 |
-
100% {
|
23 |
-
-webkit-transform: scale(1);
|
24 |
-
transform: scale(1);
|
25 |
-
opacity: 0; }
|
26 |
-
}
|
27 |
-
.b2s-info-success,.b2s-info-error, .b2s-info-warning {
|
28 |
-
display:none;
|
29 |
-
padding: 5px;
|
30 |
-
margin-top:5px;
|
31 |
-
}
|
32 |
-
.b2s-info-success{
|
33 |
-
border: 1px solid green;
|
34 |
-
}
|
35 |
-
|
36 |
-
.b2s-info-error{
|
37 |
-
border: 1px solid red;
|
38 |
-
}
|
39 |
-
|
40 |
-
.b2s-info-warning{
|
41 |
-
border: 1px solid orange;
|
42 |
-
}
|
43 |
-
.b2s-meta-box-headline{
|
44 |
-
margin: 0.55em 0 !important;
|
45 |
-
font-size: 1.08em !important;
|
46 |
-
}
|
47 |
-
|
48 |
-
.b2s-meta-box-auto-post-area{
|
49 |
-
margin-top: 0.5em;
|
50 |
-
margin-bottom: 0.5em;
|
51 |
-
}
|
52 |
-
|
53 |
-
|
54 |
-
.b2s-meta-box-modal {
|
55 |
-
overflow-x: hidden;
|
56 |
-
overflow-y: auto;
|
57 |
-
content: "";
|
58 |
-
display: none;
|
59 |
-
background: rgba(0, 0, 0, 0.6);
|
60 |
-
position: fixed;
|
61 |
-
top: 0;
|
62 |
-
left: 0;
|
63 |
-
right: 0;
|
64 |
-
bottom: 0;
|
65 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
66 |
-
z-index: 1050;
|
67 |
-
}
|
68 |
-
|
69 |
-
.b2s-meta-box-modal-btn-close{
|
70 |
-
color: #000;
|
71 |
-
float: right;
|
72 |
-
font-size: 24px;
|
73 |
-
font-weight: bold;
|
74 |
-
text-decoration: none;
|
75 |
-
opacity: 0.4;
|
76 |
-
text-shadow: 0 1px 0 #fff;
|
77 |
-
background: transparent none repeat scroll 0 0;
|
78 |
-
border: 0 none;
|
79 |
-
cursor: pointer;
|
80 |
-
padding: 0;
|
81 |
-
}
|
82 |
-
|
83 |
-
.b2s-meta-box-modal-dialog{
|
84 |
-
background: #fefefe none repeat scroll 0 0;
|
85 |
-
border-radius: 5px;
|
86 |
-
width: auto;
|
87 |
-
top:10%;
|
88 |
-
max-width: 600px;
|
89 |
-
position: relative;
|
90 |
-
}
|
91 |
-
|
92 |
-
@media(max-width: 420px) {
|
93 |
-
.b2s-meta-box-modal-dialog{
|
94 |
-
margin: 10px;
|
95 |
-
|
96 |
-
}
|
97 |
-
}
|
98 |
-
@media(min-width: 421px) {
|
99 |
-
.b2s-meta-box-modal-dialog{
|
100 |
-
margin: 30px auto;
|
101 |
-
}
|
102 |
-
}
|
103 |
-
|
104 |
-
|
105 |
-
.b2s-meta-box-modal-body {
|
106 |
-
padding: 0px 15px;
|
107 |
-
}
|
108 |
-
.b2s-meta-box-modal-header {
|
109 |
-
padding: 10px 20px;
|
110 |
-
}
|
111 |
-
.b2s-meta-box-modal-header {
|
112 |
-
border-bottom: 1px solid #e5e5e5;
|
113 |
-
padding: 15px;
|
114 |
-
}
|
115 |
-
.b2s-meta-box-modal-title {
|
116 |
-
line-height: 1.42857;
|
117 |
-
font-size: 20px;
|
118 |
-
margin: 0;
|
119 |
-
}
|
120 |
-
.b2s-meta-box-modal-h4 {
|
121 |
-
line-height: 1.42857;
|
122 |
-
font-size: 20px;
|
123 |
-
margin: 0;
|
124 |
-
}
|
125 |
-
#b2s-meta-box-close {
|
126 |
-
display: none;
|
127 |
-
}
|
128 |
-
|
129 |
-
.b2s-btn-success, .b2s-label-success {
|
130 |
-
background-color: #79B232 !important;
|
131 |
-
}
|
132 |
-
.b2s-center-block {
|
133 |
-
display: block !important;
|
134 |
-
margin-left: auto;
|
135 |
-
margin-right: auto;
|
136 |
-
}
|
137 |
-
.b2s-btn-success {
|
138 |
-
background-color: #79B232 !important;
|
139 |
-
border-color: #398439 !important;
|
140 |
-
color: #fff !important;
|
141 |
-
}
|
142 |
-
|
143 |
-
.b2s-btn-primary {
|
144 |
-
color: #fff !important;
|
145 |
-
background-color: #337ab7 !important;
|
146 |
-
border-color: #2e6da4 !important;
|
147 |
-
}
|
148 |
-
|
149 |
-
.b2s-btn-none-underline{
|
150 |
-
text-decoration: none !important;
|
151 |
-
}
|
152 |
-
|
153 |
-
.b2s-btn {
|
154 |
-
-moz-user-select: none;
|
155 |
-
background-image: none;
|
156 |
-
border: 1px solid transparent;
|
157 |
-
border-radius: 4px;
|
158 |
-
cursor: pointer;
|
159 |
-
display: inline-block;
|
160 |
-
font-size: 12px;
|
161 |
-
font-weight: normal;
|
162 |
-
line-height: 1.42857;
|
163 |
-
margin-bottom: 0;
|
164 |
-
padding: 6px 12px;
|
165 |
-
text-align: center;
|
166 |
-
vertical-align: middle;
|
167 |
-
white-space: nowrap;
|
168 |
-
}
|
169 |
-
|
170 |
-
.b2s-btn-margin-bottom-15{
|
171 |
-
margin-bottom: 1.5em;
|
172 |
-
}
|
173 |
-
|
174 |
-
.b2s-info-btn{
|
175 |
-
font-size: 12px;
|
176 |
-
}
|
177 |
-
|
178 |
-
.b2s-btn-sm{
|
179 |
-
padding: 4px 12px !important;
|
180 |
-
}
|
181 |
-
|
182 |
-
.b2s-btn-close-meta-box{
|
183 |
-
padding: 0px !important;
|
184 |
-
float:right;
|
185 |
-
position: relative !important;
|
186 |
-
}
|
187 |
-
.b2s-close-icon::before {
|
188 |
-
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
189 |
-
color: #b4b9be;
|
190 |
-
content: "";
|
191 |
-
display: block;
|
192 |
-
font: 16px/20px dashicons;
|
193 |
-
height: 20px;
|
194 |
-
text-align: center;
|
195 |
-
width: 20px;
|
196 |
-
}
|
197 |
-
|
198 |
-
|
199 |
-
.b2s-close-icon{
|
200 |
-
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
201 |
-
border: medium none;
|
202 |
-
color: #b4b9be;
|
203 |
-
cursor: pointer;
|
204 |
-
margin: 0;
|
205 |
-
padding: 9px;
|
206 |
-
position: absolute;
|
207 |
-
right: 1px;
|
208 |
-
top: 0;
|
209 |
-
}
|
210 |
-
|
211 |
-
.b2s-post-meta-box-sched-area{
|
212 |
-
padding: 8px !important;
|
213 |
-
border: 1px solid #ddd;
|
214 |
-
}
|
215 |
-
|
216 |
-
.b2s-font-bold{
|
217 |
-
font-weight: 600;
|
218 |
-
}
|
219 |
-
|
220 |
-
.b2s-calendar-icon{
|
221 |
-
padding-top: 6px;
|
222 |
-
}
|
223 |
-
|
224 |
-
.b2s-margin-top-5{
|
225 |
-
margin-top: 5px;
|
226 |
-
}
|
227 |
-
|
228 |
-
.b2s-btn-label-premium {
|
229 |
-
color: #fff !important;
|
230 |
-
font-size: 10px !important;
|
231 |
-
}
|
232 |
-
|
233 |
-
.b2s-label {
|
234 |
-
display: inline;
|
235 |
-
padding: .2em .6em .3em;
|
236 |
-
font-size: 75% !important;
|
237 |
-
font-weight: bold;
|
238 |
-
line-height: 1;
|
239 |
-
color: #fff;
|
240 |
-
text-align: center;
|
241 |
-
white-space: nowrap;
|
242 |
-
vertical-align: baseline;
|
243 |
-
border-radius: .25em;
|
244 |
-
|
245 |
-
}
|
246 |
-
|
247 |
-
#b2s-post-meta-box-profil-dropdown-twitter option:disabled {
|
248 |
-
color: #ff4f68;
|
249 |
-
}
|
250 |
-
|
251 |
-
.pull-right{
|
252 |
-
float: right;
|
253 |
-
}
|
1 |
+
.b2s-loading-area{
|
2 |
+
text-align: center;
|
3 |
+
font-size: 12px;
|
4 |
+
}
|
5 |
+
.b2s-loader-impulse{
|
6 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
7 |
+
border-radius: 100%;
|
8 |
+
margin: 0 auto;
|
9 |
+
}
|
10 |
+
.b2s-loader-impulse{
|
11 |
+
background-color: #79b331;
|
12 |
+
}
|
13 |
+
|
14 |
+
.b2s-loader-impulse-md{
|
15 |
+
height: 48px;
|
16 |
+
width: 48px;
|
17 |
+
}
|
18 |
+
@keyframes sk-pulseScaleOut {
|
19 |
+
0% {
|
20 |
+
-webkit-transform: scale(0);
|
21 |
+
transform: scale(0); }
|
22 |
+
100% {
|
23 |
+
-webkit-transform: scale(1);
|
24 |
+
transform: scale(1);
|
25 |
+
opacity: 0; }
|
26 |
+
}
|
27 |
+
.b2s-info-success,.b2s-info-error, .b2s-info-warning {
|
28 |
+
display:none;
|
29 |
+
padding: 5px;
|
30 |
+
margin-top:5px;
|
31 |
+
}
|
32 |
+
.b2s-info-success{
|
33 |
+
border: 1px solid green;
|
34 |
+
}
|
35 |
+
|
36 |
+
.b2s-info-error{
|
37 |
+
border: 1px solid red;
|
38 |
+
}
|
39 |
+
|
40 |
+
.b2s-info-warning{
|
41 |
+
border: 1px solid orange;
|
42 |
+
}
|
43 |
+
.b2s-meta-box-headline{
|
44 |
+
margin: 0.55em 0 !important;
|
45 |
+
font-size: 1.08em !important;
|
46 |
+
}
|
47 |
+
|
48 |
+
.b2s-meta-box-auto-post-area{
|
49 |
+
margin-top: 0.5em;
|
50 |
+
margin-bottom: 0.5em;
|
51 |
+
}
|
52 |
+
|
53 |
+
|
54 |
+
.b2s-meta-box-modal {
|
55 |
+
overflow-x: hidden;
|
56 |
+
overflow-y: auto;
|
57 |
+
content: "";
|
58 |
+
display: none;
|
59 |
+
background: rgba(0, 0, 0, 0.6);
|
60 |
+
position: fixed;
|
61 |
+
top: 0;
|
62 |
+
left: 0;
|
63 |
+
right: 0;
|
64 |
+
bottom: 0;
|
65 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
66 |
+
z-index: 1050;
|
67 |
+
}
|
68 |
+
|
69 |
+
.b2s-meta-box-modal-btn-close{
|
70 |
+
color: #000;
|
71 |
+
float: right;
|
72 |
+
font-size: 24px;
|
73 |
+
font-weight: bold;
|
74 |
+
text-decoration: none;
|
75 |
+
opacity: 0.4;
|
76 |
+
text-shadow: 0 1px 0 #fff;
|
77 |
+
background: transparent none repeat scroll 0 0;
|
78 |
+
border: 0 none;
|
79 |
+
cursor: pointer;
|
80 |
+
padding: 0;
|
81 |
+
}
|
82 |
+
|
83 |
+
.b2s-meta-box-modal-dialog{
|
84 |
+
background: #fefefe none repeat scroll 0 0;
|
85 |
+
border-radius: 5px;
|
86 |
+
width: auto;
|
87 |
+
top:10%;
|
88 |
+
max-width: 600px;
|
89 |
+
position: relative;
|
90 |
+
}
|
91 |
+
|
92 |
+
@media(max-width: 420px) {
|
93 |
+
.b2s-meta-box-modal-dialog{
|
94 |
+
margin: 10px;
|
95 |
+
|
96 |
+
}
|
97 |
+
}
|
98 |
+
@media(min-width: 421px) {
|
99 |
+
.b2s-meta-box-modal-dialog{
|
100 |
+
margin: 30px auto;
|
101 |
+
}
|
102 |
+
}
|
103 |
+
|
104 |
+
|
105 |
+
.b2s-meta-box-modal-body {
|
106 |
+
padding: 0px 15px;
|
107 |
+
}
|
108 |
+
.b2s-meta-box-modal-header {
|
109 |
+
padding: 10px 20px;
|
110 |
+
}
|
111 |
+
.b2s-meta-box-modal-header {
|
112 |
+
border-bottom: 1px solid #e5e5e5;
|
113 |
+
padding: 15px;
|
114 |
+
}
|
115 |
+
.b2s-meta-box-modal-title {
|
116 |
+
line-height: 1.42857;
|
117 |
+
font-size: 20px;
|
118 |
+
margin: 0;
|
119 |
+
}
|
120 |
+
.b2s-meta-box-modal-h4 {
|
121 |
+
line-height: 1.42857;
|
122 |
+
font-size: 20px;
|
123 |
+
margin: 0;
|
124 |
+
}
|
125 |
+
#b2s-meta-box-close {
|
126 |
+
display: none;
|
127 |
+
}
|
128 |
+
|
129 |
+
.b2s-btn-success, .b2s-label-success {
|
130 |
+
background-color: #79B232 !important;
|
131 |
+
}
|
132 |
+
.b2s-center-block {
|
133 |
+
display: block !important;
|
134 |
+
margin-left: auto;
|
135 |
+
margin-right: auto;
|
136 |
+
}
|
137 |
+
.b2s-btn-success {
|
138 |
+
background-color: #79B232 !important;
|
139 |
+
border-color: #398439 !important;
|
140 |
+
color: #fff !important;
|
141 |
+
}
|
142 |
+
|
143 |
+
.b2s-btn-primary {
|
144 |
+
color: #fff !important;
|
145 |
+
background-color: #337ab7 !important;
|
146 |
+
border-color: #2e6da4 !important;
|
147 |
+
}
|
148 |
+
|
149 |
+
.b2s-btn-none-underline{
|
150 |
+
text-decoration: none !important;
|
151 |
+
}
|
152 |
+
|
153 |
+
.b2s-btn {
|
154 |
+
-moz-user-select: none;
|
155 |
+
background-image: none;
|
156 |
+
border: 1px solid transparent;
|
157 |
+
border-radius: 4px;
|
158 |
+
cursor: pointer;
|
159 |
+
display: inline-block;
|
160 |
+
font-size: 12px;
|
161 |
+
font-weight: normal;
|
162 |
+
line-height: 1.42857;
|
163 |
+
margin-bottom: 0;
|
164 |
+
padding: 6px 12px;
|
165 |
+
text-align: center;
|
166 |
+
vertical-align: middle;
|
167 |
+
white-space: nowrap;
|
168 |
+
}
|
169 |
+
|
170 |
+
.b2s-btn-margin-bottom-15{
|
171 |
+
margin-bottom: 1.5em;
|
172 |
+
}
|
173 |
+
|
174 |
+
.b2s-info-btn{
|
175 |
+
font-size: 12px;
|
176 |
+
}
|
177 |
+
|
178 |
+
.b2s-btn-sm{
|
179 |
+
padding: 4px 12px !important;
|
180 |
+
}
|
181 |
+
|
182 |
+
.b2s-btn-close-meta-box{
|
183 |
+
padding: 0px !important;
|
184 |
+
float:right;
|
185 |
+
position: relative !important;
|
186 |
+
}
|
187 |
+
.b2s-close-icon::before {
|
188 |
+
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
189 |
+
color: #b4b9be;
|
190 |
+
content: "";
|
191 |
+
display: block;
|
192 |
+
font: 16px/20px dashicons;
|
193 |
+
height: 20px;
|
194 |
+
text-align: center;
|
195 |
+
width: 20px;
|
196 |
+
}
|
197 |
+
|
198 |
+
|
199 |
+
.b2s-close-icon{
|
200 |
+
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
|
201 |
+
border: medium none;
|
202 |
+
color: #b4b9be;
|
203 |
+
cursor: pointer;
|
204 |
+
margin: 0;
|
205 |
+
padding: 9px;
|
206 |
+
position: absolute;
|
207 |
+
right: 1px;
|
208 |
+
top: 0;
|
209 |
+
}
|
210 |
+
|
211 |
+
.b2s-post-meta-box-sched-area{
|
212 |
+
padding: 8px !important;
|
213 |
+
border: 1px solid #ddd;
|
214 |
+
}
|
215 |
+
|
216 |
+
.b2s-font-bold{
|
217 |
+
font-weight: 600;
|
218 |
+
}
|
219 |
+
|
220 |
+
.b2s-calendar-icon{
|
221 |
+
padding-top: 6px;
|
222 |
+
}
|
223 |
+
|
224 |
+
.b2s-margin-top-5{
|
225 |
+
margin-top: 5px;
|
226 |
+
}
|
227 |
+
|
228 |
+
.b2s-btn-label-premium {
|
229 |
+
color: #fff !important;
|
230 |
+
font-size: 10px !important;
|
231 |
+
}
|
232 |
+
|
233 |
+
.b2s-label {
|
234 |
+
display: inline;
|
235 |
+
padding: .2em .6em .3em;
|
236 |
+
font-size: 75% !important;
|
237 |
+
font-weight: bold;
|
238 |
+
line-height: 1;
|
239 |
+
color: #fff;
|
240 |
+
text-align: center;
|
241 |
+
white-space: nowrap;
|
242 |
+
vertical-align: baseline;
|
243 |
+
border-radius: .25em;
|
244 |
+
|
245 |
+
}
|
246 |
+
|
247 |
+
#b2s-post-meta-box-profil-dropdown-twitter option:disabled {
|
248 |
+
color: #ff4f68;
|
249 |
+
}
|
250 |
+
|
251 |
+
.pull-right{
|
252 |
+
float: right;
|
253 |
+
}
|
assets/css/general.css
CHANGED
@@ -1,7600 +1,7600 @@
|
|
1 |
-
article,
|
2 |
-
aside,
|
3 |
-
details,
|
4 |
-
figcaption,
|
5 |
-
figure,
|
6 |
-
footer,
|
7 |
-
header,
|
8 |
-
hgroup,
|
9 |
-
main,
|
10 |
-
menu,
|
11 |
-
nav,
|
12 |
-
section,
|
13 |
-
summary {
|
14 |
-
display: block;
|
15 |
-
}
|
16 |
-
audio,
|
17 |
-
canvas,
|
18 |
-
progress,
|
19 |
-
video {
|
20 |
-
display: inline-block;
|
21 |
-
vertical-align: baseline;
|
22 |
-
}
|
23 |
-
audio:not([controls]) {
|
24 |
-
display: none;
|
25 |
-
height: 0;
|
26 |
-
}
|
27 |
-
[hidden],
|
28 |
-
template {
|
29 |
-
display: none;
|
30 |
-
}
|
31 |
-
a {
|
32 |
-
background-color: transparent;
|
33 |
-
}
|
34 |
-
a:active,
|
35 |
-
a:hover {
|
36 |
-
outline: 0;
|
37 |
-
}
|
38 |
-
abbr[title] {
|
39 |
-
border-bottom: 1px dotted;
|
40 |
-
}
|
41 |
-
/*b,
|
42 |
-
strong {
|
43 |
-
font-weight: bold;
|
44 |
-
}*/
|
45 |
-
dfn {
|
46 |
-
font-style: italic;
|
47 |
-
}
|
48 |
-
h1 {
|
49 |
-
margin: .67em 0;
|
50 |
-
font-size: 2em;
|
51 |
-
}
|
52 |
-
mark {
|
53 |
-
color: #000;
|
54 |
-
background: #ff0;
|
55 |
-
}
|
56 |
-
small {
|
57 |
-
font-size: 80%;
|
58 |
-
}
|
59 |
-
sub,
|
60 |
-
sup {
|
61 |
-
position: relative;
|
62 |
-
font-size: 75%;
|
63 |
-
line-height: 0;
|
64 |
-
vertical-align: baseline;
|
65 |
-
}
|
66 |
-
sup {
|
67 |
-
top: -.5em;
|
68 |
-
}
|
69 |
-
sub {
|
70 |
-
bottom: -.25em;
|
71 |
-
}
|
72 |
-
img {
|
73 |
-
border: 0;
|
74 |
-
}
|
75 |
-
svg:not(:root) {
|
76 |
-
overflow: hidden;
|
77 |
-
}
|
78 |
-
figure {
|
79 |
-
margin: 1em 40px;
|
80 |
-
}
|
81 |
-
hr {
|
82 |
-
height: 0;
|
83 |
-
-webkit-box-sizing: content-box;
|
84 |
-
-moz-box-sizing: content-box;
|
85 |
-
box-sizing: content-box;
|
86 |
-
}
|
87 |
-
pre {
|
88 |
-
overflow: auto;
|
89 |
-
}
|
90 |
-
code,
|
91 |
-
kbd,
|
92 |
-
pre,
|
93 |
-
samp {
|
94 |
-
font-family: monospace, monospace;
|
95 |
-
font-size: 1em;
|
96 |
-
}
|
97 |
-
button,
|
98 |
-
input,
|
99 |
-
optgroup,
|
100 |
-
select,
|
101 |
-
textarea {
|
102 |
-
margin: 0;
|
103 |
-
font: inherit;
|
104 |
-
color: inherit;
|
105 |
-
}
|
106 |
-
button {
|
107 |
-
overflow: visible;
|
108 |
-
}
|
109 |
-
button,
|
110 |
-
select {
|
111 |
-
text-transform: none;
|
112 |
-
}
|
113 |
-
button,
|
114 |
-
html input[type="button"],
|
115 |
-
input[type="reset"],
|
116 |
-
input[type="submit"] {
|
117 |
-
-webkit-appearance: button;
|
118 |
-
cursor: pointer;
|
119 |
-
}
|
120 |
-
button[disabled],
|
121 |
-
html input[disabled] {
|
122 |
-
cursor: default;
|
123 |
-
}
|
124 |
-
button::-moz-focus-inner,
|
125 |
-
input::-moz-focus-inner {
|
126 |
-
padding: 0;
|
127 |
-
border: 0;
|
128 |
-
}
|
129 |
-
input {
|
130 |
-
line-height: normal;
|
131 |
-
}
|
132 |
-
input[type="checkbox"],
|
133 |
-
input[type="radio"] {
|
134 |
-
-webkit-box-sizing: border-box;
|
135 |
-
-moz-box-sizing: border-box;
|
136 |
-
box-sizing: border-box;
|
137 |
-
padding: 0;
|
138 |
-
}
|
139 |
-
input[type="number"]::-webkit-inner-spin-button,
|
140 |
-
input[type="number"]::-webkit-outer-spin-button {
|
141 |
-
height: auto;
|
142 |
-
}
|
143 |
-
input[type="search"] {
|
144 |
-
-webkit-box-sizing: content-box;
|
145 |
-
-moz-box-sizing: content-box;
|
146 |
-
box-sizing: content-box;
|
147 |
-
-webkit-appearance: textfield;
|
148 |
-
}
|
149 |
-
input[type="search"]::-webkit-search-cancel-button,
|
150 |
-
input[type="search"]::-webkit-search-decoration {
|
151 |
-
-webkit-appearance: none;
|
152 |
-
}
|
153 |
-
fieldset {
|
154 |
-
padding: .35em .625em .75em;
|
155 |
-
margin: 0 2px;
|
156 |
-
border: 1px solid #c0c0c0;
|
157 |
-
}
|
158 |
-
legend {
|
159 |
-
padding: 0;
|
160 |
-
border: 0;
|
161 |
-
}
|
162 |
-
textarea {
|
163 |
-
overflow: auto;
|
164 |
-
}
|
165 |
-
optgroup {
|
166 |
-
font-weight: bold;
|
167 |
-
}
|
168 |
-
table {
|
169 |
-
border-spacing: 0;
|
170 |
-
border-collapse: collapse;
|
171 |
-
}
|
172 |
-
td,
|
173 |
-
th {
|
174 |
-
padding: 0;
|
175 |
-
}
|
176 |
-
|
177 |
-
@media print {
|
178 |
-
*,
|
179 |
-
*:before,
|
180 |
-
*:after {
|
181 |
-
color: #000 !important;
|
182 |
-
text-shadow: none !important;
|
183 |
-
background: transparent !important;
|
184 |
-
-webkit-box-shadow: none !important;
|
185 |
-
box-shadow: none !important;
|
186 |
-
}
|
187 |
-
a,
|
188 |
-
a:visited {
|
189 |
-
text-decoration: underline;
|
190 |
-
}
|
191 |
-
a[href]:after {
|
192 |
-
content: " (" attr(href) ")";
|
193 |
-
}
|
194 |
-
abbr[title]:after {
|
195 |
-
content: " (" attr(title) ")";
|
196 |
-
}
|
197 |
-
a[href^="#"]:after,
|
198 |
-
a[href^="javascript:"]:after {
|
199 |
-
content: "";
|
200 |
-
}
|
201 |
-
pre,
|
202 |
-
blockquote {
|
203 |
-
border: 1px solid #999;
|
204 |
-
|
205 |
-
page-break-inside: avoid;
|
206 |
-
}
|
207 |
-
thead {
|
208 |
-
display: table-header-group;
|
209 |
-
}
|
210 |
-
tr,
|
211 |
-
img {
|
212 |
-
page-break-inside: avoid;
|
213 |
-
}
|
214 |
-
img {
|
215 |
-
max-width: 100% !important;
|
216 |
-
}
|
217 |
-
p,
|
218 |
-
h2,
|
219 |
-
h3 {
|
220 |
-
orphans: 3;
|
221 |
-
widows: 3;
|
222 |
-
}
|
223 |
-
h2,
|
224 |
-
h3 {
|
225 |
-
page-break-after: avoid;
|
226 |
-
}
|
227 |
-
.navbar {
|
228 |
-
display: none;
|
229 |
-
}
|
230 |
-
.btn > .caret,
|
231 |
-
.dropup > .btn > .caret {
|
232 |
-
border-top-color: #000 !important;
|
233 |
-
}
|
234 |
-
.label {
|
235 |
-
border: 1px solid #000;
|
236 |
-
}
|
237 |
-
.table {
|
238 |
-
border-collapse: collapse !important;
|
239 |
-
}
|
240 |
-
.table td,
|
241 |
-
.table th {
|
242 |
-
background-color: #fff !important;
|
243 |
-
}
|
244 |
-
.table-bordered th,
|
245 |
-
.table-bordered td {
|
246 |
-
border: 1px solid #ddd !important;
|
247 |
-
}
|
248 |
-
}
|
249 |
-
@font-face {
|
250 |
-
font-family: 'Glyphicons Halflings';
|
251 |
-
|
252 |
-
src: url('../fonts/glyphicons-halflings-regular.eot');
|
253 |
-
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
254 |
-
}
|
255 |
-
.glyphicon {
|
256 |
-
position: relative;
|
257 |
-
top: 1px;
|
258 |
-
display: inline-block;
|
259 |
-
font-family: 'Glyphicons Halflings';
|
260 |
-
font-style: normal;
|
261 |
-
font-weight: normal;
|
262 |
-
line-height: 1;
|
263 |
-
|
264 |
-
-webkit-font-smoothing: antialiased;
|
265 |
-
-moz-osx-font-smoothing: grayscale;
|
266 |
-
}
|
267 |
-
.glyphicon-asterisk:before {
|
268 |
-
content: "\002a";
|
269 |
-
}
|
270 |
-
.glyphicon-plus:before {
|
271 |
-
content: "\002b";
|
272 |
-
}
|
273 |
-
.glyphicon-euro:before,
|
274 |
-
.glyphicon-eur:before {
|
275 |
-
content: "\20ac";
|
276 |
-
}
|
277 |
-
.glyphicon-minus:before {
|
278 |
-
content: "\2212";
|
279 |
-
}
|
280 |
-
.glyphicon-cloud:before {
|
281 |
-
content: "\2601";
|
282 |
-
}
|
283 |
-
.glyphicon-envelope:before {
|
284 |
-
content: "\2709";
|
285 |
-
}
|
286 |
-
.glyphicon-pencil:before {
|
287 |
-
content: "\270f";
|
288 |
-
}
|
289 |
-
.glyphicon-glass:before {
|
290 |
-
content: "\e001";
|
291 |
-
}
|
292 |
-
.glyphicon-music:before {
|
293 |
-
content: "\e002";
|
294 |
-
}
|
295 |
-
.glyphicon-search:before {
|
296 |
-
content: "\e003";
|
297 |
-
}
|
298 |
-
.glyphicon-heart:before {
|
299 |
-
content: "\e005";
|
300 |
-
}
|
301 |
-
.glyphicon-star:before {
|
302 |
-
content: "\e006";
|
303 |
-
}
|
304 |
-
.glyphicon-star-empty:before {
|
305 |
-
content: "\e007";
|
306 |
-
}
|
307 |
-
.glyphicon-user:before {
|
308 |
-
content: "\e008";
|
309 |
-
}
|
310 |
-
.glyphicon-film:before {
|
311 |
-
content: "\e009";
|
312 |
-
}
|
313 |
-
.glyphicon-th-large:before {
|
314 |
-
content: "\e010";
|
315 |
-
}
|
316 |
-
.glyphicon-th:before {
|
317 |
-
content: "\e011";
|
318 |
-
}
|
319 |
-
.glyphicon-th-list:before {
|
320 |
-
content: "\e012";
|
321 |
-
}
|
322 |
-
.glyphicon-ok:before {
|
323 |
-
content: "\e013";
|
324 |
-
}
|
325 |
-
.glyphicon-remove:before {
|
326 |
-
content: "\e014";
|
327 |
-
}
|
328 |
-
.glyphicon-zoom-in:before {
|
329 |
-
content: "\e015";
|
330 |
-
}
|
331 |
-
.glyphicon-zoom-out:before {
|
332 |
-
content: "\e016";
|
333 |
-
}
|
334 |
-
.glyphicon-off:before {
|
335 |
-
content: "\e017";
|
336 |
-
}
|
337 |
-
.glyphicon-signal:before {
|
338 |
-
content: "\e018";
|
339 |
-
}
|
340 |
-
.glyphicon-cog:before {
|
341 |
-
content: "\e019";
|
342 |
-
}
|
343 |
-
.glyphicon-trash:before {
|
344 |
-
content: "\e020";
|
345 |
-
}
|
346 |
-
.glyphicon-home:before {
|
347 |
-
content: "\e021";
|
348 |
-
}
|
349 |
-
.glyphicon-file:before {
|
350 |
-
content: "\e022";
|
351 |
-
}
|
352 |
-
.glyphicon-time:before {
|
353 |
-
content: "\e023";
|
354 |
-
}
|
355 |
-
.glyphicon-road:before {
|
356 |
-
content: "\e024";
|
357 |
-
}
|
358 |
-
.glyphicon-download-alt:before {
|
359 |
-
content: "\e025";
|
360 |
-
}
|
361 |
-
.glyphicon-download:before {
|
362 |
-
content: "\e026";
|
363 |
-
}
|
364 |
-
.glyphicon-upload:before {
|
365 |
-
content: "\e027";
|
366 |
-
}
|
367 |
-
.glyphicon-inbox:before {
|
368 |
-
content: "\e028";
|
369 |
-
}
|
370 |
-
.glyphicon-play-circle:before {
|
371 |
-
content: "\e029";
|
372 |
-
}
|
373 |
-
.glyphicon-repeat:before {
|
374 |
-
content: "\e030";
|
375 |
-
}
|
376 |
-
.glyphicon-refresh:before {
|
377 |
-
content: "\e031";
|
378 |
-
}
|
379 |
-
.glyphicon-list-alt:before {
|
380 |
-
content: "\e032";
|
381 |
-
}
|
382 |
-
.glyphicon-lock:before {
|
383 |
-
content: "\e033";
|
384 |
-
}
|
385 |
-
.glyphicon-flag:before {
|
386 |
-
content: "\e034";
|
387 |
-
}
|
388 |
-
.glyphicon-headphones:before {
|
389 |
-
content: "\e035";
|
390 |
-
}
|
391 |
-
.glyphicon-volume-off:before {
|
392 |
-
content: "\e036";
|
393 |
-
}
|
394 |
-
.glyphicon-volume-down:before {
|
395 |
-
content: "\e037";
|
396 |
-
}
|
397 |
-
.glyphicon-volume-up:before {
|
398 |
-
content: "\e038";
|
399 |
-
}
|
400 |
-
.glyphicon-qrcode:before {
|
401 |
-
content: "\e039";
|
402 |
-
}
|
403 |
-
.glyphicon-barcode:before {
|
404 |
-
content: "\e040";
|
405 |
-
}
|
406 |
-
.glyphicon-tag:before {
|
407 |
-
content: "\e041";
|
408 |
-
}
|
409 |
-
.glyphicon-tags:before {
|
410 |
-
content: "\e042";
|
411 |
-
}
|
412 |
-
.glyphicon-book:before {
|
413 |
-
content: "\e043";
|
414 |
-
}
|
415 |
-
.glyphicon-bookmark:before {
|
416 |
-
content: "\e044";
|
417 |
-
}
|
418 |
-
.glyphicon-print:before {
|
419 |
-
content: "\e045";
|
420 |
-
}
|
421 |
-
.glyphicon-camera:before {
|
422 |
-
content: "\e046";
|
423 |
-
}
|
424 |
-
.glyphicon-font:before {
|
425 |
-
content: "\e047";
|
426 |
-
}
|
427 |
-
.glyphicon-bold:before {
|
428 |
-
content: "\e048";
|
429 |
-
}
|
430 |
-
.glyphicon-italic:before {
|
431 |
-
content: "\e049";
|
432 |
-
}
|
433 |
-
.glyphicon-text-height:before {
|
434 |
-
content: "\e050";
|
435 |
-
}
|
436 |
-
.glyphicon-text-width:before {
|
437 |
-
content: "\e051";
|
438 |
-
}
|
439 |
-
.glyphicon-align-left:before {
|
440 |
-
content: "\e052";
|
441 |
-
}
|
442 |
-
.glyphicon-align-center:before {
|
443 |
-
content: "\e053";
|
444 |
-
}
|
445 |
-
.glyphicon-align-right:before {
|
446 |
-
content: "\e054";
|
447 |
-
}
|
448 |
-
.glyphicon-align-justify:before {
|
449 |
-
content: "\e055";
|
450 |
-
}
|
451 |
-
.glyphicon-list:before {
|
452 |
-
content: "\e056";
|
453 |
-
}
|
454 |
-
.glyphicon-indent-left:before {
|
455 |
-
content: "\e057";
|
456 |
-
}
|
457 |
-
.glyphicon-indent-right:before {
|
458 |
-
content: "\e058";
|
459 |
-
}
|
460 |
-
.glyphicon-facetime-video:before {
|
461 |
-
content: "\e059";
|
462 |
-
}
|
463 |
-
.glyphicon-picture:before {
|
464 |
-
content: "\e060";
|
465 |
-
}
|
466 |
-
.glyphicon-map-marker:before {
|
467 |
-
content: "\e062";
|
468 |
-
}
|
469 |
-
.glyphicon-adjust:before {
|
470 |
-
content: "\e063";
|
471 |
-
}
|
472 |
-
.glyphicon-tint:before {
|
473 |
-
content: "\e064";
|
474 |
-
}
|
475 |
-
.glyphicon-edit:before {
|
476 |
-
content: "\e065";
|
477 |
-
}
|
478 |
-
.glyphicon-share:before {
|
479 |
-
content: "\e066";
|
480 |
-
}
|
481 |
-
.glyphicon-check:before {
|
482 |
-
content: "\e067";
|
483 |
-
}
|
484 |
-
.glyphicon-move:before {
|
485 |
-
content: "\e068";
|
486 |
-
}
|
487 |
-
.glyphicon-step-backward:before {
|
488 |
-
content: "\e069";
|
489 |
-
}
|
490 |
-
.glyphicon-fast-backward:before {
|
491 |
-
content: "\e070";
|
492 |
-
}
|
493 |
-
.glyphicon-backward:before {
|
494 |
-
content: "\e071";
|
495 |
-
}
|
496 |
-
.glyphicon-play:before {
|
497 |
-
content: "\e072";
|
498 |
-
}
|
499 |
-
.glyphicon-pause:before {
|
500 |
-
content: "\e073";
|
501 |
-
}
|
502 |
-
.glyphicon-stop:before {
|
503 |
-
content: "\e074";
|
504 |
-
}
|
505 |
-
.glyphicon-forward:before {
|
506 |
-
content: "\e075";
|
507 |
-
}
|
508 |
-
.glyphicon-fast-forward:before {
|
509 |
-
content: "\e076";
|
510 |
-
}
|
511 |
-
.glyphicon-step-forward:before {
|
512 |
-
content: "\e077";
|
513 |
-
}
|
514 |
-
.glyphicon-eject:before {
|
515 |
-
content: "\e078";
|
516 |
-
}
|
517 |
-
.glyphicon-chevron-left:before {
|
518 |
-
content: "\e079";
|
519 |
-
}
|
520 |
-
.glyphicon-chevron-right:before {
|
521 |
-
content: "\e080";
|
522 |
-
}
|
523 |
-
.glyphicon-plus-sign:before {
|
524 |
-
content: "\e081";
|
525 |
-
}
|
526 |
-
.glyphicon-minus-sign:before {
|
527 |
-
content: "\e082";
|
528 |
-
}
|
529 |
-
.glyphicon-remove-sign:before {
|
530 |
-
content: "\e083";
|
531 |
-
}
|
532 |
-
.glyphicon-ok-sign:before {
|
533 |
-
content: "\e084";
|
534 |
-
}
|
535 |
-
.glyphicon-question-sign:before {
|
536 |
-
content: "\e085";
|
537 |
-
}
|
538 |
-
.glyphicon-info-sign:before {
|
539 |
-
content: "\e086";
|
540 |
-
}
|
541 |
-
.glyphicon-screenshot:before {
|
542 |
-
content: "\e087";
|
543 |
-
}
|
544 |
-
.glyphicon-remove-circle:before {
|
545 |
-
content: "\e088";
|
546 |
-
}
|
547 |
-
.glyphicon-ok-circle:before {
|
548 |
-
content: "\e089";
|
549 |
-
}
|
550 |
-
.glyphicon-ban-circle:before {
|
551 |
-
content: "\e090";
|
552 |
-
}
|
553 |
-
.glyphicon-arrow-left:before {
|
554 |
-
content: "\e091";
|
555 |
-
}
|
556 |
-
.glyphicon-arrow-right:before {
|
557 |
-
content: "\e092";
|
558 |
-
}
|
559 |
-
.glyphicon-arrow-up:before {
|
560 |
-
content: "\e093";
|
561 |
-
}
|
562 |
-
.glyphicon-arrow-down:before {
|
563 |
-
content: "\e094";
|
564 |
-
}
|
565 |
-
.glyphicon-share-alt:before {
|
566 |
-
content: "\e095";
|
567 |
-
}
|
568 |
-
.glyphicon-resize-full:before {
|
569 |
-
content: "\e096";
|
570 |
-
}
|
571 |
-
.glyphicon-resize-small:before {
|
572 |
-
content: "\e097";
|
573 |
-
}
|
574 |
-
.glyphicon-exclamation-sign:before {
|
575 |
-
content: "\e101";
|
576 |
-
}
|
577 |
-
.glyphicon-gift:before {
|
578 |
-
content: "\e102";
|
579 |
-
}
|
580 |
-
.glyphicon-leaf:before {
|
581 |
-
content: "\e103";
|
582 |
-
}
|
583 |
-
.glyphicon-fire:before {
|
584 |
-
content: "\e104";
|
585 |
-
}
|
586 |
-
.glyphicon-eye-open:before {
|
587 |
-
content: "\e105";
|
588 |
-
}
|
589 |
-
.glyphicon-eye-close:before {
|
590 |
-
content: "\e106";
|
591 |
-
}
|
592 |
-
.glyphicon-warning-sign:before {
|
593 |
-
content: "\e107";
|
594 |
-
}
|
595 |
-
.glyphicon-plane:before {
|
596 |
-
content: "\e108";
|
597 |
-
}
|
598 |
-
.glyphicon-calendar:before {
|
599 |
-
content: "\e109";
|
600 |
-
}
|
601 |
-
.glyphicon-random:before {
|
602 |
-
content: "\e110";
|
603 |
-
}
|
604 |
-
.glyphicon-comment:before {
|
605 |
-
content: "\e111";
|
606 |
-
}
|
607 |
-
.glyphicon-magnet:before {
|
608 |
-
content: "\e112";
|
609 |
-
}
|
610 |
-
.glyphicon-chevron-up:before {
|
611 |
-
content: "\e113";
|
612 |
-
}
|
613 |
-
.glyphicon-chevron-down:before {
|
614 |
-
content: "\e114";
|
615 |
-
}
|
616 |
-
.glyphicon-retweet:before {
|
617 |
-
content: "\e115";
|
618 |
-
}
|
619 |
-
.glyphicon-shopping-cart:before {
|
620 |
-
content: "\e116";
|
621 |
-
}
|
622 |
-
.glyphicon-folder-close:before {
|
623 |
-
content: "\e117";
|
624 |
-
}
|
625 |
-
.glyphicon-folder-open:before {
|
626 |
-
content: "\e118";
|
627 |
-
}
|
628 |
-
.glyphicon-resize-vertical:before {
|
629 |
-
content: "\e119";
|
630 |
-
}
|
631 |
-
.glyphicon-resize-horizontal:before {
|
632 |
-
content: "\e120";
|
633 |
-
}
|
634 |
-
.glyphicon-hdd:before {
|
635 |
-
content: "\e121";
|
636 |
-
}
|
637 |
-
.glyphicon-bullhorn:before {
|
638 |
-
content: "\e122";
|
639 |
-
}
|
640 |
-
.glyphicon-bell:before {
|
641 |
-
content: "\e123";
|
642 |
-
}
|
643 |
-
.glyphicon-certificate:before {
|
644 |
-
content: "\e124";
|
645 |
-
}
|
646 |
-
.glyphicon-thumbs-up:before {
|
647 |
-
content: "\e125";
|
648 |
-
}
|
649 |
-
.glyphicon-thumbs-down:before {
|
650 |
-
content: "\e126";
|
651 |
-
}
|
652 |
-
.glyphicon-hand-right:before {
|
653 |
-
content: "\e127";
|
654 |
-
}
|
655 |
-
.glyphicon-hand-left:before {
|
656 |
-
content: "\e128";
|
657 |
-
}
|
658 |
-
.glyphicon-hand-up:before {
|
659 |
-
content: "\e129";
|
660 |
-
}
|
661 |
-
.glyphicon-hand-down:before {
|
662 |
-
content: "\e130";
|
663 |
-
}
|
664 |
-
.glyphicon-circle-arrow-right:before {
|
665 |
-
content: "\e131";
|
666 |
-
}
|
667 |
-
.glyphicon-circle-arrow-left:before {
|
668 |
-
content: "\e132";
|
669 |
-
}
|
670 |
-
.glyphicon-circle-arrow-up:before {
|
671 |
-
content: "\e133";
|
672 |
-
}
|
673 |
-
.glyphicon-circle-arrow-down:before {
|
674 |
-
content: "\e134";
|
675 |
-
}
|
676 |
-
.glyphicon-globe:before {
|
677 |
-
content: "\e135";
|
678 |
-
}
|
679 |
-
.glyphicon-wrench:before {
|
680 |
-
content: "\e136";
|
681 |
-
}
|
682 |
-
.glyphicon-tasks:before {
|
683 |
-
content: "\e137";
|
684 |
-
}
|
685 |
-
.glyphicon-filter:before {
|
686 |
-
content: "\e138";
|
687 |
-
}
|
688 |
-
.glyphicon-briefcase:before {
|
689 |
-
content: "\e139";
|
690 |
-
}
|
691 |
-
.glyphicon-fullscreen:before {
|
692 |
-
content: "\e140";
|
693 |
-
}
|
694 |
-
.glyphicon-dashboard:before {
|
695 |
-
content: "\e141";
|
696 |
-
}
|
697 |
-
.glyphicon-paperclip:before {
|
698 |
-
content: "\e142";
|
699 |
-
}
|
700 |
-
.glyphicon-heart-empty:before {
|
701 |
-
content: "\e143";
|
702 |
-
}
|
703 |
-
.glyphicon-link:before {
|
704 |
-
content: "\e144";
|
705 |
-
}
|
706 |
-
.glyphicon-phone:before {
|
707 |
-
content: "\e145";
|
708 |
-
}
|
709 |
-
.glyphicon-pushpin:before {
|
710 |
-
content: "\e146";
|
711 |
-
}
|
712 |
-
.glyphicon-usd:before {
|
713 |
-
content: "\e148";
|
714 |
-
}
|
715 |
-
.glyphicon-gbp:before {
|
716 |
-
content: "\e149";
|
717 |
-
}
|
718 |
-
.glyphicon-sort:before {
|
719 |
-
content: "\e150";
|
720 |
-
}
|
721 |
-
.glyphicon-sort-by-alphabet:before {
|
722 |
-
content: "\e151";
|
723 |
-
}
|
724 |
-
.glyphicon-sort-by-alphabet-alt:before {
|
725 |
-
content: "\e152";
|
726 |
-
}
|
727 |
-
.glyphicon-sort-by-order:before {
|
728 |
-
content: "\e153";
|
729 |
-
}
|
730 |
-
.glyphicon-sort-by-order-alt:before {
|
731 |
-
content: "\e154";
|
732 |
-
}
|
733 |
-
.glyphicon-sort-by-attributes:before {
|
734 |
-
content: "\e155";
|
735 |
-
}
|
736 |
-
.glyphicon-sort-by-attributes-alt:before {
|
737 |
-
content: "\e156";
|
738 |
-
}
|
739 |
-
.glyphicon-unchecked:before {
|
740 |
-
content: "\e157";
|
741 |
-
}
|
742 |
-
.glyphicon-expand:before {
|
743 |
-
content: "\e158";
|
744 |
-
}
|
745 |
-
.glyphicon-collapse-down:before {
|
746 |
-
content: "\e159";
|
747 |
-
}
|
748 |
-
.glyphicon-collapse-up:before {
|
749 |
-
content: "\e160";
|
750 |
-
}
|
751 |
-
.glyphicon-log-in:before {
|
752 |
-
content: "\e161";
|
753 |
-
}
|
754 |
-
.glyphicon-flash:before {
|
755 |
-
content: "\e162";
|
756 |
-
}
|
757 |
-
.glyphicon-log-out:before {
|
758 |
-
content: "\e163";
|
759 |
-
}
|
760 |
-
.glyphicon-new-window:before {
|
761 |
-
content: "\e164";
|
762 |
-
}
|
763 |
-
.glyphicon-record:before {
|
764 |
-
content: "\e165";
|
765 |
-
}
|
766 |
-
.glyphicon-save:before {
|
767 |
-
content: "\e166";
|
768 |
-
}
|
769 |
-
.glyphicon-open:before {
|
770 |
-
content: "\e167";
|
771 |
-
}
|
772 |
-
.glyphicon-saved:before {
|
773 |
-
content: "\e168";
|
774 |
-
}
|
775 |
-
.glyphicon-import:before {
|
776 |
-
content: "\e169";
|
777 |
-
}
|
778 |
-
.glyphicon-export:before {
|
779 |
-
content: "\e170";
|
780 |
-
}
|
781 |
-
.glyphicon-send:before {
|
782 |
-
content: "\e171";
|
783 |
-
}
|
784 |
-
.glyphicon-floppy-disk:before {
|
785 |
-
content: "\e172";
|
786 |
-
}
|
787 |
-
.glyphicon-floppy-saved:before {
|
788 |
-
content: "\e173";
|
789 |
-
}
|
790 |
-
.glyphicon-floppy-remove:before {
|
791 |
-
content: "\e174";
|
792 |
-
}
|
793 |
-
.glyphicon-floppy-save:before {
|
794 |
-
content: "\e175";
|
795 |
-
}
|
796 |
-
.glyphicon-floppy-open:before {
|
797 |
-
content: "\e176";
|
798 |
-
}
|
799 |
-
.glyphicon-credit-card:before {
|
800 |
-
content: "\e177";
|
801 |
-
}
|
802 |
-
.glyphicon-transfer:before {
|
803 |
-
content: "\e178";
|
804 |
-
}
|
805 |
-
.glyphicon-cutlery:before {
|
806 |
-
content: "\e179";
|
807 |
-
}
|
808 |
-
.glyphicon-header:before {
|
809 |
-
content: "\e180";
|
810 |
-
}
|
811 |
-
.glyphicon-compressed:before {
|
812 |
-
content: "\e181";
|
813 |
-
}
|
814 |
-
.glyphicon-earphone:before {
|
815 |
-
content: "\e182";
|
816 |
-
}
|
817 |
-
.glyphicon-phone-alt:before {
|
818 |
-
content: "\e183";
|
819 |
-
}
|
820 |
-
.glyphicon-tower:before {
|
821 |
-
content: "\e184";
|
822 |
-
}
|
823 |
-
.glyphicon-stats:before {
|
824 |
-
content: "\e185";
|
825 |
-
}
|
826 |
-
.glyphicon-sd-video:before {
|
827 |
-
content: "\e186";
|
828 |
-
}
|
829 |
-
.glyphicon-hd-video:before {
|
830 |
-
content: "\e187";
|
831 |
-
}
|
832 |
-
.glyphicon-subtitles:before {
|
833 |
-
content: "\e188";
|
834 |
-
}
|
835 |
-
.glyphicon-sound-stereo:before {
|
836 |
-
content: "\e189";
|
837 |
-
}
|
838 |
-
.glyphicon-sound-dolby:before {
|
839 |
-
content: "\e190";
|
840 |
-
}
|
841 |
-
.glyphicon-sound-5-1:before {
|
842 |
-
content: "\e191";
|
843 |
-
}
|
844 |
-
.glyphicon-sound-6-1:before {
|
845 |
-
content: "\e192";
|
846 |
-
}
|
847 |
-
.glyphicon-sound-7-1:before {
|
848 |
-
content: "\e193";
|
849 |
-
}
|
850 |
-
.glyphicon-copyright-mark:before {
|
851 |
-
content: "\e194";
|
852 |
-
}
|
853 |
-
.glyphicon-registration-mark:before {
|
854 |
-
content: "\e195";
|
855 |
-
}
|
856 |
-
.glyphicon-cloud-download:before {
|
857 |
-
content: "\e197";
|
858 |
-
}
|
859 |
-
.glyphicon-cloud-upload:before {
|
860 |
-
content: "\e198";
|
861 |
-
}
|
862 |
-
.glyphicon-tree-conifer:before {
|
863 |
-
content: "\e199";
|
864 |
-
}
|
865 |
-
.glyphicon-tree-deciduous:before {
|
866 |
-
content: "\e200";
|
867 |
-
}
|
868 |
-
.glyphicon-cd:before {
|
869 |
-
content: "\e201";
|
870 |
-
}
|
871 |
-
.glyphicon-save-file:before {
|
872 |
-
content: "\e202";
|
873 |
-
}
|
874 |
-
.glyphicon-open-file:before {
|
875 |
-
content: "\e203";
|
876 |
-
}
|
877 |
-
.glyphicon-level-up:before {
|
878 |
-
content: "\e204";
|
879 |
-
}
|
880 |
-
.glyphicon-copy:before {
|
881 |
-
content: "\e205";
|
882 |
-
}
|
883 |
-
.glyphicon-paste:before {
|
884 |
-
content: "\e206";
|
885 |
-
}
|
886 |
-
.glyphicon-alert:before {
|
887 |
-
content: "\e209";
|
888 |
-
}
|
889 |
-
.glyphicon-equalizer:before {
|
890 |
-
content: "\e210";
|
891 |
-
}
|
892 |
-
.glyphicon-king:before {
|
893 |
-
content: "\e211";
|
894 |
-
}
|
895 |
-
.glyphicon-queen:before {
|
896 |
-
content: "\e212";
|
897 |
-
}
|
898 |
-
.glyphicon-pawn:before {
|
899 |
-
content: "\e213";
|
900 |
-
}
|
901 |
-
.glyphicon-bishop:before {
|
902 |
-
content: "\e214";
|
903 |
-
}
|
904 |
-
.glyphicon-knight:before {
|
905 |
-
content: "\e215";
|
906 |
-
}
|
907 |
-
.glyphicon-baby-formula:before {
|
908 |
-
content: "\e216";
|
909 |
-
}
|
910 |
-
.glyphicon-tent:before {
|
911 |
-
content: "\26fa";
|
912 |
-
}
|
913 |
-
.glyphicon-blackboard:before {
|
914 |
-
content: "\e218";
|
915 |
-
}
|
916 |
-
.glyphicon-bed:before {
|
917 |
-
content: "\e219";
|
918 |
-
}
|
919 |
-
.glyphicon-apple:before {
|
920 |
-
content: "\f8ff";
|
921 |
-
}
|
922 |
-
.glyphicon-erase:before {
|
923 |
-
content: "\e221";
|
924 |
-
}
|
925 |
-
.glyphicon-hourglass:before {
|
926 |
-
content: "\231b";
|
927 |
-
}
|
928 |
-
.glyphicon-lamp:before {
|
929 |
-
content: "\e223";
|
930 |
-
}
|
931 |
-
.glyphicon-duplicate:before {
|
932 |
-
content: "\e224";
|
933 |
-
}
|
934 |
-
.glyphicon-piggy-bank:before {
|
935 |
-
content: "\e225";
|
936 |
-
}
|
937 |
-
.glyphicon-scissors:before {
|
938 |
-
content: "\e226";
|
939 |
-
}
|
940 |
-
.glyphicon-bitcoin:before {
|
941 |
-
content: "\e227";
|
942 |
-
}
|
943 |
-
.glyphicon-btc:before {
|
944 |
-
content: "\e227";
|
945 |
-
}
|
946 |
-
.glyphicon-xbt:before {
|
947 |
-
content: "\e227";
|
948 |
-
}
|
949 |
-
.glyphicon-yen:before {
|
950 |
-
content: "\00a5";
|
951 |
-
}
|
952 |
-
.glyphicon-jpy:before {
|
953 |
-
content: "\00a5";
|
954 |
-
}
|
955 |
-
.glyphicon-ruble:before {
|
956 |
-
content: "\20bd";
|
957 |
-
}
|
958 |
-
.glyphicon-rub:before {
|
959 |
-
content: "\20bd";
|
960 |
-
}
|
961 |
-
.glyphicon-scale:before {
|
962 |
-
content: "\e230";
|
963 |
-
}
|
964 |
-
.glyphicon-ice-lolly:before {
|
965 |
-
content: "\e231";
|
966 |
-
}
|
967 |
-
.glyphicon-ice-lolly-tasted:before {
|
968 |
-
content: "\e232";
|
969 |
-
}
|
970 |
-
.glyphicon-education:before {
|
971 |
-
content: "\e233";
|
972 |
-
}
|
973 |
-
.glyphicon-option-horizontal:before {
|
974 |
-
content: "\e234";
|
975 |
-
}
|
976 |
-
.glyphicon-option-vertical:before {
|
977 |
-
content: "\e235";
|
978 |
-
}
|
979 |
-
.glyphicon-menu-hamburger:before {
|
980 |
-
content: "\e236";
|
981 |
-
}
|
982 |
-
.glyphicon-modal-window:before {
|
983 |
-
content: "\e237";
|
984 |
-
}
|
985 |
-
.glyphicon-oil:before {
|
986 |
-
content: "\e238";
|
987 |
-
}
|
988 |
-
.glyphicon-grain:before {
|
989 |
-
content: "\e239";
|
990 |
-
}
|
991 |
-
.glyphicon-sunglasses:before {
|
992 |
-
content: "\e240";
|
993 |
-
}
|
994 |
-
.glyphicon-text-size:before {
|
995 |
-
content: "\e241";
|
996 |
-
}
|
997 |
-
.glyphicon-text-color:before {
|
998 |
-
content: "\e242";
|
999 |
-
}
|
1000 |
-
.glyphicon-text-background:before {
|
1001 |
-
content: "\e243";
|
1002 |
-
}
|
1003 |
-
.glyphicon-object-align-top:before {
|
1004 |
-
content: "\e244";
|
1005 |
-
}
|
1006 |
-
.glyphicon-object-align-bottom:before {
|
1007 |
-
content: "\e245";
|
1008 |
-
}
|
1009 |
-
.glyphicon-object-align-horizontal:before {
|
1010 |
-
content: "\e246";
|
1011 |
-
}
|
1012 |
-
.glyphicon-object-align-left:before {
|
1013 |
-
content: "\e247";
|
1014 |
-
}
|
1015 |
-
.glyphicon-object-align-vertical:before {
|
1016 |
-
content: "\e248";
|
1017 |
-
}
|
1018 |
-
.glyphicon-object-align-right:before {
|
1019 |
-
content: "\e249";
|
1020 |
-
}
|
1021 |
-
.glyphicon-triangle-right:before {
|
1022 |
-
content: "\e250";
|
1023 |
-
}
|
1024 |
-
.glyphicon-triangle-left:before {
|
1025 |
-
content: "\e251";
|
1026 |
-
}
|
1027 |
-
.glyphicon-triangle-bottom:before {
|
1028 |
-
content: "\e252";
|
1029 |
-
}
|
1030 |
-
.glyphicon-triangle-top:before {
|
1031 |
-
content: "\e253";
|
1032 |
-
}
|
1033 |
-
.glyphicon-console:before {
|
1034 |
-
content: "\e254";
|
1035 |
-
}
|
1036 |
-
.glyphicon-superscript:before {
|
1037 |
-
content: "\e255";
|
1038 |
-
}
|
1039 |
-
.glyphicon-subscript:before {
|
1040 |
-
content: "\e256";
|
1041 |
-
}
|
1042 |
-
.glyphicon-menu-left:before {
|
1043 |
-
content: "\e257";
|
1044 |
-
}
|
1045 |
-
.glyphicon-menu-right:before {
|
1046 |
-
content: "\e258";
|
1047 |
-
}
|
1048 |
-
.glyphicon-menu-down:before {
|
1049 |
-
content: "\e259";
|
1050 |
-
}
|
1051 |
-
.glyphicon-menu-up:before {
|
1052 |
-
content: "\e260";
|
1053 |
-
}
|
1054 |
-
* {
|
1055 |
-
-webkit-box-sizing: border-box;
|
1056 |
-
-moz-box-sizing: border-box;
|
1057 |
-
box-sizing: border-box;
|
1058 |
-
}
|
1059 |
-
*:before,
|
1060 |
-
*:after {
|
1061 |
-
-webkit-box-sizing: border-box;
|
1062 |
-
-moz-box-sizing: border-box;
|
1063 |
-
box-sizing: border-box;
|
1064 |
-
}
|
1065 |
-
/*html {
|
1066 |
-
font-size: 10px;
|
1067 |
-
|
1068 |
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
1069 |
-
}
|
1070 |
-
body {
|
1071 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1072 |
-
font-size: 14px;
|
1073 |
-
line-height: 1.42857143;
|
1074 |
-
color: #333;
|
1075 |
-
background-color: #fff;
|
1076 |
-
}*/
|
1077 |
-
input,
|
1078 |
-
button,
|
1079 |
-
select,
|
1080 |
-
textarea {
|
1081 |
-
font-family: inherit;
|
1082 |
-
font-size: inherit;
|
1083 |
-
line-height: inherit;
|
1084 |
-
}
|
1085 |
-
a {
|
1086 |
-
color: #337ab7;
|
1087 |
-
text-decoration: none;
|
1088 |
-
}
|
1089 |
-
a:hover,
|
1090 |
-
a:focus {
|
1091 |
-
color: #23527c;
|
1092 |
-
text-decoration: underline;
|
1093 |
-
}
|
1094 |
-
a:focus {
|
1095 |
-
outline: 5px auto -webkit-focus-ring-color;
|
1096 |
-
outline-offset: -2px;
|
1097 |
-
}
|
1098 |
-
figure {
|
1099 |
-
margin: 0;
|
1100 |
-
}
|
1101 |
-
img {
|
1102 |
-
vertical-align: middle;
|
1103 |
-
}
|
1104 |
-
.img-responsive,
|
1105 |
-
.thumbnail > img,
|
1106 |
-
.thumbnail a > img,
|
1107 |
-
.carousel-inner > .item > img,
|
1108 |
-
.carousel-inner > .item > a > img {
|
1109 |
-
display: block;
|
1110 |
-
max-width: 100%;
|
1111 |
-
height: auto;
|
1112 |
-
}
|
1113 |
-
.img-rounded {
|
1114 |
-
border-radius: 6px;
|
1115 |
-
}
|
1116 |
-
.img-thumbnail {
|
1117 |
-
display: inline-block;
|
1118 |
-
max-width: 100%;
|
1119 |
-
height: auto;
|
1120 |
-
padding: 4px;
|
1121 |
-
line-height: 1.42857143;
|
1122 |
-
background-color: #fff;
|
1123 |
-
border: 1px solid #ddd;
|
1124 |
-
border-radius: 4px;
|
1125 |
-
-webkit-transition: all .2s ease-in-out;
|
1126 |
-
-o-transition: all .2s ease-in-out;
|
1127 |
-
transition: all .2s ease-in-out;
|
1128 |
-
}
|
1129 |
-
.img-circle {
|
1130 |
-
border-radius: 50%;
|
1131 |
-
}
|
1132 |
-
hr {
|
1133 |
-
margin-top: 15px;
|
1134 |
-
margin-bottom: 15px;
|
1135 |
-
border: 0;
|
1136 |
-
border-top: 1px solid #eee;
|
1137 |
-
}
|
1138 |
-
.sr-only {
|
1139 |
-
position: absolute;
|
1140 |
-
width: 1px;
|
1141 |
-
height: 1px;
|
1142 |
-
padding: 0;
|
1143 |
-
margin: -1px;
|
1144 |
-
overflow: hidden;
|
1145 |
-
clip: rect(0, 0, 0, 0);
|
1146 |
-
border: 0;
|
1147 |
-
}
|
1148 |
-
.sr-only-focusable:active,
|
1149 |
-
.sr-only-focusable:focus {
|
1150 |
-
position: static;
|
1151 |
-
width: auto;
|
1152 |
-
height: auto;
|
1153 |
-
margin: 0;
|
1154 |
-
overflow: visible;
|
1155 |
-
clip: auto;
|
1156 |
-
}
|
1157 |
-
[role="button"] {
|
1158 |
-
cursor: pointer;
|
1159 |
-
}
|
1160 |
-
h1,
|
1161 |
-
h2,
|
1162 |
-
h3,
|
1163 |
-
h4,
|
1164 |
-
h5,
|
1165 |
-
h6,
|
1166 |
-
.h1,
|
1167 |
-
.h2,
|
1168 |
-
.h3,
|
1169 |
-
.h4,
|
1170 |
-
.h5,
|
1171 |
-
.h6 {
|
1172 |
-
font-family: inherit;
|
1173 |
-
font-weight: 500;
|
1174 |
-
line-height: 1.1;
|
1175 |
-
color: inherit;
|
1176 |
-
}
|
1177 |
-
h1 small,
|
1178 |
-
h2 small,
|
1179 |
-
h3 small,
|
1180 |
-
h4 small,
|
1181 |
-
h5 small,
|
1182 |
-
h6 small,
|
1183 |
-
.h1 small,
|
1184 |
-
.h2 small,
|
1185 |
-
.h3 small,
|
1186 |
-
.h4 small,
|
1187 |
-
.h5 small,
|
1188 |
-
.h6 small,
|
1189 |
-
h1 .small,
|
1190 |
-
h2 .small,
|
1191 |
-
h3 .small,
|
1192 |
-
h4 .small,
|
1193 |
-
h5 .small,
|
1194 |
-
h6 .small,
|
1195 |
-
.h1 .small,
|
1196 |
-
.h2 .small,
|
1197 |
-
.h3 .small,
|
1198 |
-
.h4 .small,
|
1199 |
-
.h5 .small,
|
1200 |
-
.h6 .small {
|
1201 |
-
font-weight: normal;
|
1202 |
-
line-height: 1;
|
1203 |
-
color: #777;
|
1204 |
-
}
|
1205 |
-
h1,
|
1206 |
-
.h1,
|
1207 |
-
h2,
|
1208 |
-
.h2,
|
1209 |
-
h3,
|
1210 |
-
.h3 {
|
1211 |
-
margin-top: 20px;
|
1212 |
-
margin-bottom: 10px;
|
1213 |
-
}
|
1214 |
-
h1 small,
|
1215 |
-
.h1 small,
|
1216 |
-
h2 small,
|
1217 |
-
.h2 small,
|
1218 |
-
h3 small,
|
1219 |
-
.h3 small,
|
1220 |
-
h1 .small,
|
1221 |
-
.h1 .small,
|
1222 |
-
h2 .small,
|
1223 |
-
.h2 .small,
|
1224 |
-
h3 .small,
|
1225 |
-
.h3 .small {
|
1226 |
-
font-size: 65%;
|
1227 |
-
}
|
1228 |
-
h4,
|
1229 |
-
.h4,
|
1230 |
-
h5,
|
1231 |
-
.h5,
|
1232 |
-
h6,
|
1233 |
-
.h6 {
|
1234 |
-
margin-top: 10px;
|
1235 |
-
margin-bottom: 10px;
|
1236 |
-
}
|
1237 |
-
h4 small,
|
1238 |
-
.h4 small,
|
1239 |
-
h5 small,
|
1240 |
-
.h5 small,
|
1241 |
-
h6 small,
|
1242 |
-
.h6 small,
|
1243 |
-
h4 .small,
|
1244 |
-
.h4 .small,
|
1245 |
-
h5 .small,
|
1246 |
-
.h5 .small,
|
1247 |
-
h6 .small,
|
1248 |
-
.h6 .small {
|
1249 |
-
font-size: 75%;
|
1250 |
-
}
|
1251 |
-
h1,
|
1252 |
-
.h1 {
|
1253 |
-
font-size: 28px;
|
1254 |
-
}
|
1255 |
-
h2,
|
1256 |
-
.h2 {
|
1257 |
-
font-size: 22px;
|
1258 |
-
}
|
1259 |
-
h3,
|
1260 |
-
.h3 {
|
1261 |
-
font-size: 20px;
|
1262 |
-
}
|
1263 |
-
h4,
|
1264 |
-
.h4 {
|
1265 |
-
font-size: 18px;
|
1266 |
-
}
|
1267 |
-
h5,
|
1268 |
-
.h5 {
|
1269 |
-
font-size: 14px;
|
1270 |
-
}
|
1271 |
-
h6,
|
1272 |
-
.h6 {
|
1273 |
-
font-size: 12px;
|
1274 |
-
}
|
1275 |
-
p {
|
1276 |
-
margin: 0 0 10px;
|
1277 |
-
}
|
1278 |
-
.lead {
|
1279 |
-
margin-bottom: 20px;
|
1280 |
-
font-size: 16px;
|
1281 |
-
font-weight: 300;
|
1282 |
-
line-height: 1.4;
|
1283 |
-
}
|
1284 |
-
@media (min-width: 768px) {
|
1285 |
-
.lead {
|
1286 |
-
font-size: 21px;
|
1287 |
-
}
|
1288 |
-
}
|
1289 |
-
small,
|
1290 |
-
.small {
|
1291 |
-
font-size: 85%;
|
1292 |
-
}
|
1293 |
-
mark,
|
1294 |
-
.mark {
|
1295 |
-
padding: .2em;
|
1296 |
-
background-color: #fcf8e3;
|
1297 |
-
}
|
1298 |
-
.text-left {
|
1299 |
-
text-align: left;
|
1300 |
-
}
|
1301 |
-
.text-right {
|
1302 |
-
text-align: right;
|
1303 |
-
}
|
1304 |
-
.text-center {
|
1305 |
-
text-align: center;
|
1306 |
-
}
|
1307 |
-
.text-justify {
|
1308 |
-
text-align: justify;
|
1309 |
-
}
|
1310 |
-
.text-nowrap {
|
1311 |
-
white-space: nowrap;
|
1312 |
-
}
|
1313 |
-
.text-lowercase {
|
1314 |
-
text-transform: lowercase;
|
1315 |
-
}
|
1316 |
-
.text-uppercase {
|
1317 |
-
text-transform: uppercase;
|
1318 |
-
}
|
1319 |
-
.text-capitalize {
|
1320 |
-
text-transform: capitalize;
|
1321 |
-
}
|
1322 |
-
.text-muted {
|
1323 |
-
color: #777;
|
1324 |
-
}
|
1325 |
-
.text-primary {
|
1326 |
-
color: #337ab7;
|
1327 |
-
}
|
1328 |
-
a.text-primary:hover,
|
1329 |
-
a.text-primary:focus {
|
1330 |
-
color: #286090;
|
1331 |
-
}
|
1332 |
-
.text-success {
|
1333 |
-
color: #3c763d;
|
1334 |
-
}
|
1335 |
-
a.text-success:hover,
|
1336 |
-
a.text-success:focus {
|
1337 |
-
color: #2b542c;
|
1338 |
-
}
|
1339 |
-
.text-info {
|
1340 |
-
color: #31708f;
|
1341 |
-
}
|
1342 |
-
a.text-info:hover,
|
1343 |
-
a.text-info:focus {
|
1344 |
-
color: #245269;
|
1345 |
-
}
|
1346 |
-
.text-warning {
|
1347 |
-
color: #8a6d3b;
|
1348 |
-
}
|
1349 |
-
a.text-warning:hover,
|
1350 |
-
a.text-warning:focus {
|
1351 |
-
color: #66512c;
|
1352 |
-
}
|
1353 |
-
.text-danger {
|
1354 |
-
color: #a94442;
|
1355 |
-
}
|
1356 |
-
a.text-danger:hover,
|
1357 |
-
a.text-danger:focus {
|
1358 |
-
color: #843534;
|
1359 |
-
}
|
1360 |
-
.bg-primary {
|
1361 |
-
color: #fff;
|
1362 |
-
background-color: #337ab7;
|
1363 |
-
}
|
1364 |
-
a.bg-primary:hover,
|
1365 |
-
a.bg-primary:focus {
|
1366 |
-
background-color: #286090;
|
1367 |
-
}
|
1368 |
-
.bg-success {
|
1369 |
-
background-color: #dff0d8;
|
1370 |
-
}
|
1371 |
-
a.bg-success:hover,
|
1372 |
-
a.bg-success:focus {
|
1373 |
-
background-color: #c1e2b3;
|
1374 |
-
}
|
1375 |
-
.bg-info {
|
1376 |
-
background-color: #d9edf7;
|
1377 |
-
}
|
1378 |
-
a.bg-info:hover,
|
1379 |
-
a.bg-info:focus {
|
1380 |
-
background-color: #afd9ee;
|
1381 |
-
}
|
1382 |
-
.bg-warning {
|
1383 |
-
background-color: #fcf8e3;
|
1384 |
-
}
|
1385 |
-
a.bg-warning:hover,
|
1386 |
-
a.bg-warning:focus {
|
1387 |
-
background-color: #f7ecb5;
|
1388 |
-
}
|
1389 |
-
.bg-danger {
|
1390 |
-
background-color: #f2dede;
|
1391 |
-
}
|
1392 |
-
a.bg-danger:hover,
|
1393 |
-
a.bg-danger:focus {
|
1394 |
-
background-color: #e4b9b9;
|
1395 |
-
}
|
1396 |
-
.page-header {
|
1397 |
-
padding-bottom: 9px;
|
1398 |
-
margin: 40px 0 20px;
|
1399 |
-
border-bottom: 1px solid #eee;
|
1400 |
-
}
|
1401 |
-
ul,
|
1402 |
-
ol {
|
1403 |
-
margin-top: 0;
|
1404 |
-
margin-bottom: 10px;
|
1405 |
-
}
|
1406 |
-
ul ul,
|
1407 |
-
ol ul,
|
1408 |
-
ul ol,
|
1409 |
-
ol ol {
|
1410 |
-
margin-bottom: 0;
|
1411 |
-
}
|
1412 |
-
.list-unstyled {
|
1413 |
-
padding-left: 0;
|
1414 |
-
list-style: none;
|
1415 |
-
}
|
1416 |
-
.list-inline {
|
1417 |
-
padding-left: 0;
|
1418 |
-
margin-left: -5px;
|
1419 |
-
list-style: none;
|
1420 |
-
}
|
1421 |
-
.list-inline > li {
|
1422 |
-
display: inline-block;
|
1423 |
-
padding-right: 5px;
|
1424 |
-
padding-left: 5px;
|
1425 |
-
}
|
1426 |
-
dl {
|
1427 |
-
margin-top: 0;
|
1428 |
-
margin-bottom: 20px;
|
1429 |
-
}
|
1430 |
-
dt,
|
1431 |
-
dd {
|
1432 |
-
line-height: 1.42857143;
|
1433 |
-
}
|
1434 |
-
dt {
|
1435 |
-
font-weight: bold;
|
1436 |
-
}
|
1437 |
-
dd {
|
1438 |
-
margin-left: 0;
|
1439 |
-
}
|
1440 |
-
@media (min-width: 768px) {
|
1441 |
-
.dl-horizontal dt {
|
1442 |
-
float: left;
|
1443 |
-
width: 160px;
|
1444 |
-
overflow: hidden;
|
1445 |
-
clear: left;
|
1446 |
-
text-align: right;
|
1447 |
-
text-overflow: ellipsis;
|
1448 |
-
white-space: nowrap;
|
1449 |
-
}
|
1450 |
-
.dl-horizontal dd {
|
1451 |
-
margin-left: 180px;
|
1452 |
-
}
|
1453 |
-
}
|
1454 |
-
abbr[title],
|
1455 |
-
abbr[data-original-title] {
|
1456 |
-
cursor: help;
|
1457 |
-
border-bottom: 1px dotted #777;
|
1458 |
-
}
|
1459 |
-
.initialism {
|
1460 |
-
font-size: 90%;
|
1461 |
-
text-transform: uppercase;
|
1462 |
-
}
|
1463 |
-
blockquote {
|
1464 |
-
padding: 10px 20px;
|
1465 |
-
margin: 0 0 20px;
|
1466 |
-
font-size: 17.5px;
|
1467 |
-
border-left: 5px solid #eee;
|
1468 |
-
}
|
1469 |
-
blockquote p:last-child,
|
1470 |
-
blockquote ul:last-child,
|
1471 |
-
blockquote ol:last-child {
|
1472 |
-
margin-bottom: 0;
|
1473 |
-
}
|
1474 |
-
blockquote footer,
|
1475 |
-
blockquote small,
|
1476 |
-
blockquote .small {
|
1477 |
-
display: block;
|
1478 |
-
font-size: 80%;
|
1479 |
-
line-height: 1.42857143;
|
1480 |
-
color: #777;
|
1481 |
-
}
|
1482 |
-
blockquote footer:before,
|
1483 |
-
blockquote small:before,
|
1484 |
-
blockquote .small:before {
|
1485 |
-
content: '\2014 \00A0';
|
1486 |
-
}
|
1487 |
-
.blockquote-reverse,
|
1488 |
-
blockquote.pull-right {
|
1489 |
-
padding-right: 15px;
|
1490 |
-
padding-left: 0;
|
1491 |
-
text-align: right;
|
1492 |
-
border-right: 5px solid #eee;
|
1493 |
-
border-left: 0;
|
1494 |
-
}
|
1495 |
-
.blockquote-reverse footer:before,
|
1496 |
-
blockquote.pull-right footer:before,
|
1497 |
-
.blockquote-reverse small:before,
|
1498 |
-
blockquote.pull-right small:before,
|
1499 |
-
.blockquote-reverse .small:before,
|
1500 |
-
blockquote.pull-right .small:before {
|
1501 |
-
content: '';
|
1502 |
-
}
|
1503 |
-
.blockquote-reverse footer:after,
|
1504 |
-
blockquote.pull-right footer:after,
|
1505 |
-
.blockquote-reverse small:after,
|
1506 |
-
blockquote.pull-right small:after,
|
1507 |
-
.blockquote-reverse .small:after,
|
1508 |
-
blockquote.pull-right .small:after {
|
1509 |
-
content: '\00A0 \2014';
|
1510 |
-
}
|
1511 |
-
address {
|
1512 |
-
margin-bottom: 20px;
|
1513 |
-
font-style: normal;
|
1514 |
-
line-height: 1.42857143;
|
1515 |
-
}
|
1516 |
-
code,
|
1517 |
-
kbd,
|
1518 |
-
pre,
|
1519 |
-
samp {
|
1520 |
-
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
1521 |
-
}
|
1522 |
-
code {
|
1523 |
-
padding: 2px 4px;
|
1524 |
-
font-size: 90%;
|
1525 |
-
color: #000;
|
1526 |
-
background-color: #EEEEEE;
|
1527 |
-
border-radius: 4px;
|
1528 |
-
}
|
1529 |
-
kbd {
|
1530 |
-
padding: 2px 4px;
|
1531 |
-
font-size: 90%;
|
1532 |
-
color: #fff;
|
1533 |
-
background-color: #333;
|
1534 |
-
border-radius: 3px;
|
1535 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1536 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1537 |
-
}
|
1538 |
-
kbd kbd {
|
1539 |
-
padding: 0;
|
1540 |
-
font-size: 100%;
|
1541 |
-
font-weight: bold;
|
1542 |
-
-webkit-box-shadow: none;
|
1543 |
-
box-shadow: none;
|
1544 |
-
}
|
1545 |
-
pre {
|
1546 |
-
display: block;
|
1547 |
-
padding: 9.5px;
|
1548 |
-
margin: 0 0 10px;
|
1549 |
-
font-size: 13px;
|
1550 |
-
line-height: 1.42857143;
|
1551 |
-
color: #333;
|
1552 |
-
word-break: break-all;
|
1553 |
-
word-wrap: break-word;
|
1554 |
-
background-color: #f5f5f5;
|
1555 |
-
border: 1px solid #ccc;
|
1556 |
-
border-radius: 4px;
|
1557 |
-
}
|
1558 |
-
pre code {
|
1559 |
-
padding: 0;
|
1560 |
-
font-size: inherit;
|
1561 |
-
color: inherit;
|
1562 |
-
white-space: pre-wrap;
|
1563 |
-
background-color: transparent;
|
1564 |
-
border-radius: 0;
|
1565 |
-
}
|
1566 |
-
.pre-scrollable {
|
1567 |
-
max-height: 340px;
|
1568 |
-
overflow-y: scroll;
|
1569 |
-
}
|
1570 |
-
.container {
|
1571 |
-
padding-right: 15px;
|
1572 |
-
padding-left: 15px;
|
1573 |
-
margin-right: auto;
|
1574 |
-
margin-left: auto;
|
1575 |
-
}
|
1576 |
-
@media (min-width: 768px) {
|
1577 |
-
.container {
|
1578 |
-
width: 750px;
|
1579 |
-
}
|
1580 |
-
}
|
1581 |
-
@media (min-width: 992px) {
|
1582 |
-
.container {
|
1583 |
-
width: 970px;
|
1584 |
-
}
|
1585 |
-
}
|
1586 |
-
@media (min-width: 1200px) {
|
1587 |
-
.container {
|
1588 |
-
width: 1170px;
|
1589 |
-
}
|
1590 |
-
}
|
1591 |
-
.container-fluid {
|
1592 |
-
padding-right: 15px;
|
1593 |
-
padding-left: 15px;
|
1594 |
-
margin-right: auto;
|
1595 |
-
margin-left: auto;
|
1596 |
-
}
|
1597 |
-
.row {
|
1598 |
-
margin-right: -15px;
|
1599 |
-
margin-left: -15px;
|
1600 |
-
}
|
1601 |
-
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
1602 |
-
position: relative;
|
1603 |
-
min-height: 1px;
|
1604 |
-
padding-right: 15px;
|
1605 |
-
padding-left: 15px;
|
1606 |
-
}
|
1607 |
-
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
1608 |
-
float: left;
|
1609 |
-
}
|
1610 |
-
.col-xs-12 {
|
1611 |
-
width: 100%;
|
1612 |
-
}
|
1613 |
-
.col-xs-11 {
|
1614 |
-
width: 91.66666667%;
|
1615 |
-
}
|
1616 |
-
.col-xs-10 {
|
1617 |
-
width: 83.33333333%;
|
1618 |
-
}
|
1619 |
-
.col-xs-9 {
|
1620 |
-
width: 75%;
|
1621 |
-
}
|
1622 |
-
.col-xs-8 {
|
1623 |
-
width: 66.66666667%;
|
1624 |
-
}
|
1625 |
-
.col-xs-7 {
|
1626 |
-
width: 58.33333333%;
|
1627 |
-
}
|
1628 |
-
.col-xs-6 {
|
1629 |
-
width: 50%;
|
1630 |
-
}
|
1631 |
-
.col-xs-5 {
|
1632 |
-
width: 41.66666667%;
|
1633 |
-
}
|
1634 |
-
.col-xs-4 {
|
1635 |
-
width: 33.33333333%;
|
1636 |
-
}
|
1637 |
-
.col-xs-3 {
|
1638 |
-
width: 25%;
|
1639 |
-
}
|
1640 |
-
.col-xs-2 {
|
1641 |
-
width: 16.66666667%;
|
1642 |
-
}
|
1643 |
-
.col-xs-1 {
|
1644 |
-
width: 8.33333333%;
|
1645 |
-
}
|
1646 |
-
.col-xs-pull-12 {
|
1647 |
-
right: 100%;
|
1648 |
-
}
|
1649 |
-
.col-xs-pull-11 {
|
1650 |
-
right: 91.66666667%;
|
1651 |
-
}
|
1652 |
-
.col-xs-pull-10 {
|
1653 |
-
right: 83.33333333%;
|
1654 |
-
}
|
1655 |
-
.col-xs-pull-9 {
|
1656 |
-
right: 75%;
|
1657 |
-
}
|
1658 |
-
.col-xs-pull-8 {
|
1659 |
-
right: 66.66666667%;
|
1660 |
-
}
|
1661 |
-
.col-xs-pull-7 {
|
1662 |
-
right: 58.33333333%;
|
1663 |
-
}
|
1664 |
-
.col-xs-pull-6 {
|
1665 |
-
right: 50%;
|
1666 |
-
}
|
1667 |
-
.col-xs-pull-5 {
|
1668 |
-
right: 41.66666667%;
|
1669 |
-
}
|
1670 |
-
.col-xs-pull-4 {
|
1671 |
-
right: 33.33333333%;
|
1672 |
-
}
|
1673 |
-
.col-xs-pull-3 {
|
1674 |
-
right: 25%;
|
1675 |
-
}
|
1676 |
-
.col-xs-pull-2 {
|
1677 |
-
right: 16.66666667%;
|
1678 |
-
}
|
1679 |
-
.col-xs-pull-1 {
|
1680 |
-
right: 8.33333333%;
|
1681 |
-
}
|
1682 |
-
.col-xs-pull-0 {
|
1683 |
-
right: auto;
|
1684 |
-
}
|
1685 |
-
.col-xs-push-12 {
|
1686 |
-
left: 100%;
|
1687 |
-
}
|
1688 |
-
.col-xs-push-11 {
|
1689 |
-
left: 91.66666667%;
|
1690 |
-
}
|
1691 |
-
.col-xs-push-10 {
|
1692 |
-
left: 83.33333333%;
|
1693 |
-
}
|
1694 |
-
.col-xs-push-9 {
|
1695 |
-
left: 75%;
|
1696 |
-
}
|
1697 |
-
.col-xs-push-8 {
|
1698 |
-
left: 66.66666667%;
|
1699 |
-
}
|
1700 |
-
.col-xs-push-7 {
|
1701 |
-
left: 58.33333333%;
|
1702 |
-
}
|
1703 |
-
.col-xs-push-6 {
|
1704 |
-
left: 50%;
|
1705 |
-
}
|
1706 |
-
.col-xs-push-5 {
|
1707 |
-
left: 41.66666667%;
|
1708 |
-
}
|
1709 |
-
.col-xs-push-4 {
|
1710 |
-
left: 33.33333333%;
|
1711 |
-
}
|
1712 |
-
.col-xs-push-3 {
|
1713 |
-
left: 25%;
|
1714 |
-
}
|
1715 |
-
.col-xs-push-2 {
|
1716 |
-
left: 16.66666667%;
|
1717 |
-
}
|
1718 |
-
.col-xs-push-1 {
|
1719 |
-
left: 8.33333333%;
|
1720 |
-
}
|
1721 |
-
.col-xs-push-0 {
|
1722 |
-
left: auto;
|
1723 |
-
}
|
1724 |
-
.col-xs-offset-12 {
|
1725 |
-
margin-left: 100%;
|
1726 |
-
}
|
1727 |
-
.col-xs-offset-11 {
|
1728 |
-
margin-left: 91.66666667%;
|
1729 |
-
}
|
1730 |
-
.col-xs-offset-10 {
|
1731 |
-
margin-left: 83.33333333%;
|
1732 |
-
}
|
1733 |
-
.col-xs-offset-9 {
|
1734 |
-
margin-left: 75%;
|
1735 |
-
}
|
1736 |
-
.col-xs-offset-8 {
|
1737 |
-
margin-left: 66.66666667%;
|
1738 |
-
}
|
1739 |
-
.col-xs-offset-7 {
|
1740 |
-
margin-left: 58.33333333%;
|
1741 |
-
}
|
1742 |
-
.col-xs-offset-6 {
|
1743 |
-
margin-left: 50%;
|
1744 |
-
}
|
1745 |
-
.col-xs-offset-5 {
|
1746 |
-
margin-left: 41.66666667%;
|
1747 |
-
}
|
1748 |
-
.col-xs-offset-4 {
|
1749 |
-
margin-left: 33.33333333%;
|
1750 |
-
}
|
1751 |
-
.col-xs-offset-3 {
|
1752 |
-
margin-left: 25%;
|
1753 |
-
}
|
1754 |
-
.col-xs-offset-2 {
|
1755 |
-
margin-left: 16.66666667%;
|
1756 |
-
}
|
1757 |
-
.col-xs-offset-1 {
|
1758 |
-
margin-left: 8.33333333%;
|
1759 |
-
}
|
1760 |
-
.col-xs-offset-0 {
|
1761 |
-
margin-left: 0;
|
1762 |
-
}
|
1763 |
-
@media (min-width: 768px) {
|
1764 |
-
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
1765 |
-
float: left;
|
1766 |
-
}
|
1767 |
-
.col-sm-12 {
|
1768 |
-
width: 100%;
|
1769 |
-
}
|
1770 |
-
.col-sm-11 {
|
1771 |
-
width: 91.66666667%;
|
1772 |
-
}
|
1773 |
-
.col-sm-10 {
|
1774 |
-
width: 83.33333333%;
|
1775 |
-
}
|
1776 |
-
.col-sm-9 {
|
1777 |
-
width: 75%;
|
1778 |
-
}
|
1779 |
-
.col-sm-8 {
|
1780 |
-
width: 66.66666667%;
|
1781 |
-
}
|
1782 |
-
.col-sm-7 {
|
1783 |
-
width: 58.33333333%;
|
1784 |
-
}
|
1785 |
-
.col-sm-6 {
|
1786 |
-
width: 50%;
|
1787 |
-
}
|
1788 |
-
.col-sm-5 {
|
1789 |
-
width: 41.66666667%;
|
1790 |
-
}
|
1791 |
-
.col-sm-4 {
|
1792 |
-
width: 33.33333333%;
|
1793 |
-
}
|
1794 |
-
.col-sm-3 {
|
1795 |
-
width: 25%;
|
1796 |
-
}
|
1797 |
-
.col-sm-2 {
|
1798 |
-
width: 16.66666667%;
|
1799 |
-
}
|
1800 |
-
.col-sm-1 {
|
1801 |
-
width: 8.33333333%;
|
1802 |
-
}
|
1803 |
-
.col-sm-pull-12 {
|
1804 |
-
right: 100%;
|
1805 |
-
}
|
1806 |
-
.col-sm-pull-11 {
|
1807 |
-
right: 91.66666667%;
|
1808 |
-
}
|
1809 |
-
.col-sm-pull-10 {
|
1810 |
-
right: 83.33333333%;
|
1811 |
-
}
|
1812 |
-
.col-sm-pull-9 {
|
1813 |
-
right: 75%;
|
1814 |
-
}
|
1815 |
-
.col-sm-pull-8 {
|
1816 |
-
right: 66.66666667%;
|
1817 |
-
}
|
1818 |
-
.col-sm-pull-7 {
|
1819 |
-
right: 58.33333333%;
|
1820 |
-
}
|
1821 |
-
.col-sm-pull-6 {
|
1822 |
-
right: 50%;
|
1823 |
-
}
|
1824 |
-
.col-sm-pull-5 {
|
1825 |
-
right: 41.66666667%;
|
1826 |
-
}
|
1827 |
-
.col-sm-pull-4 {
|
1828 |
-
right: 33.33333333%;
|
1829 |
-
}
|
1830 |
-
.col-sm-pull-3 {
|
1831 |
-
right: 25%;
|
1832 |
-
}
|
1833 |
-
.col-sm-pull-2 {
|
1834 |
-
right: 16.66666667%;
|
1835 |
-
}
|
1836 |
-
.col-sm-pull-1 {
|
1837 |
-
right: 8.33333333%;
|
1838 |
-
}
|
1839 |
-
.col-sm-pull-0 {
|
1840 |
-
right: auto;
|
1841 |
-
}
|
1842 |
-
.col-sm-push-12 {
|
1843 |
-
left: 100%;
|
1844 |
-
}
|
1845 |
-
.col-sm-push-11 {
|
1846 |
-
left: 91.66666667%;
|
1847 |
-
}
|
1848 |
-
.col-sm-push-10 {
|
1849 |
-
left: 83.33333333%;
|
1850 |
-
}
|
1851 |
-
.col-sm-push-9 {
|
1852 |
-
left: 75%;
|
1853 |
-
}
|
1854 |
-
.col-sm-push-8 {
|
1855 |
-
left: 66.66666667%;
|
1856 |
-
}
|
1857 |
-
.col-sm-push-7 {
|
1858 |
-
left: 58.33333333%;
|
1859 |
-
}
|
1860 |
-
.col-sm-push-6 {
|
1861 |
-
left: 50%;
|
1862 |
-
}
|
1863 |
-
.col-sm-push-5 {
|
1864 |
-
left: 41.66666667%;
|
1865 |
-
}
|
1866 |
-
.col-sm-push-4 {
|
1867 |
-
left: 33.33333333%;
|
1868 |
-
}
|
1869 |
-
.col-sm-push-3 {
|
1870 |
-
left: 25%;
|
1871 |
-
}
|
1872 |
-
.col-sm-push-2 {
|
1873 |
-
left: 16.66666667%;
|
1874 |
-
}
|
1875 |
-
.col-sm-push-1 {
|
1876 |
-
left: 8.33333333%;
|
1877 |
-
}
|
1878 |
-
.col-sm-push-0 {
|
1879 |
-
left: auto;
|
1880 |
-
}
|
1881 |
-
.col-sm-offset-12 {
|
1882 |
-
margin-left: 100%;
|
1883 |
-
}
|
1884 |
-
.col-sm-offset-11 {
|
1885 |
-
margin-left: 91.66666667%;
|
1886 |
-
}
|
1887 |
-
.col-sm-offset-10 {
|
1888 |
-
margin-left: 83.33333333%;
|
1889 |
-
}
|
1890 |
-
.col-sm-offset-9 {
|
1891 |
-
margin-left: 75%;
|
1892 |
-
}
|
1893 |
-
.col-sm-offset-8 {
|
1894 |
-
margin-left: 66.66666667%;
|
1895 |
-
}
|
1896 |
-
.col-sm-offset-7 {
|
1897 |
-
margin-left: 58.33333333%;
|
1898 |
-
}
|
1899 |
-
.col-sm-offset-6 {
|
1900 |
-
margin-left: 50%;
|
1901 |
-
}
|
1902 |
-
.col-sm-offset-5 {
|
1903 |
-
margin-left: 41.66666667%;
|
1904 |
-
}
|
1905 |
-
.col-sm-offset-4 {
|
1906 |
-
margin-left: 33.33333333%;
|
1907 |
-
}
|
1908 |
-
.col-sm-offset-3 {
|
1909 |
-
margin-left: 25%;
|
1910 |
-
}
|
1911 |
-
.col-sm-offset-2 {
|
1912 |
-
margin-left: 16.66666667%;
|
1913 |
-
}
|
1914 |
-
.col-sm-offset-1 {
|
1915 |
-
margin-left: 8.33333333%;
|
1916 |
-
}
|
1917 |
-
.col-sm-offset-0 {
|
1918 |
-
margin-left: 0;
|
1919 |
-
}
|
1920 |
-
}
|
1921 |
-
@media (min-width: 992px) {
|
1922 |
-
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
1923 |
-
float: left;
|
1924 |
-
}
|
1925 |
-
.col-md-12 {
|
1926 |
-
width: 100%;
|
1927 |
-
}
|
1928 |
-
.col-md-11 {
|
1929 |
-
width: 91.66666667%;
|
1930 |
-
}
|
1931 |
-
.col-md-10 {
|
1932 |
-
width: 83.33333333%;
|
1933 |
-
}
|
1934 |
-
.col-md-9 {
|
1935 |
-
width: 75%;
|
1936 |
-
}
|
1937 |
-
.col-md-8 {
|
1938 |
-
width: 66.66666667%;
|
1939 |
-
}
|
1940 |
-
.col-md-7 {
|
1941 |
-
width: 58.33333333%;
|
1942 |
-
}
|
1943 |
-
.col-md-6 {
|
1944 |
-
width: 50%;
|
1945 |
-
}
|
1946 |
-
.col-md-5 {
|
1947 |
-
width: 41.66666667%;
|
1948 |
-
}
|
1949 |
-
.col-md-4 {
|
1950 |
-
width: 33.33333333%;
|
1951 |
-
}
|
1952 |
-
.col-md-3 {
|
1953 |
-
width: 25%;
|
1954 |
-
}
|
1955 |
-
.col-md-2 {
|
1956 |
-
width: 16.66666667%;
|
1957 |
-
}
|
1958 |
-
.col-md-1 {
|
1959 |
-
width: 8.33333333%;
|
1960 |
-
}
|
1961 |
-
.col-md-pull-12 {
|
1962 |
-
right: 100%;
|
1963 |
-
}
|
1964 |
-
.col-md-pull-11 {
|
1965 |
-
right: 91.66666667%;
|
1966 |
-
}
|
1967 |
-
.col-md-pull-10 {
|
1968 |
-
right: 83.33333333%;
|
1969 |
-
}
|
1970 |
-
.col-md-pull-9 {
|
1971 |
-
right: 75%;
|
1972 |
-
}
|
1973 |
-
.col-md-pull-8 {
|
1974 |
-
right: 66.66666667%;
|
1975 |
-
}
|
1976 |
-
.col-md-pull-7 {
|
1977 |
-
right: 58.33333333%;
|
1978 |
-
}
|
1979 |
-
.col-md-pull-6 {
|
1980 |
-
right: 50%;
|
1981 |
-
}
|
1982 |
-
.col-md-pull-5 {
|
1983 |
-
right: 41.66666667%;
|
1984 |
-
}
|
1985 |
-
.col-md-pull-4 {
|
1986 |
-
right: 33.33333333%;
|
1987 |
-
}
|
1988 |
-
.col-md-pull-3 {
|
1989 |
-
right: 25%;
|
1990 |
-
}
|
1991 |
-
.col-md-pull-2 {
|
1992 |
-
right: 16.66666667%;
|
1993 |
-
}
|
1994 |
-
.col-md-pull-1 {
|
1995 |
-
right: 8.33333333%;
|
1996 |
-
}
|
1997 |
-
.col-md-pull-0 {
|
1998 |
-
right: auto;
|
1999 |
-
}
|
2000 |
-
.col-md-push-12 {
|
2001 |
-
left: 100%;
|
2002 |
-
}
|
2003 |
-
.col-md-push-11 {
|
2004 |
-
left: 91.66666667%;
|
2005 |
-
}
|
2006 |
-
.col-md-push-10 {
|
2007 |
-
left: 83.33333333%;
|
2008 |
-
}
|
2009 |
-
.col-md-push-9 {
|
2010 |
-
left: 75%;
|
2011 |
-
}
|
2012 |
-
.col-md-push-8 {
|
2013 |
-
left: 66.66666667%;
|
2014 |
-
}
|
2015 |
-
.col-md-push-7 {
|
2016 |
-
left: 58.33333333%;
|
2017 |
-
}
|
2018 |
-
.col-md-push-6 {
|
2019 |
-
left: 50%;
|
2020 |
-
}
|
2021 |
-
.col-md-push-5 {
|
2022 |
-
left: 41.66666667%;
|
2023 |
-
}
|
2024 |
-
.col-md-push-4 {
|
2025 |
-
left: 33.33333333%;
|
2026 |
-
}
|
2027 |
-
.col-md-push-3 {
|
2028 |
-
left: 25%;
|
2029 |
-
}
|
2030 |
-
.col-md-push-2 {
|
2031 |
-
left: 16.66666667%;
|
2032 |
-
}
|
2033 |
-
.col-md-push-1 {
|
2034 |
-
left: 8.33333333%;
|
2035 |
-
}
|
2036 |
-
.col-md-push-0 {
|
2037 |
-
left: auto;
|
2038 |
-
}
|
2039 |
-
.col-md-offset-12 {
|
2040 |
-
margin-left: 100%;
|
2041 |
-
}
|
2042 |
-
.col-md-offset-11 {
|
2043 |
-
margin-left: 91.66666667%;
|
2044 |
-
}
|
2045 |
-
.col-md-offset-10 {
|
2046 |
-
margin-left: 83.33333333%;
|
2047 |
-
}
|
2048 |
-
.col-md-offset-9 {
|
2049 |
-
margin-left: 75%;
|
2050 |
-
}
|
2051 |
-
.col-md-offset-8 {
|
2052 |
-
margin-left: 66.66666667%;
|
2053 |
-
}
|
2054 |
-
.col-md-offset-7 {
|
2055 |
-
margin-left: 58.33333333%;
|
2056 |
-
}
|
2057 |
-
.col-md-offset-6 {
|
2058 |
-
margin-left: 50%;
|
2059 |
-
}
|
2060 |
-
.col-md-offset-5 {
|
2061 |
-
margin-left: 41.66666667%;
|
2062 |
-
}
|
2063 |
-
.col-md-offset-4 {
|
2064 |
-
margin-left: 33.33333333%;
|
2065 |
-
}
|
2066 |
-
.col-md-offset-3 {
|
2067 |
-
margin-left: 25%;
|
2068 |
-
}
|
2069 |
-
.col-md-offset-2 {
|
2070 |
-
margin-left: 16.66666667%;
|
2071 |
-
}
|
2072 |
-
.col-md-offset-1 {
|
2073 |
-
margin-left: 8.33333333%;
|
2074 |
-
}
|
2075 |
-
.col-md-offset-0 {
|
2076 |
-
margin-left: 0;
|
2077 |
-
}
|
2078 |
-
}
|
2079 |
-
@media (min-width: 1200px) {
|
2080 |
-
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
2081 |
-
float: left;
|
2082 |
-
}
|
2083 |
-
.col-lg-12 {
|
2084 |
-
width: 100%;
|
2085 |
-
}
|
2086 |
-
.col-lg-11 {
|
2087 |
-
width: 91.66666667%;
|
2088 |
-
}
|
2089 |
-
.col-lg-10 {
|
2090 |
-
width: 83.33333333%;
|
2091 |
-
}
|
2092 |
-
.col-lg-9 {
|
2093 |
-
width: 75%;
|
2094 |
-
}
|
2095 |
-
.col-lg-8 {
|
2096 |
-
width: 66.66666667%;
|
2097 |
-
}
|
2098 |
-
.col-lg-7 {
|
2099 |
-
width: 58.33333333%;
|
2100 |
-
}
|
2101 |
-
.col-lg-6 {
|
2102 |
-
width: 50%;
|
2103 |
-
}
|
2104 |
-
.col-lg-5 {
|
2105 |
-
width: 41.66666667%;
|
2106 |
-
}
|
2107 |
-
.col-lg-4 {
|
2108 |
-
width: 33.33333333%;
|
2109 |
-
}
|
2110 |
-
.col-lg-3 {
|
2111 |
-
width: 25%;
|
2112 |
-
}
|
2113 |
-
.col-lg-2 {
|
2114 |
-
width: 16.66666667%;
|
2115 |
-
}
|
2116 |
-
.col-lg-1 {
|
2117 |
-
width: 8.33333333%;
|
2118 |
-
}
|
2119 |
-
.col-lg-pull-12 {
|
2120 |
-
right: 100%;
|
2121 |
-
}
|
2122 |
-
.col-lg-pull-11 {
|
2123 |
-
right: 91.66666667%;
|
2124 |
-
}
|
2125 |
-
.col-lg-pull-10 {
|
2126 |
-
right: 83.33333333%;
|
2127 |
-
}
|
2128 |
-
.col-lg-pull-9 {
|
2129 |
-
right: 75%;
|
2130 |
-
}
|
2131 |
-
.col-lg-pull-8 {
|
2132 |
-
right: 66.66666667%;
|
2133 |
-
}
|
2134 |
-
.col-lg-pull-7 {
|
2135 |
-
right: 58.33333333%;
|
2136 |
-
}
|
2137 |
-
.col-lg-pull-6 {
|
2138 |
-
right: 50%;
|
2139 |
-
}
|
2140 |
-
.col-lg-pull-5 {
|
2141 |
-
right: 41.66666667%;
|
2142 |
-
}
|
2143 |
-
.col-lg-pull-4 {
|
2144 |
-
right: 33.33333333%;
|
2145 |
-
}
|
2146 |
-
.col-lg-pull-3 {
|
2147 |
-
right: 25%;
|
2148 |
-
}
|
2149 |
-
.col-lg-pull-2 {
|
2150 |
-
right: 16.66666667%;
|
2151 |
-
}
|
2152 |
-
.col-lg-pull-1 {
|
2153 |
-
right: 8.33333333%;
|
2154 |
-
}
|
2155 |
-
.col-lg-pull-0 {
|
2156 |
-
right: auto;
|
2157 |
-
}
|
2158 |
-
.col-lg-push-12 {
|
2159 |
-
left: 100%;
|
2160 |
-
}
|
2161 |
-
.col-lg-push-11 {
|
2162 |
-
left: 91.66666667%;
|
2163 |
-
}
|
2164 |
-
.col-lg-push-10 {
|
2165 |
-
left: 83.33333333%;
|
2166 |
-
}
|
2167 |
-
.col-lg-push-9 {
|
2168 |
-
left: 75%;
|
2169 |
-
}
|
2170 |
-
.col-lg-push-8 {
|
2171 |
-
left: 66.66666667%;
|
2172 |
-
}
|
2173 |
-
.col-lg-push-7 {
|
2174 |
-
left: 58.33333333%;
|
2175 |
-
}
|
2176 |
-
.col-lg-push-6 {
|
2177 |
-
left: 50%;
|
2178 |
-
}
|
2179 |
-
.col-lg-push-5 {
|
2180 |
-
left: 41.66666667%;
|
2181 |
-
}
|
2182 |
-
.col-lg-push-4 {
|
2183 |
-
left: 33.33333333%;
|
2184 |
-
}
|
2185 |
-
.col-lg-push-3 {
|
2186 |
-
left: 25%;
|
2187 |
-
}
|
2188 |
-
.col-lg-push-2 {
|
2189 |
-
left: 16.66666667%;
|
2190 |
-
}
|
2191 |
-
.col-lg-push-1 {
|
2192 |
-
left: 8.33333333%;
|
2193 |
-
}
|
2194 |
-
.col-lg-push-0 {
|
2195 |
-
left: auto;
|
2196 |
-
}
|
2197 |
-
.col-lg-offset-12 {
|
2198 |
-
margin-left: 100%;
|
2199 |
-
}
|
2200 |
-
.col-lg-offset-11 {
|
2201 |
-
margin-left: 91.66666667%;
|
2202 |
-
}
|
2203 |
-
.col-lg-offset-10 {
|
2204 |
-
margin-left: 83.33333333%;
|
2205 |
-
}
|
2206 |
-
.col-lg-offset-9 {
|
2207 |
-
margin-left: 75%;
|
2208 |
-
}
|
2209 |
-
.col-lg-offset-8 {
|
2210 |
-
margin-left: 66.66666667%;
|
2211 |
-
}
|
2212 |
-
.col-lg-offset-7 {
|
2213 |
-
margin-left: 58.33333333%;
|
2214 |
-
}
|
2215 |
-
.col-lg-offset-6 {
|
2216 |
-
margin-left: 50%;
|
2217 |
-
}
|
2218 |
-
.col-lg-offset-5 {
|
2219 |
-
margin-left: 41.66666667%;
|
2220 |
-
}
|
2221 |
-
.col-lg-offset-4 {
|
2222 |
-
margin-left: 33.33333333%;
|
2223 |
-
}
|
2224 |
-
.col-lg-offset-3 {
|
2225 |
-
margin-left: 25%;
|
2226 |
-
}
|
2227 |
-
.col-lg-offset-2 {
|
2228 |
-
margin-left: 16.66666667%;
|
2229 |
-
}
|
2230 |
-
.col-lg-offset-1 {
|
2231 |
-
margin-left: 8.33333333%;
|
2232 |
-
}
|
2233 |
-
.col-lg-offset-0 {
|
2234 |
-
margin-left: 0;
|
2235 |
-
}
|
2236 |
-
}
|
2237 |
-
table {
|
2238 |
-
background-color: transparent;
|
2239 |
-
}
|
2240 |
-
caption {
|
2241 |
-
padding-top: 8px;
|
2242 |
-
padding-bottom: 8px;
|
2243 |
-
color: #777;
|
2244 |
-
text-align: left;
|
2245 |
-
}
|
2246 |
-
th {
|
2247 |
-
text-align: left;
|
2248 |
-
}
|
2249 |
-
.table {
|
2250 |
-
width: 100%;
|
2251 |
-
max-width: 100%;
|
2252 |
-
margin-bottom: 20px;
|
2253 |
-
}
|
2254 |
-
.table > thead > tr > th,
|
2255 |
-
.table > tbody > tr > th,
|
2256 |
-
.table > tfoot > tr > th,
|
2257 |
-
.table > thead > tr > td,
|
2258 |
-
.table > tbody > tr > td,
|
2259 |
-
.table > tfoot > tr > td {
|
2260 |
-
padding: 8px;
|
2261 |
-
line-height: 1.42857143;
|
2262 |
-
vertical-align: top;
|
2263 |
-
border-top: 1px solid #ddd;
|
2264 |
-
}
|
2265 |
-
.table > thead > tr > th {
|
2266 |
-
vertical-align: bottom;
|
2267 |
-
border-bottom: 2px solid #ddd;
|
2268 |
-
}
|
2269 |
-
.table > caption + thead > tr:first-child > th,
|
2270 |
-
.table > colgroup + thead > tr:first-child > th,
|
2271 |
-
.table > thead:first-child > tr:first-child > th,
|
2272 |
-
.table > caption + thead > tr:first-child > td,
|
2273 |
-
.table > colgroup + thead > tr:first-child > td,
|
2274 |
-
.table > thead:first-child > tr:first-child > td {
|
2275 |
-
border-top: 0;
|
2276 |
-
}
|
2277 |
-
.table > tbody + tbody {
|
2278 |
-
border-top: 2px solid #ddd;
|
2279 |
-
}
|
2280 |
-
.table .table {
|
2281 |
-
background-color: #fff;
|
2282 |
-
}
|
2283 |
-
.table-condensed > thead > tr > th,
|
2284 |
-
.table-condensed > tbody > tr > th,
|
2285 |
-
.table-condensed > tfoot > tr > th,
|
2286 |
-
.table-condensed > thead > tr > td,
|
2287 |
-
.table-condensed > tbody > tr > td,
|
2288 |
-
.table-condensed > tfoot > tr > td {
|
2289 |
-
padding: 5px;
|
2290 |
-
}
|
2291 |
-
.table-bordered {
|
2292 |
-
border: 1px solid #ddd;
|
2293 |
-
}
|
2294 |
-
.table-bordered > thead > tr > th,
|
2295 |
-
.table-bordered > tbody > tr > th,
|
2296 |
-
.table-bordered > tfoot > tr > th,
|
2297 |
-
.table-bordered > thead > tr > td,
|
2298 |
-
.table-bordered > tbody > tr > td,
|
2299 |
-
.table-bordered > tfoot > tr > td {
|
2300 |
-
border: 1px solid #ddd;
|
2301 |
-
}
|
2302 |
-
.table-bordered > thead > tr > th,
|
2303 |
-
.table-bordered > thead > tr > td {
|
2304 |
-
border-bottom-width: 2px;
|
2305 |
-
}
|
2306 |
-
.table-striped > tbody > tr:nth-of-type(odd) {
|
2307 |
-
background-color: #f9f9f9;
|
2308 |
-
}
|
2309 |
-
.table-hover > tbody > tr:hover {
|
2310 |
-
background-color: #f5f5f5;
|
2311 |
-
}
|
2312 |
-
table col[class*="col-"] {
|
2313 |
-
position: static;
|
2314 |
-
display: table-column;
|
2315 |
-
float: none;
|
2316 |
-
}
|
2317 |
-
table td[class*="col-"],
|
2318 |
-
table th[class*="col-"] {
|
2319 |
-
position: static;
|
2320 |
-
display: table-cell;
|
2321 |
-
float: none;
|
2322 |
-
}
|
2323 |
-
.table > thead > tr > td.active,
|
2324 |
-
.table > tbody > tr > td.active,
|
2325 |
-
.table > tfoot > tr > td.active,
|
2326 |
-
.table > thead > tr > th.active,
|
2327 |
-
.table > tbody > tr > th.active,
|
2328 |
-
.table > tfoot > tr > th.active,
|
2329 |
-
.table > thead > tr.active > td,
|
2330 |
-
.table > tbody > tr.active > td,
|
2331 |
-
.table > tfoot > tr.active > td,
|
2332 |
-
.table > thead > tr.active > th,
|
2333 |
-
.table > tbody > tr.active > th,
|
2334 |
-
.table > tfoot > tr.active > th {
|
2335 |
-
background-color: #f5f5f5;
|
2336 |
-
}
|
2337 |
-
.table-hover > tbody > tr > td.active:hover,
|
2338 |
-
.table-hover > tbody > tr > th.active:hover,
|
2339 |
-
.table-hover > tbody > tr.active:hover > td,
|
2340 |
-
.table-hover > tbody > tr:hover > .active,
|
2341 |
-
.table-hover > tbody > tr.active:hover > th {
|
2342 |
-
background-color: #e8e8e8;
|
2343 |
-
}
|
2344 |
-
.table > thead > tr > td.success,
|
2345 |
-
.table > tbody > tr > td.success,
|
2346 |
-
.table > tfoot > tr > td.success,
|
2347 |
-
.table > thead > tr > th.success,
|
2348 |
-
.table > tbody > tr > th.success,
|
2349 |
-
.table > tfoot > tr > th.success,
|
2350 |
-
.table > thead > tr.success > td,
|
2351 |
-
.table > tbody > tr.success > td,
|
2352 |
-
.table > tfoot > tr.success > td,
|
2353 |
-
.table > thead > tr.success > th,
|
2354 |
-
.table > tbody > tr.success > th,
|
2355 |
-
.table > tfoot > tr.success > th {
|
2356 |
-
background-color: #dff0d8;
|
2357 |
-
}
|
2358 |
-
.table-hover > tbody > tr > td.success:hover,
|
2359 |
-
.table-hover > tbody > tr > th.success:hover,
|
2360 |
-
.table-hover > tbody > tr.success:hover > td,
|
2361 |
-
.table-hover > tbody > tr:hover > .success,
|
2362 |
-
.table-hover > tbody > tr.success:hover > th {
|
2363 |
-
background-color: #d0e9c6;
|
2364 |
-
}
|
2365 |
-
.table > thead > tr > td.info,
|
2366 |
-
.table > tbody > tr > td.info,
|
2367 |
-
.table > tfoot > tr > td.info,
|
2368 |
-
.table > thead > tr > th.info,
|
2369 |
-
.table > tbody > tr > th.info,
|
2370 |
-
.table > tfoot > tr > th.info,
|
2371 |
-
.table > thead > tr.info > td,
|
2372 |
-
.table > tbody > tr.info > td,
|
2373 |
-
.table > tfoot > tr.info > td,
|
2374 |
-
.table > thead > tr.info > th,
|
2375 |
-
.table > tbody > tr.info > th,
|
2376 |
-
.table > tfoot > tr.info > th {
|
2377 |
-
background-color: #d9edf7;
|
2378 |
-
}
|
2379 |
-
.table-hover > tbody > tr > td.info:hover,
|
2380 |
-
.table-hover > tbody > tr > th.info:hover,
|
2381 |
-
.table-hover > tbody > tr.info:hover > td,
|
2382 |
-
.table-hover > tbody > tr:hover > .info,
|
2383 |
-
.table-hover > tbody > tr.info:hover > th {
|
2384 |
-
background-color: #c4e3f3;
|
2385 |
-
}
|
2386 |
-
.table > thead > tr > td.warning,
|
2387 |
-
.table > tbody > tr > td.warning,
|
2388 |
-
.table > tfoot > tr > td.warning,
|
2389 |
-
.table > thead > tr > th.warning,
|
2390 |
-
.table > tbody > tr > th.warning,
|
2391 |
-
.table > tfoot > tr > th.warning,
|
2392 |
-
.table > thead > tr.warning > td,
|
2393 |
-
.table > tbody > tr.warning > td,
|
2394 |
-
.table > tfoot > tr.warning > td,
|
2395 |
-
.table > thead > tr.warning > th,
|
2396 |
-
.table > tbody > tr.warning > th,
|
2397 |
-
.table > tfoot > tr.warning > th {
|
2398 |
-
background-color: #fcf8e3;
|
2399 |
-
}
|
2400 |
-
.table-hover > tbody > tr > td.warning:hover,
|
2401 |
-
.table-hover > tbody > tr > th.warning:hover,
|
2402 |
-
.table-hover > tbody > tr.warning:hover > td,
|
2403 |
-
.table-hover > tbody > tr:hover > .warning,
|
2404 |
-
.table-hover > tbody > tr.warning:hover > th {
|
2405 |
-
background-color: #faf2cc;
|
2406 |
-
}
|
2407 |
-
.table > thead > tr > td.danger,
|
2408 |
-
.table > tbody > tr > td.danger,
|
2409 |
-
.table > tfoot > tr > td.danger,
|
2410 |
-
.table > thead > tr > th.danger,
|
2411 |
-
.table > tbody > tr > th.danger,
|
2412 |
-
.table > tfoot > tr > th.danger,
|
2413 |
-
.table > thead > tr.danger > td,
|
2414 |
-
.table > tbody > tr.danger > td,
|
2415 |
-
.table > tfoot > tr.danger > td,
|
2416 |
-
.table > thead > tr.danger > th,
|
2417 |
-
.table > tbody > tr.danger > th,
|
2418 |
-
.table > tfoot > tr.danger > th {
|
2419 |
-
background-color: #f2dede;
|
2420 |
-
}
|
2421 |
-
.table-hover > tbody > tr > td.danger:hover,
|
2422 |
-
.table-hover > tbody > tr > th.danger:hover,
|
2423 |
-
.table-hover > tbody > tr.danger:hover > td,
|
2424 |
-
.table-hover > tbody > tr:hover > .danger,
|
2425 |
-
.table-hover > tbody > tr.danger:hover > th {
|
2426 |
-
background-color: #ebcccc;
|
2427 |
-
}
|
2428 |
-
.table-responsive {
|
2429 |
-
min-height: .01%;
|
2430 |
-
overflow-x: auto;
|
2431 |
-
}
|
2432 |
-
@media screen and (max-width: 767px) {
|
2433 |
-
.table-responsive {
|
2434 |
-
width: 100%;
|
2435 |
-
margin-bottom: 15px;
|
2436 |
-
overflow-y: hidden;
|
2437 |
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2438 |
-
border: 1px solid #ddd;
|
2439 |
-
}
|
2440 |
-
.table-responsive > .table {
|
2441 |
-
margin-bottom: 0;
|
2442 |
-
}
|
2443 |
-
.table-responsive > .table > thead > tr > th,
|
2444 |
-
.table-responsive > .table > tbody > tr > th,
|
2445 |
-
.table-responsive > .table > tfoot > tr > th,
|
2446 |
-
.table-responsive > .table > thead > tr > td,
|
2447 |
-
.table-responsive > .table > tbody > tr > td,
|
2448 |
-
.table-responsive > .table > tfoot > tr > td {
|
2449 |
-
white-space: nowrap;
|
2450 |
-
}
|
2451 |
-
.table-responsive > .table-bordered {
|
2452 |
-
border: 0;
|
2453 |
-
}
|
2454 |
-
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
2455 |
-
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
2456 |
-
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
2457 |
-
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
2458 |
-
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
2459 |
-
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
2460 |
-
border-left: 0;
|
2461 |
-
}
|
2462 |
-
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
2463 |
-
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
2464 |
-
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
2465 |
-
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
2466 |
-
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
2467 |
-
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
2468 |
-
border-right: 0;
|
2469 |
-
}
|
2470 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
2471 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
2472 |
-
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
2473 |
-
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
2474 |
-
border-bottom: 0;
|
2475 |
-
}
|
2476 |
-
}
|
2477 |
-
fieldset {
|
2478 |
-
min-width: 0;
|
2479 |
-
padding: 0;
|
2480 |
-
margin: 0;
|
2481 |
-
border: 0;
|
2482 |
-
}
|
2483 |
-
legend {
|
2484 |
-
display: block;
|
2485 |
-
width: 100%;
|
2486 |
-
padding: 0;
|
2487 |
-
margin-bottom: 20px;
|
2488 |
-
font-size: 21px;
|
2489 |
-
line-height: inherit;
|
2490 |
-
color: #333;
|
2491 |
-
border: 0;
|
2492 |
-
border-bottom: 1px solid #e5e5e5;
|
2493 |
-
}
|
2494 |
-
/*label {
|
2495 |
-
display: inline-block;
|
2496 |
-
max-width: 100%;
|
2497 |
-
margin-bottom: 5px;
|
2498 |
-
font-weight: bold;
|
2499 |
-
}*/
|
2500 |
-
input[type="search"] {
|
2501 |
-
-webkit-box-sizing: border-box;
|
2502 |
-
-moz-box-sizing: border-box;
|
2503 |
-
box-sizing: border-box;
|
2504 |
-
}
|
2505 |
-
input[type="radio"],
|
2506 |
-
input[type="checkbox"] {
|
2507 |
-
margin: 4px 0 0;
|
2508 |
-
margin-top: 1px \9;
|
2509 |
-
line-height: normal;
|
2510 |
-
}
|
2511 |
-
input[type="file"] {
|
2512 |
-
display: block;
|
2513 |
-
}
|
2514 |
-
input[type="range"] {
|
2515 |
-
display: block;
|
2516 |
-
width: 100%;
|
2517 |
-
}
|
2518 |
-
select[multiple],
|
2519 |
-
select[size] {
|
2520 |
-
height: auto;
|
2521 |
-
}
|
2522 |
-
input[type="file"]:focus,
|
2523 |
-
input[type="radio"]:focus,
|
2524 |
-
input[type="checkbox"]:focus {
|
2525 |
-
outline: 5px auto -webkit-focus-ring-color;
|
2526 |
-
outline-offset: -2px;
|
2527 |
-
}
|
2528 |
-
output {
|
2529 |
-
display: block;
|
2530 |
-
padding-top: 7px;
|
2531 |
-
font-size: 14px;
|
2532 |
-
line-height: 1.42857143;
|
2533 |
-
color: #555;
|
2534 |
-
}
|
2535 |
-
.form-control {
|
2536 |
-
display: block;
|
2537 |
-
width: 100%;
|
2538 |
-
height: 34px;
|
2539 |
-
padding: 6px 12px;
|
2540 |
-
font-size: 14px;
|
2541 |
-
line-height: 1.42857143;
|
2542 |
-
color: #555;
|
2543 |
-
background-color: #fff;
|
2544 |
-
background-image: none;
|
2545 |
-
border: 1px solid #ccc;
|
2546 |
-
border-radius: 4px;
|
2547 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2548 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2549 |
-
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2550 |
-
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2551 |
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2552 |
-
}
|
2553 |
-
.form-control:focus {
|
2554 |
-
border-color: #66afe9;
|
2555 |
-
outline: 0;
|
2556 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
2557 |
-
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
2558 |
-
}
|
2559 |
-
.form-control::-moz-placeholder {
|
2560 |
-
color: #999;
|
2561 |
-
opacity: 1;
|
2562 |
-
}
|
2563 |
-
.form-control:-ms-input-placeholder {
|
2564 |
-
color: #999;
|
2565 |
-
}
|
2566 |
-
.form-control::-webkit-input-placeholder {
|
2567 |
-
color: #999;
|
2568 |
-
}
|
2569 |
-
.form-control::-ms-expand {
|
2570 |
-
background-color: transparent;
|
2571 |
-
border: 0;
|
2572 |
-
}
|
2573 |
-
.form-control[disabled],
|
2574 |
-
.form-control[readonly],
|
2575 |
-
fieldset[disabled] .form-control {
|
2576 |
-
background-color: #eee;
|
2577 |
-
opacity: 1;
|
2578 |
-
}
|
2579 |
-
.form-control[disabled],
|
2580 |
-
fieldset[disabled] .form-control {
|
2581 |
-
cursor: not-allowed;
|
2582 |
-
}
|
2583 |
-
textarea.form-control {
|
2584 |
-
height: auto;
|
2585 |
-
}
|
2586 |
-
input[type="search"] {
|
2587 |
-
-webkit-appearance: none;
|
2588 |
-
}
|
2589 |
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2590 |
-
input[type="date"].form-control,
|
2591 |
-
input[type="time"].form-control,
|
2592 |
-
input[type="datetime-local"].form-control,
|
2593 |
-
input[type="month"].form-control {
|
2594 |
-
line-height: 34px;
|
2595 |
-
}
|
2596 |
-
input[type="date"].input-sm,
|
2597 |
-
input[type="time"].input-sm,
|
2598 |
-
input[type="datetime-local"].input-sm,
|
2599 |
-
input[type="month"].input-sm,
|
2600 |
-
.input-group-sm input[type="date"],
|
2601 |
-
.input-group-sm input[type="time"],
|
2602 |
-
.input-group-sm input[type="datetime-local"],
|
2603 |
-
.input-group-sm input[type="month"] {
|
2604 |
-
line-height: 30px;
|
2605 |
-
}
|
2606 |
-
input[type="date"].input-lg,
|
2607 |
-
input[type="time"].input-lg,
|
2608 |
-
input[type="datetime-local"].input-lg,
|
2609 |
-
input[type="month"].input-lg,
|
2610 |
-
.input-group-lg input[type="date"],
|
2611 |
-
.input-group-lg input[type="time"],
|
2612 |
-
.input-group-lg input[type="datetime-local"],
|
2613 |
-
.input-group-lg input[type="month"] {
|
2614 |
-
line-height: 46px;
|
2615 |
-
}
|
2616 |
-
}
|
2617 |
-
.form-group {
|
2618 |
-
margin-bottom: 15px;
|
2619 |
-
}
|
2620 |
-
.radio,
|
2621 |
-
.checkbox {
|
2622 |
-
position: relative;
|
2623 |
-
display: block;
|
2624 |
-
margin-top: 10px;
|
2625 |
-
margin-bottom: 10px;
|
2626 |
-
}
|
2627 |
-
.radio label,
|
2628 |
-
.checkbox label {
|
2629 |
-
min-height: 20px;
|
2630 |
-
padding-left: 20px;
|
2631 |
-
margin-bottom: 0;
|
2632 |
-
font-weight: normal;
|
2633 |
-
cursor: pointer;
|
2634 |
-
}
|
2635 |
-
.radio input[type="radio"],
|
2636 |
-
.radio-inline input[type="radio"],
|
2637 |
-
.checkbox input[type="checkbox"],
|
2638 |
-
.checkbox-inline input[type="checkbox"] {
|
2639 |
-
position: absolute;
|
2640 |
-
margin-top: 4px \9;
|
2641 |
-
margin-left: -20px;
|
2642 |
-
}
|
2643 |
-
.radio + .radio,
|
2644 |
-
.checkbox + .checkbox {
|
2645 |
-
margin-top: -5px;
|
2646 |
-
}
|
2647 |
-
.radio-inline,
|
2648 |
-
.checkbox-inline {
|
2649 |
-
position: relative;
|
2650 |
-
display: inline-block;
|
2651 |
-
padding-left: 20px;
|
2652 |
-
margin-bottom: 0;
|
2653 |
-
font-weight: normal;
|
2654 |
-
vertical-align: middle;
|
2655 |
-
cursor: pointer;
|
2656 |
-
}
|
2657 |
-
.radio-inline + .radio-inline,
|
2658 |
-
.checkbox-inline + .checkbox-inline {
|
2659 |
-
margin-top: 0;
|
2660 |
-
margin-left: 10px;
|
2661 |
-
}
|
2662 |
-
input[type="radio"][disabled],
|
2663 |
-
input[type="checkbox"][disabled],
|
2664 |
-
input[type="radio"].disabled,
|
2665 |
-
input[type="checkbox"].disabled,
|
2666 |
-
fieldset[disabled] input[type="radio"],
|
2667 |
-
fieldset[disabled] input[type="checkbox"] {
|
2668 |
-
cursor: not-allowed;
|
2669 |
-
}
|
2670 |
-
.radio-inline.disabled,
|
2671 |
-
.checkbox-inline.disabled,
|
2672 |
-
fieldset[disabled] .radio-inline,
|
2673 |
-
fieldset[disabled] .checkbox-inline {
|
2674 |
-
cursor: not-allowed;
|
2675 |
-
}
|
2676 |
-
.radio.disabled label,
|
2677 |
-
.checkbox.disabled label,
|
2678 |
-
fieldset[disabled] .radio label,
|
2679 |
-
fieldset[disabled] .checkbox label {
|
2680 |
-
cursor: not-allowed;
|
2681 |
-
}
|
2682 |
-
.form-control-static {
|
2683 |
-
min-height: 34px;
|
2684 |
-
padding-top: 7px;
|
2685 |
-
padding-bottom: 7px;
|
2686 |
-
margin-bottom: 0;
|
2687 |
-
}
|
2688 |
-
.form-control-static.input-lg,
|
2689 |
-
.form-control-static.input-sm {
|
2690 |
-
padding-right: 0;
|
2691 |
-
padding-left: 0;
|
2692 |
-
}
|
2693 |
-
.input-sm {
|
2694 |
-
height: 30px;
|
2695 |
-
padding: 5px 10px;
|
2696 |
-
font-size: 12px;
|
2697 |
-
line-height: 1.5;
|
2698 |
-
border-radius: 3px;
|
2699 |
-
}
|
2700 |
-
select.input-sm {
|
2701 |
-
height: 30px;
|
2702 |
-
line-height: 30px;
|
2703 |
-
}
|
2704 |
-
textarea.input-sm,
|
2705 |
-
select[multiple].input-sm {
|
2706 |
-
height: auto;
|
2707 |
-
}
|
2708 |
-
.form-group-sm .form-control {
|
2709 |
-
height: 30px;
|
2710 |
-
padding: 5px 10px;
|
2711 |
-
font-size: 12px;
|
2712 |
-
line-height: 1.5;
|
2713 |
-
border-radius: 3px;
|
2714 |
-
}
|
2715 |
-
.form-group-sm select.form-control {
|
2716 |
-
height: 30px;
|
2717 |
-
line-height: 30px;
|
2718 |
-
}
|
2719 |
-
.form-group-sm textarea.form-control,
|
2720 |
-
.form-group-sm select[multiple].form-control {
|
2721 |
-
height: auto;
|
2722 |
-
}
|
2723 |
-
.form-group-sm .form-control-static {
|
2724 |
-
height: 30px;
|
2725 |
-
min-height: 32px;
|
2726 |
-
padding: 6px 10px;
|
2727 |
-
font-size: 12px;
|
2728 |
-
line-height: 1.5;
|
2729 |
-
}
|
2730 |
-
.input-lg {
|
2731 |
-
height: 46px;
|
2732 |
-
padding: 10px 16px;
|
2733 |
-
font-size: 18px;
|
2734 |
-
line-height: 1.3333333;
|
2735 |
-
border-radius: 6px;
|
2736 |
-
}
|
2737 |
-
select.input-lg {
|
2738 |
-
height: 46px;
|
2739 |
-
line-height: 46px;
|
2740 |
-
}
|
2741 |
-
textarea.input-lg,
|
2742 |
-
select[multiple].input-lg {
|
2743 |
-
height: auto;
|
2744 |
-
}
|
2745 |
-
.form-group-lg .form-control {
|
2746 |
-
height: 46px;
|
2747 |
-
padding: 10px 16px;
|
2748 |
-
font-size: 18px;
|
2749 |
-
line-height: 1.3333333;
|
2750 |
-
border-radius: 6px;
|
2751 |
-
}
|
2752 |
-
.form-group-lg select.form-control {
|
2753 |
-
height: 46px;
|
2754 |
-
line-height: 46px;
|
2755 |
-
}
|
2756 |
-
.form-group-lg textarea.form-control,
|
2757 |
-
.form-group-lg select[multiple].form-control {
|
2758 |
-
height: auto;
|
2759 |
-
}
|
2760 |
-
.form-group-lg .form-control-static {
|
2761 |
-
height: 46px;
|
2762 |
-
min-height: 38px;
|
2763 |
-
padding: 11px 16px;
|
2764 |
-
font-size: 18px;
|
2765 |
-
line-height: 1.3333333;
|
2766 |
-
}
|
2767 |
-
.has-feedback {
|
2768 |
-
position: relative;
|
2769 |
-
}
|
2770 |
-
.has-feedback .form-control {
|
2771 |
-
padding-right: 42.5px;
|
2772 |
-
}
|
2773 |
-
.form-control-feedback {
|
2774 |
-
position: absolute;
|
2775 |
-
top: 0;
|
2776 |
-
right: 0;
|
2777 |
-
z-index: 2;
|
2778 |
-
display: block;
|
2779 |
-
width: 34px;
|
2780 |
-
height: 34px;
|
2781 |
-
line-height: 34px;
|
2782 |
-
text-align: center;
|
2783 |
-
pointer-events: none;
|
2784 |
-
}
|
2785 |
-
.input-lg + .form-control-feedback,
|
2786 |
-
.input-group-lg + .form-control-feedback,
|
2787 |
-
.form-group-lg .form-control + .form-control-feedback {
|
2788 |
-
width: 46px;
|
2789 |
-
height: 46px;
|
2790 |
-
line-height: 46px;
|
2791 |
-
}
|
2792 |
-
.input-sm + .form-control-feedback,
|
2793 |
-
.input-group-sm + .form-control-feedback,
|
2794 |
-
.form-group-sm .form-control + .form-control-feedback {
|
2795 |
-
width: 30px;
|
2796 |
-
height: 30px;
|
2797 |
-
line-height: 30px;
|
2798 |
-
}
|
2799 |
-
.has-success .help-block,
|
2800 |
-
.has-success .control-label,
|
2801 |
-
.has-success .radio,
|
2802 |
-
.has-success .checkbox,
|
2803 |
-
.has-success .radio-inline,
|
2804 |
-
.has-success .checkbox-inline,
|
2805 |
-
.has-success.radio label,
|
2806 |
-
.has-success.checkbox label,
|
2807 |
-
.has-success.radio-inline label,
|
2808 |
-
.has-success.checkbox-inline label {
|
2809 |
-
color: #3c763d;
|
2810 |
-
}
|
2811 |
-
.has-success .form-control {
|
2812 |
-
border-color: #3c763d;
|
2813 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2814 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2815 |
-
}
|
2816 |
-
.has-success .form-control:focus {
|
2817 |
-
border-color: #2b542c;
|
2818 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2819 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2820 |
-
}
|
2821 |
-
.has-success .input-group-addon {
|
2822 |
-
color: #3c763d;
|
2823 |
-
background-color: #dff0d8;
|
2824 |
-
border-color: #3c763d;
|
2825 |
-
}
|
2826 |
-
.has-success .form-control-feedback {
|
2827 |
-
color: #3c763d;
|
2828 |
-
}
|
2829 |
-
.has-warning .help-block,
|
2830 |
-
.has-warning .control-label,
|
2831 |
-
.has-warning .radio,
|
2832 |
-
.has-warning .checkbox,
|
2833 |
-
.has-warning .radio-inline,
|
2834 |
-
.has-warning .checkbox-inline,
|
2835 |
-
.has-warning.radio label,
|
2836 |
-
.has-warning.checkbox label,
|
2837 |
-
.has-warning.radio-inline label,
|
2838 |
-
.has-warning.checkbox-inline label {
|
2839 |
-
color: #8a6d3b;
|
2840 |
-
}
|
2841 |
-
.has-warning .form-control {
|
2842 |
-
border-color: #8a6d3b;
|
2843 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2844 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2845 |
-
}
|
2846 |
-
.has-warning .form-control:focus {
|
2847 |
-
border-color: #66512c;
|
2848 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2849 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2850 |
-
}
|
2851 |
-
.has-warning .input-group-addon {
|
2852 |
-
color: #8a6d3b;
|
2853 |
-
background-color: #fcf8e3;
|
2854 |
-
border-color: #8a6d3b;
|
2855 |
-
}
|
2856 |
-
.has-warning .form-control-feedback {
|
2857 |
-
color: #8a6d3b;
|
2858 |
-
}
|
2859 |
-
.has-error .help-block,
|
2860 |
-
.has-error .control-label,
|
2861 |
-
.has-error .radio,
|
2862 |
-
.has-error .checkbox,
|
2863 |
-
.has-error .radio-inline,
|
2864 |
-
.has-error .checkbox-inline,
|
2865 |
-
.has-error.radio label,
|
2866 |
-
.has-error.checkbox label,
|
2867 |
-
.has-error.radio-inline label,
|
2868 |
-
.has-error.checkbox-inline label {
|
2869 |
-
color: #a94442;
|
2870 |
-
}
|
2871 |
-
.has-error .form-control {
|
2872 |
-
border-color: #a94442;
|
2873 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2874 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2875 |
-
}
|
2876 |
-
.has-error .form-control:focus {
|
2877 |
-
border-color: #843534;
|
2878 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2879 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2880 |
-
}
|
2881 |
-
.has-error .input-group-addon {
|
2882 |
-
color: #a94442;
|
2883 |
-
background-color: #f2dede;
|
2884 |
-
border-color: #a94442;
|
2885 |
-
}
|
2886 |
-
.has-error .form-control-feedback {
|
2887 |
-
color: #a94442;
|
2888 |
-
}
|
2889 |
-
.has-feedback label ~ .form-control-feedback {
|
2890 |
-
top: 25px;
|
2891 |
-
}
|
2892 |
-
.has-feedback label.sr-only ~ .form-control-feedback {
|
2893 |
-
top: 0;
|
2894 |
-
}
|
2895 |
-
.help-block {
|
2896 |
-
display: block;
|
2897 |
-
margin-top: 5px;
|
2898 |
-
margin-bottom: 10px;
|
2899 |
-
color: #737373;
|
2900 |
-
}
|
2901 |
-
@media (min-width: 768px) {
|
2902 |
-
.form-inline .form-group {
|
2903 |
-
display: inline-block;
|
2904 |
-
margin-bottom: 0;
|
2905 |
-
vertical-align: middle;
|
2906 |
-
}
|
2907 |
-
.form-inline .form-control {
|
2908 |
-
display: inline-block;
|
2909 |
-
width: auto;
|
2910 |
-
vertical-align: middle;
|
2911 |
-
}
|
2912 |
-
.form-inline .form-control-static {
|
2913 |
-
display: inline-block;
|
2914 |
-
}
|
2915 |
-
.form-inline .input-group {
|
2916 |
-
display: inline-table;
|
2917 |
-
vertical-align: middle;
|
2918 |
-
}
|
2919 |
-
.form-inline .input-group .input-group-addon,
|
2920 |
-
.form-inline .input-group .input-group-btn,
|
2921 |
-
.form-inline .input-group .form-control {
|
2922 |
-
width: auto;
|
2923 |
-
}
|
2924 |
-
.form-inline .input-group > .form-control {
|
2925 |
-
width: 100%;
|
2926 |
-
}
|
2927 |
-
.form-inline .control-label {
|
2928 |
-
margin-bottom: 0;
|
2929 |
-
vertical-align: middle;
|
2930 |
-
}
|
2931 |
-
.form-inline .radio,
|
2932 |
-
.form-inline .checkbox {
|
2933 |
-
display: inline-block;
|
2934 |
-
margin-top: 0;
|
2935 |
-
margin-bottom: 0;
|
2936 |
-
vertical-align: middle;
|
2937 |
-
}
|
2938 |
-
.form-inline .radio label,
|
2939 |
-
.form-inline .checkbox label {
|
2940 |
-
padding-left: 0;
|
2941 |
-
}
|
2942 |
-
.form-inline .radio input[type="radio"],
|
2943 |
-
.form-inline .checkbox input[type="checkbox"] {
|
2944 |
-
position: relative;
|
2945 |
-
margin-left: 0;
|
2946 |
-
}
|
2947 |
-
.form-inline .has-feedback .form-control-feedback {
|
2948 |
-
top: 0;
|
2949 |
-
}
|
2950 |
-
}
|
2951 |
-
.form-horizontal .radio,
|
2952 |
-
.form-horizontal .checkbox,
|
2953 |
-
.form-horizontal .radio-inline,
|
2954 |
-
.form-horizontal .checkbox-inline {
|
2955 |
-
padding-top: 7px;
|
2956 |
-
margin-top: 0;
|
2957 |
-
margin-bottom: 0;
|
2958 |
-
}
|
2959 |
-
.form-horizontal .radio,
|
2960 |
-
.form-horizontal .checkbox {
|
2961 |
-
min-height: 27px;
|
2962 |
-
}
|
2963 |
-
.form-horizontal .form-group {
|
2964 |
-
margin-right: -15px;
|
2965 |
-
margin-left: -15px;
|
2966 |
-
}
|
2967 |
-
@media (min-width: 768px) {
|
2968 |
-
.form-horizontal .control-label {
|
2969 |
-
padding-top: 7px;
|
2970 |
-
margin-bottom: 0;
|
2971 |
-
text-align: right;
|
2972 |
-
}
|
2973 |
-
}
|
2974 |
-
.form-horizontal .has-feedback .form-control-feedback {
|
2975 |
-
right: 15px;
|
2976 |
-
}
|
2977 |
-
@media (min-width: 768px) {
|
2978 |
-
.form-horizontal .form-group-lg .control-label {
|
2979 |
-
padding-top: 11px;
|
2980 |
-
font-size: 18px;
|
2981 |
-
}
|
2982 |
-
}
|
2983 |
-
@media (min-width: 768px) {
|
2984 |
-
.form-horizontal .form-group-sm .control-label {
|
2985 |
-
padding-top: 6px;
|
2986 |
-
font-size: 12px;
|
2987 |
-
}
|
2988 |
-
}
|
2989 |
-
.btn {
|
2990 |
-
display: inline-block;
|
2991 |
-
padding: 6px 12px;
|
2992 |
-
margin-bottom: 0;
|
2993 |
-
font-size: 14px;
|
2994 |
-
font-weight: normal;
|
2995 |
-
line-height: 1.42857143;
|
2996 |
-
text-align: center;
|
2997 |
-
white-space: nowrap;
|
2998 |
-
vertical-align: middle;
|
2999 |
-
-ms-touch-action: manipulation;
|
3000 |
-
touch-action: manipulation;
|
3001 |
-
cursor: pointer;
|
3002 |
-
-webkit-user-select: none;
|
3003 |
-
-moz-user-select: none;
|
3004 |
-
-ms-user-select: none;
|
3005 |
-
user-select: none;
|
3006 |
-
background-image: none;
|
3007 |
-
border: 1px solid transparent;
|
3008 |
-
border-radius: 4px;
|
3009 |
-
}
|
3010 |
-
.btn:focus,
|
3011 |
-
.btn:active:focus,
|
3012 |
-
.btn.active:focus,
|
3013 |
-
.btn.focus,
|
3014 |
-
.btn:active.focus,
|
3015 |
-
.btn.active.focus {
|
3016 |
-
outline: 5px auto -webkit-focus-ring-color;
|
3017 |
-
outline-offset: -2px;
|
3018 |
-
}
|
3019 |
-
.btn:hover,
|
3020 |
-
.btn:focus,
|
3021 |
-
.btn.focus {
|
3022 |
-
color: #333;
|
3023 |
-
text-decoration: none;
|
3024 |
-
}
|
3025 |
-
.btn:active,
|
3026 |
-
.btn.active {
|
3027 |
-
background-image: none;
|
3028 |
-
outline: 0;
|
3029 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3030 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3031 |
-
}
|
3032 |
-
.btn.disabled,
|
3033 |
-
.btn[disabled],
|
3034 |
-
fieldset[disabled] .btn {
|
3035 |
-
cursor: not-allowed;
|
3036 |
-
filter: alpha(opacity=65);
|
3037 |
-
-webkit-box-shadow: none;
|
3038 |
-
box-shadow: none;
|
3039 |
-
opacity: .65;
|
3040 |
-
}
|
3041 |
-
a.btn.disabled,
|
3042 |
-
fieldset[disabled] a.btn {
|
3043 |
-
pointer-events: none;
|
3044 |
-
}
|
3045 |
-
.btn-default {
|
3046 |
-
color: #333;
|
3047 |
-
background-color: #fff;
|
3048 |
-
border-color: #ccc;
|
3049 |
-
}
|
3050 |
-
.btn-default:focus,
|
3051 |
-
.btn-default.focus {
|
3052 |
-
color: #333;
|
3053 |
-
background-color: #e6e6e6;
|
3054 |
-
border-color: #8c8c8c;
|
3055 |
-
}
|
3056 |
-
.btn-default:hover {
|
3057 |
-
color: #333;
|
3058 |
-
background-color: #e6e6e6;
|
3059 |
-
border-color: #adadad;
|
3060 |
-
}
|
3061 |
-
.btn-default:active,
|
3062 |
-
.btn-default.active,
|
3063 |
-
.open > .dropdown-toggle.btn-default {
|
3064 |
-
color: #333;
|
3065 |
-
background-color: #e6e6e6;
|
3066 |
-
border-color: #adadad;
|
3067 |
-
}
|
3068 |
-
.btn-default:active:hover,
|
3069 |
-
.btn-default.active:hover,
|
3070 |
-
.open > .dropdown-toggle.btn-default:hover,
|
3071 |
-
.btn-default:active:focus,
|
3072 |
-
.btn-default.active:focus,
|
3073 |
-
.open > .dropdown-toggle.btn-default:focus,
|
3074 |
-
.btn-default:active.focus,
|
3075 |
-
.btn-default.active.focus,
|
3076 |
-
.open > .dropdown-toggle.btn-default.focus {
|
3077 |
-
color: #333;
|
3078 |
-
background-color: #d4d4d4;
|
3079 |
-
border-color: #8c8c8c;
|
3080 |
-
}
|
3081 |
-
.btn-default:active,
|
3082 |
-
.btn-default.active,
|
3083 |
-
.open > .dropdown-toggle.btn-default {
|
3084 |
-
background-image: none;
|
3085 |
-
}
|
3086 |
-
.btn-default.disabled:hover,
|
3087 |
-
.btn-default[disabled]:hover,
|
3088 |
-
fieldset[disabled] .btn-default:hover,
|
3089 |
-
.btn-default.disabled:focus,
|
3090 |
-
.btn-default[disabled]:focus,
|
3091 |
-
fieldset[disabled] .btn-default:focus,
|
3092 |
-
.btn-default.disabled.focus,
|
3093 |
-
.btn-default[disabled].focus,
|
3094 |
-
fieldset[disabled] .btn-default.focus {
|
3095 |
-
background-color: #fff;
|
3096 |
-
border-color: #ccc;
|
3097 |
-
}
|
3098 |
-
.btn-default .badge {
|
3099 |
-
color: #fff;
|
3100 |
-
background-color: #333;
|
3101 |
-
}
|
3102 |
-
.btn-primary {
|
3103 |
-
color: #fff;
|
3104 |
-
background-color: #337ab7;
|
3105 |
-
border-color: #2e6da4;
|
3106 |
-
}
|
3107 |
-
.btn-primary:focus,
|
3108 |
-
.btn-primary.focus {
|
3109 |
-
color: #fff;
|
3110 |
-
background-color: #286090;
|
3111 |
-
border-color: #122b40;
|
3112 |
-
}
|
3113 |
-
.btn-primary:hover {
|
3114 |
-
color: #fff;
|
3115 |
-
background-color: #286090;
|
3116 |
-
border-color: #204d74;
|
3117 |
-
}
|
3118 |
-
.btn-primary:active,
|
3119 |
-
.btn-primary.active,
|
3120 |
-
.open > .dropdown-toggle.btn-primary {
|
3121 |
-
color: #fff;
|
3122 |
-
background-color: #286090;
|
3123 |
-
border-color: #204d74;
|
3124 |
-
}
|
3125 |
-
.btn-primary:active:hover,
|
3126 |
-
.btn-primary.active:hover,
|
3127 |
-
.open > .dropdown-toggle.btn-primary:hover,
|
3128 |
-
.btn-primary:active:focus,
|
3129 |
-
.btn-primary.active:focus,
|
3130 |
-
.open > .dropdown-toggle.btn-primary:focus,
|
3131 |
-
.btn-primary:active.focus,
|
3132 |
-
.btn-primary.active.focus,
|
3133 |
-
.open > .dropdown-toggle.btn-primary.focus {
|
3134 |
-
color: #fff;
|
3135 |
-
background-color: #204d74;
|
3136 |
-
border-color: #122b40;
|
3137 |
-
}
|
3138 |
-
.btn-primary:active,
|
3139 |
-
.btn-primary.active,
|
3140 |
-
.open > .dropdown-toggle.btn-primary {
|
3141 |
-
background-image: none;
|
3142 |
-
}
|
3143 |
-
.btn-primary.disabled:hover,
|
3144 |
-
.btn-primary[disabled]:hover,
|
3145 |
-
fieldset[disabled] .btn-primary:hover,
|
3146 |
-
.btn-primary.disabled:focus,
|
3147 |
-
.btn-primary[disabled]:focus,
|
3148 |
-
fieldset[disabled] .btn-primary:focus,
|
3149 |
-
.btn-primary.disabled.focus,
|
3150 |
-
.btn-primary[disabled].focus,
|
3151 |
-
fieldset[disabled] .btn-primary.focus {
|
3152 |
-
background-color: #337ab7;
|
3153 |
-
border-color: #2e6da4;
|
3154 |
-
}
|
3155 |
-
.btn-primary .badge {
|
3156 |
-
color: #337ab7;
|
3157 |
-
background-color: #fff;
|
3158 |
-
}
|
3159 |
-
.btn-success {
|
3160 |
-
color: #fff;
|
3161 |
-
background-color: #5cb85c;
|
3162 |
-
border-color: #4cae4c;
|
3163 |
-
}
|
3164 |
-
.btn-success:focus,
|
3165 |
-
.btn-success.focus {
|
3166 |
-
color: #fff;
|
3167 |
-
background-color: #449d44;
|
3168 |
-
border-color: #255625;
|
3169 |
-
}
|
3170 |
-
.btn-success:hover {
|
3171 |
-
color: #fff;
|
3172 |
-
background-color: #449d44;
|
3173 |
-
border-color: #398439;
|
3174 |
-
}
|
3175 |
-
.btn-success:active,
|
3176 |
-
.btn-success.active,
|
3177 |
-
.open > .dropdown-toggle.btn-success {
|
3178 |
-
color: #fff;
|
3179 |
-
background-color: #449d44;
|
3180 |
-
border-color: #398439;
|
3181 |
-
}
|
3182 |
-
.btn-success:active:hover,
|
3183 |
-
.btn-success.active:hover,
|
3184 |
-
.open > .dropdown-toggle.btn-success:hover,
|
3185 |
-
.btn-success:active:focus,
|
3186 |
-
.btn-success.active:focus,
|
3187 |
-
.open > .dropdown-toggle.btn-success:focus,
|
3188 |
-
.btn-success:active.focus,
|
3189 |
-
.btn-success.active.focus,
|
3190 |
-
.open > .dropdown-toggle.btn-success.focus {
|
3191 |
-
color: #fff;
|
3192 |
-
background-color: #398439;
|
3193 |
-
border-color: #255625;
|
3194 |
-
}
|
3195 |
-
.btn-success:active,
|
3196 |
-
.btn-success.active,
|
3197 |
-
.open > .dropdown-toggle.btn-success {
|
3198 |
-
background-image: none;
|
3199 |
-
}
|
3200 |
-
.btn-success.disabled:hover,
|
3201 |
-
.btn-success[disabled]:hover,
|
3202 |
-
fieldset[disabled] .btn-success:hover,
|
3203 |
-
.btn-success.disabled:focus,
|
3204 |
-
.btn-success[disabled]:focus,
|
3205 |
-
fieldset[disabled] .btn-success:focus,
|
3206 |
-
.btn-success.disabled.focus,
|
3207 |
-
.btn-success[disabled].focus,
|
3208 |
-
fieldset[disabled] .btn-success.focus {
|
3209 |
-
background-color: #5cb85c;
|
3210 |
-
border-color: #4cae4c;
|
3211 |
-
}
|
3212 |
-
.btn-success .badge {
|
3213 |
-
color: #5cb85c;
|
3214 |
-
background-color: #fff;
|
3215 |
-
}
|
3216 |
-
.btn-info {
|
3217 |
-
color: #fff;
|
3218 |
-
background-color: #5bc0de;
|
3219 |
-
border-color: #46b8da;
|
3220 |
-
}
|
3221 |
-
.btn-info:focus,
|
3222 |
-
.btn-info.focus {
|
3223 |
-
color: #fff;
|
3224 |
-
background-color: #31b0d5;
|
3225 |
-
border-color: #1b6d85;
|
3226 |
-
}
|
3227 |
-
.btn-info:hover {
|
3228 |
-
color: #fff;
|
3229 |
-
background-color: #31b0d5;
|
3230 |
-
border-color: #269abc;
|
3231 |
-
}
|
3232 |
-
.btn-info:active,
|
3233 |
-
.btn-info.active,
|
3234 |
-
.open > .dropdown-toggle.btn-info {
|
3235 |
-
color: #fff;
|
3236 |
-
background-color: #31b0d5;
|
3237 |
-
border-color: #269abc;
|
3238 |
-
}
|
3239 |
-
.btn-info:active:hover,
|
3240 |
-
.btn-info.active:hover,
|
3241 |
-
.open > .dropdown-toggle.btn-info:hover,
|
3242 |
-
.btn-info:active:focus,
|
3243 |
-
.btn-info.active:focus,
|
3244 |
-
.open > .dropdown-toggle.btn-info:focus,
|
3245 |
-
.btn-info:active.focus,
|
3246 |
-
.btn-info.active.focus,
|
3247 |
-
.open > .dropdown-toggle.btn-info.focus {
|
3248 |
-
color: #fff;
|
3249 |
-
background-color: #269abc;
|
3250 |
-
border-color: #1b6d85;
|
3251 |
-
}
|
3252 |
-
.btn-info:active,
|
3253 |
-
.btn-info.active,
|
3254 |
-
.open > .dropdown-toggle.btn-info {
|
3255 |
-
background-image: none;
|
3256 |
-
}
|
3257 |
-
.btn-info.disabled:hover,
|
3258 |
-
.btn-info[disabled]:hover,
|
3259 |
-
fieldset[disabled] .btn-info:hover,
|
3260 |
-
.btn-info.disabled:focus,
|
3261 |
-
.btn-info[disabled]:focus,
|
3262 |
-
fieldset[disabled] .btn-info:focus,
|
3263 |
-
.btn-info.disabled.focus,
|
3264 |
-
.btn-info[disabled].focus,
|
3265 |
-
fieldset[disabled] .btn-info.focus {
|
3266 |
-
background-color: #5bc0de;
|
3267 |
-
border-color: #46b8da;
|
3268 |
-
}
|
3269 |
-
.btn-info .badge {
|
3270 |
-
color: #5bc0de;
|
3271 |
-
background-color: #fff;
|
3272 |
-
}
|
3273 |
-
.btn-warning {
|
3274 |
-
color: #fff;
|
3275 |
-
background-color: #f0ad4e;
|
3276 |
-
border-color: #eea236;
|
3277 |
-
}
|
3278 |
-
.btn-warning:focus,
|
3279 |
-
.btn-warning.focus {
|
3280 |
-
color: #fff;
|
3281 |
-
background-color: #ec971f;
|
3282 |
-
border-color: #985f0d;
|
3283 |
-
}
|
3284 |
-
.btn-warning:hover {
|
3285 |
-
color: #fff;
|
3286 |
-
background-color: #ec971f;
|
3287 |
-
border-color: #d58512;
|
3288 |
-
}
|
3289 |
-
.btn-warning:active,
|
3290 |
-
.btn-warning.active,
|
3291 |
-
.open > .dropdown-toggle.btn-warning {
|
3292 |
-
color: #fff;
|
3293 |
-
background-color: #ec971f;
|
3294 |
-
border-color: #d58512;
|
3295 |
-
}
|
3296 |
-
.btn-warning:active:hover,
|
3297 |
-
.btn-warning.active:hover,
|
3298 |
-
.open > .dropdown-toggle.btn-warning:hover,
|
3299 |
-
.btn-warning:active:focus,
|
3300 |
-
.btn-warning.active:focus,
|
3301 |
-
.open > .dropdown-toggle.btn-warning:focus,
|
3302 |
-
.btn-warning:active.focus,
|
3303 |
-
.btn-warning.active.focus,
|
3304 |
-
.open > .dropdown-toggle.btn-warning.focus {
|
3305 |
-
color: #fff;
|
3306 |
-
background-color: #d58512;
|
3307 |
-
border-color: #985f0d;
|
3308 |
-
}
|
3309 |
-
.btn-warning:active,
|
3310 |
-
.btn-warning.active,
|
3311 |
-
.open > .dropdown-toggle.btn-warning {
|
3312 |
-
background-image: none;
|
3313 |
-
}
|
3314 |
-
.btn-warning.disabled:hover,
|
3315 |
-
.btn-warning[disabled]:hover,
|
3316 |
-
fieldset[disabled] .btn-warning:hover,
|
3317 |
-
.btn-warning.disabled:focus,
|
3318 |
-
.btn-warning[disabled]:focus,
|
3319 |
-
fieldset[disabled] .btn-warning:focus,
|
3320 |
-
.btn-warning.disabled.focus,
|
3321 |
-
.btn-warning[disabled].focus,
|
3322 |
-
fieldset[disabled] .btn-warning.focus {
|
3323 |
-
background-color: #f0ad4e;
|
3324 |
-
border-color: #eea236;
|
3325 |
-
}
|
3326 |
-
.btn-warning .badge {
|
3327 |
-
color: #f0ad4e;
|
3328 |
-
background-color: #fff;
|
3329 |
-
}
|
3330 |
-
.btn-danger {
|
3331 |
-
color: #fff;
|
3332 |
-
background-color: #d9534f;
|
3333 |
-
border-color: #d43f3a;
|
3334 |
-
}
|
3335 |
-
.btn-danger:focus,
|
3336 |
-
.btn-danger.focus {
|
3337 |
-
color: #fff;
|
3338 |
-
background-color: #c9302c;
|
3339 |
-
border-color: #ac2925;
|
3340 |
-
}
|
3341 |
-
.btn-danger:hover {
|
3342 |
-
color: #fff;
|
3343 |
-
background-color: #c9302c;
|
3344 |
-
border-color: #ac2925;
|
3345 |
-
}
|
3346 |
-
.btn-danger:active,
|
3347 |
-
.btn-danger.active,
|
3348 |
-
.open > .dropdown-toggle.btn-danger {
|
3349 |
-
color: #fff;
|
3350 |
-
background-color: #c9302c;
|
3351 |
-
border-color: #ac2925;
|
3352 |
-
}
|
3353 |
-
.btn-danger:active:hover,
|
3354 |
-
.btn-danger.active:hover,
|
3355 |
-
.open > .dropdown-toggle.btn-danger:hover,
|
3356 |
-
.btn-danger:active:focus,
|
3357 |
-
.btn-danger.active:focus,
|
3358 |
-
.open > .dropdown-toggle.btn-danger:focus,
|
3359 |
-
.btn-danger:active.focus,
|
3360 |
-
.btn-danger.active.focus,
|
3361 |
-
.open > .dropdown-toggle.btn-danger.focus {
|
3362 |
-
color: #fff;
|
3363 |
-
background-color: #ac2925;
|
3364 |
-
border-color: #761c19;
|
3365 |
-
}
|
3366 |
-
.btn-danger:active,
|
3367 |
-
.btn-danger.active,
|
3368 |
-
.open > .dropdown-toggle.btn-danger {
|
3369 |
-
background-image: none;
|
3370 |
-
}
|
3371 |
-
.btn-danger.disabled:hover,
|
3372 |
-
.btn-danger[disabled]:hover,
|
3373 |
-
fieldset[disabled] .btn-danger:hover,
|
3374 |
-
.btn-danger.disabled:focus,
|
3375 |
-
.btn-danger[disabled]:focus,
|
3376 |
-
fieldset[disabled] .btn-danger:focus,
|
3377 |
-
.btn-danger.disabled.focus,
|
3378 |
-
.btn-danger[disabled].focus,
|
3379 |
-
fieldset[disabled] .btn-danger.focus {
|
3380 |
-
background-color: #d9534f;
|
3381 |
-
border-color: #d43f3a;
|
3382 |
-
}
|
3383 |
-
.btn-danger .badge {
|
3384 |
-
color: #d9534f;
|
3385 |
-
background-color: #fff;
|
3386 |
-
}
|
3387 |
-
.btn-link {
|
3388 |
-
font-weight: normal;
|
3389 |
-
color: #337ab7;
|
3390 |
-
border-radius: 0;
|
3391 |
-
}
|
3392 |
-
.btn-link,
|
3393 |
-
.btn-link:active,
|
3394 |
-
.btn-link.active,
|
3395 |
-
.btn-link[disabled],
|
3396 |
-
fieldset[disabled] .btn-link {
|
3397 |
-
background-color: transparent;
|
3398 |
-
-webkit-box-shadow: none;
|
3399 |
-
box-shadow: none;
|
3400 |
-
}
|
3401 |
-
.btn-link,
|
3402 |
-
.btn-link:hover,
|
3403 |
-
.btn-link:focus,
|
3404 |
-
.btn-link:active {
|
3405 |
-
border-color: transparent;
|
3406 |
-
}
|
3407 |
-
.btn-link:hover,
|
3408 |
-
.btn-link:focus {
|
3409 |
-
color: #23527c;
|
3410 |
-
text-decoration: underline;
|
3411 |
-
background-color: transparent;
|
3412 |
-
}
|
3413 |
-
.btn-link[disabled]:hover,
|
3414 |
-
fieldset[disabled] .btn-link:hover,
|
3415 |
-
.btn-link[disabled]:focus,
|
3416 |
-
fieldset[disabled] .btn-link:focus {
|
3417 |
-
color: #777;
|
3418 |
-
text-decoration: none;
|
3419 |
-
}
|
3420 |
-
.btn-lg,
|
3421 |
-
.btn-group-lg > .btn {
|
3422 |
-
font-size: 16px;
|
3423 |
-
line-height: 1.1333333;
|
3424 |
-
border-radius: 6px;
|
3425 |
-
}
|
3426 |
-
.btn-sm,
|
3427 |
-
.btn-group-sm > .btn {
|
3428 |
-
padding: 5px 10px;
|
3429 |
-
font-size: 12px;
|
3430 |
-
line-height: 1.5;
|
3431 |
-
border-radius: 3px;
|
3432 |
-
}
|
3433 |
-
.btn-xs,
|
3434 |
-
.btn-group-xs > .btn {
|
3435 |
-
padding: 2px 4px;
|
3436 |
-
font-size: 12px;
|
3437 |
-
line-height: 1.4;
|
3438 |
-
border-radius: 3px;
|
3439 |
-
}
|
3440 |
-
.btn-block {
|
3441 |
-
display: block;
|
3442 |
-
width: 100%;
|
3443 |
-
}
|
3444 |
-
.btn-block + .btn-block {
|
3445 |
-
margin-top: 5px;
|
3446 |
-
}
|
3447 |
-
input[type="submit"].btn-block,
|
3448 |
-
input[type="reset"].btn-block,
|
3449 |
-
input[type="button"].btn-block {
|
3450 |
-
width: 100%;
|
3451 |
-
}
|
3452 |
-
.fade {
|
3453 |
-
opacity: 0;
|
3454 |
-
-webkit-transition: opacity .15s linear;
|
3455 |
-
-o-transition: opacity .15s linear;
|
3456 |
-
transition: opacity .15s linear;
|
3457 |
-
}
|
3458 |
-
.fade.in {
|
3459 |
-
opacity: 1;
|
3460 |
-
}
|
3461 |
-
.caret {
|
3462 |
-
display: inline-block;
|
3463 |
-
width: 0;
|
3464 |
-
height: 0;
|
3465 |
-
margin-left: 2px;
|
3466 |
-
vertical-align: middle;
|
3467 |
-
border-top: 4px dashed;
|
3468 |
-
border-top: 4px solid \9;
|
3469 |
-
border-right: 4px solid transparent;
|
3470 |
-
border-left: 4px solid transparent;
|
3471 |
-
}
|
3472 |
-
.dropup,
|
3473 |
-
.dropdown {
|
3474 |
-
position: relative;
|
3475 |
-
}
|
3476 |
-
.dropdown-toggle:focus {
|
3477 |
-
outline: 0;
|
3478 |
-
}
|
3479 |
-
.dropdown-menu {
|
3480 |
-
position: absolute;
|
3481 |
-
top: 100%;
|
3482 |
-
left: 0;
|
3483 |
-
z-index: 1000;
|
3484 |
-
display: none;
|
3485 |
-
float: left;
|
3486 |
-
min-width: 160px;
|
3487 |
-
padding: 5px 0;
|
3488 |
-
margin: 2px 0 0;
|
3489 |
-
font-size: 14px;
|
3490 |
-
text-align: left;
|
3491 |
-
list-style: none;
|
3492 |
-
background-color: #fff;
|
3493 |
-
-webkit-background-clip: padding-box;
|
3494 |
-
background-clip: padding-box;
|
3495 |
-
border: 1px solid #ccc;
|
3496 |
-
border: 1px solid rgba(0, 0, 0, .15);
|
3497 |
-
border-radius: 4px;
|
3498 |
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3499 |
-
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3500 |
-
}
|
3501 |
-
.dropdown-menu.pull-right {
|
3502 |
-
right: 0;
|
3503 |
-
left: auto;
|
3504 |
-
}
|
3505 |
-
.dropdown-menu .divider {
|
3506 |
-
height: 1px;
|
3507 |
-
margin: 9px 0;
|
3508 |
-
overflow: hidden;
|
3509 |
-
background-color: #e5e5e5;
|
3510 |
-
}
|
3511 |
-
.dropdown-menu > li > a {
|
3512 |
-
display: block;
|
3513 |
-
padding: 3px 20px;
|
3514 |
-
clear: both;
|
3515 |
-
font-weight: normal;
|
3516 |
-
line-height: 1.42857143;
|
3517 |
-
color: #333;
|
3518 |
-
white-space: nowrap;
|
3519 |
-
}
|
3520 |
-
.dropdown-menu > li > a:hover,
|
3521 |
-
.dropdown-menu > li > a:focus {
|
3522 |
-
color: #262626;
|
3523 |
-
text-decoration: none;
|
3524 |
-
background-color: #f5f5f5;
|
3525 |
-
}
|
3526 |
-
.dropdown-menu > .active > a,
|
3527 |
-
.dropdown-menu > .active > a:hover,
|
3528 |
-
.dropdown-menu > .active > a:focus {
|
3529 |
-
color: #fff;
|
3530 |
-
text-decoration: none;
|
3531 |
-
background-color: #337ab7;
|
3532 |
-
outline: 0;
|
3533 |
-
}
|
3534 |
-
.dropdown-menu > .disabled > a,
|
3535 |
-
.dropdown-menu > .disabled > a:hover,
|
3536 |
-
.dropdown-menu > .disabled > a:focus {
|
3537 |
-
color: #777;
|
3538 |
-
}
|
3539 |
-
.dropdown-menu > .disabled > a:hover,
|
3540 |
-
.dropdown-menu > .disabled > a:focus {
|
3541 |
-
text-decoration: none;
|
3542 |
-
cursor: not-allowed;
|
3543 |
-
background-color: transparent;
|
3544 |
-
background-image: none;
|
3545 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
3546 |
-
}
|
3547 |
-
.open > .dropdown-menu {
|
3548 |
-
display: block;
|
3549 |
-
}
|
3550 |
-
.open > a {
|
3551 |
-
outline: 0;
|
3552 |
-
}
|
3553 |
-
.dropdown-menu-right {
|
3554 |
-
right: 0;
|
3555 |
-
left: auto;
|
3556 |
-
}
|
3557 |
-
.dropdown-menu-left {
|
3558 |
-
right: auto;
|
3559 |
-
left: 0;
|
3560 |
-
}
|
3561 |
-
.dropdown-header {
|
3562 |
-
display: block;
|
3563 |
-
padding: 3px 20px;
|
3564 |
-
font-size: 12px;
|
3565 |
-
line-height: 1.42857143;
|
3566 |
-
color: #777;
|
3567 |
-
white-space: nowrap;
|
3568 |
-
}
|
3569 |
-
.dropdown-backdrop {
|
3570 |
-
position: fixed;
|
3571 |
-
top: 0;
|
3572 |
-
right: 0;
|
3573 |
-
bottom: 0;
|
3574 |
-
left: 0;
|
3575 |
-
z-index: 990;
|
3576 |
-
}
|
3577 |
-
.pull-right > .dropdown-menu {
|
3578 |
-
right: 0;
|
3579 |
-
left: auto;
|
3580 |
-
}
|
3581 |
-
.dropup .caret,
|
3582 |
-
.navbar-fixed-bottom .dropdown .caret {
|
3583 |
-
content: "";
|
3584 |
-
border-top: 0;
|
3585 |
-
border-bottom: 4px dashed;
|
3586 |
-
border-bottom: 4px solid \9;
|
3587 |
-
}
|
3588 |
-
.dropup .dropdown-menu,
|
3589 |
-
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
3590 |
-
top: auto;
|
3591 |
-
bottom: 100%;
|
3592 |
-
margin-bottom: 2px;
|
3593 |
-
}
|
3594 |
-
@media (min-width: 768px) {
|
3595 |
-
.navbar-right .dropdown-menu {
|
3596 |
-
right: 0;
|
3597 |
-
left: auto;
|
3598 |
-
}
|
3599 |
-
.navbar-right .dropdown-menu-left {
|
3600 |
-
right: auto;
|
3601 |
-
left: 0;
|
3602 |
-
}
|
3603 |
-
}
|
3604 |
-
.btn-group,
|
3605 |
-
.btn-group-vertical {
|
3606 |
-
position: relative;
|
3607 |
-
display: inline-block;
|
3608 |
-
vertical-align: middle;
|
3609 |
-
}
|
3610 |
-
.btn-group > .btn,
|
3611 |
-
.btn-group-vertical > .btn {
|
3612 |
-
position: relative;
|
3613 |
-
float: left;
|
3614 |
-
}
|
3615 |
-
.btn-group > .btn:hover,
|
3616 |
-
.btn-group-vertical > .btn:hover,
|
3617 |
-
.btn-group > .btn:focus,
|
3618 |
-
.btn-group-vertical > .btn:focus,
|
3619 |
-
.btn-group > .btn:active,
|
3620 |
-
.btn-group-vertical > .btn:active,
|
3621 |
-
.btn-group > .btn.active,
|
3622 |
-
.btn-group-vertical > .btn.active {
|
3623 |
-
z-index: 2;
|
3624 |
-
}
|
3625 |
-
.btn-group .btn + .btn,
|
3626 |
-
.btn-group .btn + .btn-group,
|
3627 |
-
.btn-group .btn-group + .btn,
|
3628 |
-
.btn-group .btn-group + .btn-group {
|
3629 |
-
margin-left: -1px;
|
3630 |
-
}
|
3631 |
-
.btn-toolbar {
|
3632 |
-
margin-left: -5px;
|
3633 |
-
}
|
3634 |
-
.btn-toolbar .btn,
|
3635 |
-
.btn-toolbar .btn-group,
|
3636 |
-
.btn-toolbar .input-group {
|
3637 |
-
float: left;
|
3638 |
-
}
|
3639 |
-
.btn-toolbar > .btn,
|
3640 |
-
.btn-toolbar > .btn-group,
|
3641 |
-
.btn-toolbar > .input-group {
|
3642 |
-
margin-left: 5px;
|
3643 |
-
}
|
3644 |
-
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
3645 |
-
border-radius: 0;
|
3646 |
-
}
|
3647 |
-
.btn-group > .btn:first-child {
|
3648 |
-
margin-left: 0;
|
3649 |
-
}
|
3650 |
-
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
3651 |
-
border-top-right-radius: 0;
|
3652 |
-
border-bottom-right-radius: 0;
|
3653 |
-
}
|
3654 |
-
.btn-group > .btn:last-child:not(:first-child),
|
3655 |
-
.btn-group > .dropdown-toggle:not(:first-child) {
|
3656 |
-
border-top-left-radius: 0;
|
3657 |
-
border-bottom-left-radius: 0;
|
3658 |
-
}
|
3659 |
-
.btn-group > .btn-group {
|
3660 |
-
float: left;
|
3661 |
-
}
|
3662 |
-
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3663 |
-
border-radius: 0;
|
3664 |
-
}
|
3665 |
-
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3666 |
-
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3667 |
-
border-top-right-radius: 0;
|
3668 |
-
border-bottom-right-radius: 0;
|
3669 |
-
}
|
3670 |
-
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3671 |
-
border-top-left-radius: 0;
|
3672 |
-
border-bottom-left-radius: 0;
|
3673 |
-
}
|
3674 |
-
.btn-group .dropdown-toggle:active,
|
3675 |
-
.btn-group.open .dropdown-toggle {
|
3676 |
-
outline: 0;
|
3677 |
-
}
|
3678 |
-
.btn-group > .btn + .dropdown-toggle {
|
3679 |
-
padding-right: 8px;
|
3680 |
-
padding-left: 8px;
|
3681 |
-
}
|
3682 |
-
.btn-group > .btn-lg + .dropdown-toggle {
|
3683 |
-
padding-right: 12px;
|
3684 |
-
padding-left: 12px;
|
3685 |
-
}
|
3686 |
-
.btn-group.open .dropdown-toggle {
|
3687 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3688 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3689 |
-
}
|
3690 |
-
.btn-group.open .dropdown-toggle.btn-link {
|
3691 |
-
-webkit-box-shadow: none;
|
3692 |
-
box-shadow: none;
|
3693 |
-
}
|
3694 |
-
.btn .caret {
|
3695 |
-
margin-left: 0;
|
3696 |
-
}
|
3697 |
-
.btn-lg .caret {
|
3698 |
-
border-width: 5px 5px 0;
|
3699 |
-
border-bottom-width: 0;
|
3700 |
-
}
|
3701 |
-
.dropup .btn-lg .caret {
|
3702 |
-
border-width: 0 5px 5px;
|
3703 |
-
}
|
3704 |
-
.btn-group-vertical > .btn,
|
3705 |
-
.btn-group-vertical > .btn-group,
|
3706 |
-
.btn-group-vertical > .btn-group > .btn {
|
3707 |
-
display: block;
|
3708 |
-
float: none;
|
3709 |
-
width: 100%;
|
3710 |
-
max-width: 100%;
|
3711 |
-
}
|
3712 |
-
.btn-group-vertical > .btn-group > .btn {
|
3713 |
-
float: none;
|
3714 |
-
}
|
3715 |
-
.btn-group-vertical > .btn + .btn,
|
3716 |
-
.btn-group-vertical > .btn + .btn-group,
|
3717 |
-
.btn-group-vertical > .btn-group + .btn,
|
3718 |
-
.btn-group-vertical > .btn-group + .btn-group {
|
3719 |
-
margin-top: -1px;
|
3720 |
-
margin-left: 0;
|
3721 |
-
}
|
3722 |
-
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
3723 |
-
border-radius: 0;
|
3724 |
-
}
|
3725 |
-
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3726 |
-
border-top-left-radius: 4px;
|
3727 |
-
border-top-right-radius: 4px;
|
3728 |
-
border-bottom-right-radius: 0;
|
3729 |
-
border-bottom-left-radius: 0;
|
3730 |
-
}
|
3731 |
-
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3732 |
-
border-top-left-radius: 0;
|
3733 |
-
border-top-right-radius: 0;
|
3734 |
-
border-bottom-right-radius: 4px;
|
3735 |
-
border-bottom-left-radius: 4px;
|
3736 |
-
}
|
3737 |
-
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3738 |
-
border-radius: 0;
|
3739 |
-
}
|
3740 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3741 |
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3742 |
-
border-bottom-right-radius: 0;
|
3743 |
-
border-bottom-left-radius: 0;
|
3744 |
-
}
|
3745 |
-
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3746 |
-
border-top-left-radius: 0;
|
3747 |
-
border-top-right-radius: 0;
|
3748 |
-
}
|
3749 |
-
.btn-group-justified {
|
3750 |
-
display: table;
|
3751 |
-
width: 100%;
|
3752 |
-
table-layout: fixed;
|
3753 |
-
border-collapse: separate;
|
3754 |
-
}
|
3755 |
-
.btn-group-justified > .btn,
|
3756 |
-
.btn-group-justified > .btn-group {
|
3757 |
-
display: table-cell;
|
3758 |
-
float: none;
|
3759 |
-
width: 1%;
|
3760 |
-
}
|
3761 |
-
.btn-group-justified > .btn-group .btn {
|
3762 |
-
width: 100%;
|
3763 |
-
}
|
3764 |
-
.btn-group-justified > .btn-group .dropdown-menu {
|
3765 |
-
left: auto;
|
3766 |
-
}
|
3767 |
-
[data-toggle="buttons"] > .btn input[type="radio"],
|
3768 |
-
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
3769 |
-
[data-toggle="buttons"] > .btn input[type="checkbox"],
|
3770 |
-
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
3771 |
-
position: absolute;
|
3772 |
-
clip: rect(0, 0, 0, 0);
|
3773 |
-
pointer-events: none;
|
3774 |
-
}
|
3775 |
-
.input-group {
|
3776 |
-
position: relative;
|
3777 |
-
display: table;
|
3778 |
-
border-collapse: separate;
|
3779 |
-
direction: ltr !important;
|
3780 |
-
}
|
3781 |
-
.input-group[class*="col-"] {
|
3782 |
-
float: none;
|
3783 |
-
padding-right: 0;
|
3784 |
-
padding-left: 0;
|
3785 |
-
}
|
3786 |
-
.input-group .form-control {
|
3787 |
-
position: relative;
|
3788 |
-
z-index: 2;
|
3789 |
-
float: left;
|
3790 |
-
width: 100%;
|
3791 |
-
margin-bottom: 0;
|
3792 |
-
}
|
3793 |
-
.input-group .form-control:focus {
|
3794 |
-
z-index: 3;
|
3795 |
-
}
|
3796 |
-
.input-group-lg > .form-control,
|
3797 |
-
.input-group-lg > .input-group-addon,
|
3798 |
-
.input-group-lg > .input-group-btn > .btn {
|
3799 |
-
height: 46px;
|
3800 |
-
padding: 10px 16px;
|
3801 |
-
font-size: 18px;
|
3802 |
-
line-height: 1.3333333;
|
3803 |
-
border-radius: 6px;
|
3804 |
-
}
|
3805 |
-
select.input-group-lg > .form-control,
|
3806 |
-
select.input-group-lg > .input-group-addon,
|
3807 |
-
select.input-group-lg > .input-group-btn > .btn {
|
3808 |
-
height: 46px;
|
3809 |
-
line-height: 46px;
|
3810 |
-
}
|
3811 |
-
textarea.input-group-lg > .form-control,
|
3812 |
-
textarea.input-group-lg > .input-group-addon,
|
3813 |
-
textarea.input-group-lg > .input-group-btn > .btn,
|
3814 |
-
select[multiple].input-group-lg > .form-control,
|
3815 |
-
select[multiple].input-group-lg > .input-group-addon,
|
3816 |
-
select[multiple].input-group-lg > .input-group-btn > .btn {
|
3817 |
-
height: auto;
|
3818 |
-
}
|
3819 |
-
.input-group-sm > .form-control,
|
3820 |
-
.input-group-sm > .input-group-addon,
|
3821 |
-
.input-group-sm > .input-group-btn > .btn {
|
3822 |
-
height: 30px;
|
3823 |
-
padding: 5px 10px;
|
3824 |
-
font-size: 12px;
|
3825 |
-
line-height: 1.5;
|
3826 |
-
border-radius: 3px;
|
3827 |
-
}
|
3828 |
-
select.input-group-sm > .form-control,
|
3829 |
-
select.input-group-sm > .input-group-addon,
|
3830 |
-
select.input-group-sm > .input-group-btn > .btn {
|
3831 |
-
height: 30px;
|
3832 |
-
line-height: 30px;
|
3833 |
-
}
|
3834 |
-
textarea.input-group-sm > .form-control,
|
3835 |
-
textarea.input-group-sm > .input-group-addon,
|
3836 |
-
textarea.input-group-sm > .input-group-btn > .btn,
|
3837 |
-
select[multiple].input-group-sm > .form-control,
|
3838 |
-
select[multiple].input-group-sm > .input-group-addon,
|
3839 |
-
select[multiple].input-group-sm > .input-group-btn > .btn {
|
3840 |
-
height: auto;
|
3841 |
-
}
|
3842 |
-
.input-group-addon,
|
3843 |
-
.input-group-btn,
|
3844 |
-
.input-group .form-control {
|
3845 |
-
display: table-cell;
|
3846 |
-
}
|
3847 |
-
.input-group-addon:not(:first-child):not(:last-child),
|
3848 |
-
.input-group-btn:not(:first-child):not(:last-child),
|
3849 |
-
.input-group .form-control:not(:first-child):not(:last-child) {
|
3850 |
-
border-radius: 0;
|
3851 |
-
}
|
3852 |
-
.input-group-addon,
|
3853 |
-
.input-group-btn {
|
3854 |
-
width: 1%;
|
3855 |
-
white-space: nowrap;
|
3856 |
-
vertical-align: middle;
|
3857 |
-
}
|
3858 |
-
.input-group-addon {
|
3859 |
-
padding: 6px 12px;
|
3860 |
-
font-size: 14px;
|
3861 |
-
font-weight: normal;
|
3862 |
-
line-height: 1;
|
3863 |
-
color: #555;
|
3864 |
-
text-align: center;
|
3865 |
-
background-color: #eee;
|
3866 |
-
border: 1px solid #ccc;
|
3867 |
-
border-radius: 4px;
|
3868 |
-
}
|
3869 |
-
.input-group-addon.input-sm {
|
3870 |
-
padding: 5px 10px;
|
3871 |
-
font-size: 12px;
|
3872 |
-
border-radius: 3px;
|
3873 |
-
}
|
3874 |
-
.input-group-addon.input-lg {
|
3875 |
-
padding: 10px 16px;
|
3876 |
-
font-size: 18px;
|
3877 |
-
border-radius: 6px;
|
3878 |
-
}
|
3879 |
-
.input-group-addon input[type="radio"],
|
3880 |
-
.input-group-addon input[type="checkbox"] {
|
3881 |
-
margin-top: 0;
|
3882 |
-
}
|
3883 |
-
.input-group .form-control:first-child,
|
3884 |
-
.input-group-addon:first-child,
|
3885 |
-
.input-group-btn:first-child > .btn,
|
3886 |
-
.input-group-btn:first-child > .btn-group > .btn,
|
3887 |
-
.input-group-btn:first-child > .dropdown-toggle,
|
3888 |
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
3889 |
-
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
3890 |
-
border-top-right-radius: 0;
|
3891 |
-
border-bottom-right-radius: 0;
|
3892 |
-
}
|
3893 |
-
.input-group-addon:first-child {
|
3894 |
-
border-right: 0;
|
3895 |
-
}
|
3896 |
-
.input-group .form-control:last-child,
|
3897 |
-
.input-group-addon:last-child,
|
3898 |
-
.input-group-btn:last-child > .btn,
|
3899 |
-
.input-group-btn:last-child > .btn-group > .btn,
|
3900 |
-
.input-group-btn:last-child > .dropdown-toggle,
|
3901 |
-
.input-group-btn:first-child > .btn:not(:first-child),
|
3902 |
-
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
3903 |
-
border-top-left-radius: 0;
|
3904 |
-
border-bottom-left-radius: 0;
|
3905 |
-
}
|
3906 |
-
.input-group-addon:last-child {
|
3907 |
-
border-left: 0;
|
3908 |
-
}
|
3909 |
-
.input-group-btn {
|
3910 |
-
position: relative;
|
3911 |
-
font-size: 0;
|
3912 |
-
white-space: nowrap;
|
3913 |
-
}
|
3914 |
-
.input-group-btn > .btn {
|
3915 |
-
position: relative;
|
3916 |
-
}
|
3917 |
-
.input-group-btn > .btn + .btn {
|
3918 |
-
margin-left: -1px;
|
3919 |
-
}
|
3920 |
-
.input-group-btn > .btn:hover,
|
3921 |
-
.input-group-btn > .btn:focus,
|
3922 |
-
.input-group-btn > .btn:active {
|
3923 |
-
z-index: 2;
|
3924 |
-
}
|
3925 |
-
.input-group-btn:first-child > .btn,
|
3926 |
-
.input-group-btn:first-child > .btn-group {
|
3927 |
-
margin-right: -1px;
|
3928 |
-
}
|
3929 |
-
.input-group-btn:last-child > .btn,
|
3930 |
-
.input-group-btn:last-child > .btn-group {
|
3931 |
-
z-index: 2;
|
3932 |
-
margin-left: -1px;
|
3933 |
-
}
|
3934 |
-
.nav {
|
3935 |
-
padding-left: 0;
|
3936 |
-
margin-bottom: 0;
|
3937 |
-
list-style: none;
|
3938 |
-
}
|
3939 |
-
.nav > li {
|
3940 |
-
position: relative;
|
3941 |
-
display: block;
|
3942 |
-
}
|
3943 |
-
.nav > li > a {
|
3944 |
-
position: relative;
|
3945 |
-
display: block;
|
3946 |
-
padding: 10px 15px;
|
3947 |
-
}
|
3948 |
-
.nav > li > a:hover,
|
3949 |
-
.nav > li > a:focus {
|
3950 |
-
text-decoration: none;
|
3951 |
-
background-color: #eee;
|
3952 |
-
}
|
3953 |
-
.nav > li.disabled > a {
|
3954 |
-
color: #777;
|
3955 |
-
}
|
3956 |
-
.nav > li.disabled > a:hover,
|
3957 |
-
.nav > li.disabled > a:focus {
|
3958 |
-
color: #777;
|
3959 |
-
text-decoration: none;
|
3960 |
-
cursor: not-allowed;
|
3961 |
-
background-color: transparent;
|
3962 |
-
}
|
3963 |
-
.nav .open > a,
|
3964 |
-
.nav .open > a:hover,
|
3965 |
-
.nav .open > a:focus {
|
3966 |
-
background-color: #eee;
|
3967 |
-
border-color: #337ab7;
|
3968 |
-
}
|
3969 |
-
.nav .nav-divider {
|
3970 |
-
height: 1px;
|
3971 |
-
margin: 9px 0;
|
3972 |
-
overflow: hidden;
|
3973 |
-
background-color: #e5e5e5;
|
3974 |
-
}
|
3975 |
-
.nav > li > a > img {
|
3976 |
-
max-width: none;
|
3977 |
-
}
|
3978 |
-
.nav-tabs {
|
3979 |
-
border-bottom: 1px solid #ddd;
|
3980 |
-
}
|
3981 |
-
.nav-tabs > li {
|
3982 |
-
float: left;
|
3983 |
-
margin-bottom: -1px;
|
3984 |
-
}
|
3985 |
-
.nav-tabs > li > a {
|
3986 |
-
margin-right: 2px;
|
3987 |
-
line-height: 1.42857143;
|
3988 |
-
border: 1px solid transparent;
|
3989 |
-
border-radius: 4px 4px 0 0;
|
3990 |
-
}
|
3991 |
-
.nav-tabs > li > a:hover {
|
3992 |
-
border-color: #eee #eee #ddd;
|
3993 |
-
}
|
3994 |
-
.nav-tabs > li.active > a,
|
3995 |
-
.nav-tabs > li.active > a:hover,
|
3996 |
-
.nav-tabs > li.active > a:focus {
|
3997 |
-
color: #555;
|
3998 |
-
cursor: default;
|
3999 |
-
background-color: #fff;
|
4000 |
-
border: 1px solid #ddd;
|
4001 |
-
border-bottom-color: transparent;
|
4002 |
-
}
|
4003 |
-
.nav-tabs.nav-justified {
|
4004 |
-
width: 100%;
|
4005 |
-
border-bottom: 0;
|
4006 |
-
}
|
4007 |
-
.nav-tabs.nav-justified > li {
|
4008 |
-
float: none;
|
4009 |
-
}
|
4010 |
-
.nav-tabs.nav-justified > li > a {
|
4011 |
-
margin-bottom: 5px;
|
4012 |
-
text-align: center;
|
4013 |
-
}
|
4014 |
-
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
4015 |
-
top: auto;
|
4016 |
-
left: auto;
|
4017 |
-
}
|
4018 |
-
@media (min-width: 768px) {
|
4019 |
-
.nav-tabs.nav-justified > li {
|
4020 |
-
display: table-cell;
|
4021 |
-
width: 1%;
|
4022 |
-
}
|
4023 |
-
.nav-tabs.nav-justified > li > a {
|
4024 |
-
margin-bottom: 0;
|
4025 |
-
}
|
4026 |
-
}
|
4027 |
-
.nav-tabs.nav-justified > li > a {
|
4028 |
-
margin-right: 0;
|
4029 |
-
border-radius: 4px;
|
4030 |
-
}
|
4031 |
-
.nav-tabs.nav-justified > .active > a,
|
4032 |
-
.nav-tabs.nav-justified > .active > a:hover,
|
4033 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
4034 |
-
border: 1px solid #ddd;
|
4035 |
-
}
|
4036 |
-
@media (min-width: 768px) {
|
4037 |
-
.nav-tabs.nav-justified > li > a {
|
4038 |
-
border-bottom: 1px solid #ddd;
|
4039 |
-
border-radius: 4px 4px 0 0;
|
4040 |
-
}
|
4041 |
-
.nav-tabs.nav-justified > .active > a,
|
4042 |
-
.nav-tabs.nav-justified > .active > a:hover,
|
4043 |
-
.nav-tabs.nav-justified > .active > a:focus {
|
4044 |
-
border-bottom-color: #fff;
|
4045 |
-
}
|
4046 |
-
}
|
4047 |
-
.nav-pills > li {
|
4048 |
-
float: left;
|
4049 |
-
}
|
4050 |
-
.nav-pills > li > a {
|
4051 |
-
border-radius: 4px;
|
4052 |
-
}
|
4053 |
-
.nav-pills > li + li {
|
4054 |
-
margin-left: 2px;
|
4055 |
-
}
|
4056 |
-
.nav-pills > li.active > a,
|
4057 |
-
.nav-pills > li.active > a:hover,
|
4058 |
-
.nav-pills > li.active > a:focus {
|
4059 |
-
color: #fff;
|
4060 |
-
background-color: #337ab7;
|
4061 |
-
}
|
4062 |
-
.nav-stacked > li {
|
4063 |
-
float: none;
|
4064 |
-
}
|
4065 |
-
.nav-stacked > li + li {
|
4066 |
-
margin-top: 2px;
|
4067 |
-
margin-left: 0;
|
4068 |
-
}
|
4069 |
-
.nav-justified {
|
4070 |
-
width: 100%;
|
4071 |
-
}
|
4072 |
-
.nav-justified > li {
|
4073 |
-
float: none;
|
4074 |
-
}
|
4075 |
-
.nav-justified > li > a {
|
4076 |
-
margin-bottom: 5px;
|
4077 |
-
text-align: center;
|
4078 |
-
}
|
4079 |
-
.nav-justified > .dropdown .dropdown-menu {
|
4080 |
-
top: auto;
|
4081 |
-
left: auto;
|
4082 |
-
}
|
4083 |
-
@media (min-width: 768px) {
|
4084 |
-
.nav-justified > li {
|
4085 |
-
display: table-cell;
|
4086 |
-
width: 1%;
|
4087 |
-
}
|
4088 |
-
.nav-justified > li > a {
|
4089 |
-
margin-bottom: 0;
|
4090 |
-
}
|
4091 |
-
}
|
4092 |
-
.nav-tabs-justified {
|
4093 |
-
border-bottom: 0;
|
4094 |
-
}
|
4095 |
-
.nav-tabs-justified > li > a {
|
4096 |
-
margin-right: 0;
|
4097 |
-
border-radius: 4px;
|
4098 |
-
}
|
4099 |
-
.nav-tabs-justified > .active > a,
|
4100 |
-
.nav-tabs-justified > .active > a:hover,
|
4101 |
-
.nav-tabs-justified > .active > a:focus {
|
4102 |
-
border: 1px solid #ddd;
|
4103 |
-
}
|
4104 |
-
@media (min-width: 768px) {
|
4105 |
-
.nav-tabs-justified > li > a {
|
4106 |
-
border-bottom: 1px solid #ddd;
|
4107 |
-
border-radius: 4px 4px 0 0;
|
4108 |
-
}
|
4109 |
-
.nav-tabs-justified > .active > a,
|
4110 |
-
.nav-tabs-justified > .active > a:hover,
|
4111 |
-
.nav-tabs-justified > .active > a:focus {
|
4112 |
-
border-bottom-color: #fff;
|
4113 |
-
}
|
4114 |
-
}
|
4115 |
-
.tab-content > .tab-pane {
|
4116 |
-
display: none;
|
4117 |
-
}
|
4118 |
-
.tab-content > .active {
|
4119 |
-
display: block;
|
4120 |
-
}
|
4121 |
-
.nav-tabs .dropdown-menu {
|
4122 |
-
margin-top: -1px;
|
4123 |
-
border-top-left-radius: 0;
|
4124 |
-
border-top-right-radius: 0;
|
4125 |
-
}
|
4126 |
-
.navbar {
|
4127 |
-
position: relative;
|
4128 |
-
min-height: 50px;
|
4129 |
-
margin-bottom: 20px;
|
4130 |
-
border: 1px solid transparent;
|
4131 |
-
}
|
4132 |
-
@media (min-width: 768px) {
|
4133 |
-
.navbar {
|
4134 |
-
border-radius: 4px;
|
4135 |
-
}
|
4136 |
-
}
|
4137 |
-
@media (min-width: 768px) {
|
4138 |
-
.navbar-header {
|
4139 |
-
float: left;
|
4140 |
-
}
|
4141 |
-
}
|
4142 |
-
.navbar-collapse {
|
4143 |
-
padding-right: 15px;
|
4144 |
-
padding-left: 15px;
|
4145 |
-
overflow-x: visible;
|
4146 |
-
-webkit-overflow-scrolling: touch;
|
4147 |
-
border-top: 1px solid transparent;
|
4148 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4149 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4150 |
-
}
|
4151 |
-
.navbar-collapse.in {
|
4152 |
-
overflow-y: auto;
|
4153 |
-
}
|
4154 |
-
@media (min-width: 768px) {
|
4155 |
-
.navbar-collapse {
|
4156 |
-
width: auto;
|
4157 |
-
border-top: 0;
|
4158 |
-
-webkit-box-shadow: none;
|
4159 |
-
box-shadow: none;
|
4160 |
-
}
|
4161 |
-
.navbar-collapse.collapse {
|
4162 |
-
display: block !important;
|
4163 |
-
height: auto !important;
|
4164 |
-
padding-bottom: 0;
|
4165 |
-
overflow: visible !important;
|
4166 |
-
}
|
4167 |
-
.navbar-collapse.in {
|
4168 |
-
overflow-y: visible;
|
4169 |
-
}
|
4170 |
-
.navbar-fixed-top .navbar-collapse,
|
4171 |
-
.navbar-static-top .navbar-collapse,
|
4172 |
-
.navbar-fixed-bottom .navbar-collapse {
|
4173 |
-
padding-right: 0;
|
4174 |
-
padding-left: 0;
|
4175 |
-
}
|
4176 |
-
}
|
4177 |
-
.navbar-fixed-top .navbar-collapse,
|
4178 |
-
.navbar-fixed-bottom .navbar-collapse {
|
4179 |
-
max-height: 340px;
|
4180 |
-
}
|
4181 |
-
@media (max-device-width: 480px) and (orientation: landscape) {
|
4182 |
-
.navbar-fixed-top .navbar-collapse,
|
4183 |
-
.navbar-fixed-bottom .navbar-collapse {
|
4184 |
-
max-height: 200px;
|
4185 |
-
}
|
4186 |
-
}
|
4187 |
-
.container > .navbar-header,
|
4188 |
-
.container-fluid > .navbar-header,
|
4189 |
-
.container > .navbar-collapse,
|
4190 |
-
.container-fluid > .navbar-collapse {
|
4191 |
-
margin-right: -15px;
|
4192 |
-
margin-left: -15px;
|
4193 |
-
}
|
4194 |
-
@media (min-width: 768px) {
|
4195 |
-
.container > .navbar-header,
|
4196 |
-
.container-fluid > .navbar-header,
|
4197 |
-
.container > .navbar-collapse,
|
4198 |
-
.container-fluid > .navbar-collapse {
|
4199 |
-
margin-right: 0;
|
4200 |
-
margin-left: 0;
|
4201 |
-
}
|
4202 |
-
}
|
4203 |
-
.navbar-static-top {
|
4204 |
-
z-index: 1000;
|
4205 |
-
border-width: 0 0 1px;
|
4206 |
-
}
|
4207 |
-
@media (min-width: 768px) {
|
4208 |
-
.navbar-static-top {
|
4209 |
-
border-radius: 0;
|
4210 |
-
}
|
4211 |
-
}
|
4212 |
-
.navbar-fixed-top,
|
4213 |
-
.navbar-fixed-bottom {
|
4214 |
-
position: fixed;
|
4215 |
-
right: 0;
|
4216 |
-
left: 0;
|
4217 |
-
z-index: 1030;
|
4218 |
-
}
|
4219 |
-
@media (min-width: 768px) {
|
4220 |
-
.navbar-fixed-top,
|
4221 |
-
.navbar-fixed-bottom {
|
4222 |
-
border-radius: 0;
|
4223 |
-
}
|
4224 |
-
}
|
4225 |
-
.navbar-fixed-top {
|
4226 |
-
top: 0;
|
4227 |
-
border-width: 0 0 1px;
|
4228 |
-
}
|
4229 |
-
.navbar-fixed-bottom {
|
4230 |
-
bottom: 0;
|
4231 |
-
margin-bottom: 0;
|
4232 |
-
border-width: 1px 0 0;
|
4233 |
-
}
|
4234 |
-
.navbar-brand {
|
4235 |
-
float: left;
|
4236 |
-
height: 50px;
|
4237 |
-
padding: 15px 15px;
|
4238 |
-
font-size: 18px;
|
4239 |
-
line-height: 20px;
|
4240 |
-
}
|
4241 |
-
.navbar-brand:hover,
|
4242 |
-
.navbar-brand:focus {
|
4243 |
-
text-decoration: none;
|
4244 |
-
}
|
4245 |
-
.navbar-brand > img {
|
4246 |
-
display: block;
|
4247 |
-
}
|
4248 |
-
@media (min-width: 768px) {
|
4249 |
-
.navbar > .container .navbar-brand,
|
4250 |
-
.navbar > .container-fluid .navbar-brand {
|
4251 |
-
margin-left: -15px;
|
4252 |
-
}
|
4253 |
-
}
|
4254 |
-
.navbar-toggle {
|
4255 |
-
position: relative;
|
4256 |
-
float: right;
|
4257 |
-
padding: 9px 10px;
|
4258 |
-
margin-top: 8px;
|
4259 |
-
margin-right: 15px;
|
4260 |
-
margin-bottom: 8px;
|
4261 |
-
background-color: transparent;
|
4262 |
-
background-image: none;
|
4263 |
-
border: 1px solid transparent;
|
4264 |
-
border-radius: 4px;
|
4265 |
-
}
|
4266 |
-
.navbar-toggle:focus {
|
4267 |
-
outline: 0;
|
4268 |
-
}
|
4269 |
-
.navbar-toggle .icon-bar {
|
4270 |
-
display: block;
|
4271 |
-
width: 22px;
|
4272 |
-
height: 2px;
|
4273 |
-
border-radius: 1px;
|
4274 |
-
}
|
4275 |
-
.navbar-toggle .icon-bar + .icon-bar {
|
4276 |
-
margin-top: 4px;
|
4277 |
-
}
|
4278 |
-
@media (min-width: 768px) {
|
4279 |
-
.navbar-toggle {
|
4280 |
-
display: none;
|
4281 |
-
}
|
4282 |
-
}
|
4283 |
-
.navbar-nav {
|
4284 |
-
margin: 7.5px -15px;
|
4285 |
-
}
|
4286 |
-
.navbar-nav > li > a {
|
4287 |
-
padding-top: 10px;
|
4288 |
-
padding-bottom: 10px;
|
4289 |
-
line-height: 20px;
|
4290 |
-
}
|
4291 |
-
@media (max-width: 767px) {
|
4292 |
-
.navbar-nav .open .dropdown-menu {
|
4293 |
-
position: static;
|
4294 |
-
float: none;
|
4295 |
-
width: auto;
|
4296 |
-
margin-top: 0;
|
4297 |
-
background-color: transparent;
|
4298 |
-
border: 0;
|
4299 |
-
-webkit-box-shadow: none;
|
4300 |
-
box-shadow: none;
|
4301 |
-
}
|
4302 |
-
.navbar-nav .open .dropdown-menu > li > a,
|
4303 |
-
.navbar-nav .open .dropdown-menu .dropdown-header {
|
4304 |
-
padding: 5px 15px 5px 25px;
|
4305 |
-
}
|
4306 |
-
.navbar-nav .open .dropdown-menu > li > a {
|
4307 |
-
line-height: 20px;
|
4308 |
-
}
|
4309 |
-
.navbar-nav .open .dropdown-menu > li > a:hover,
|
4310 |
-
.navbar-nav .open .dropdown-menu > li > a:focus {
|
4311 |
-
background-image: none;
|
4312 |
-
}
|
4313 |
-
}
|
4314 |
-
@media (min-width: 768px) {
|
4315 |
-
.navbar-nav {
|
4316 |
-
float: left;
|
4317 |
-
margin: 0;
|
4318 |
-
}
|
4319 |
-
.navbar-nav > li {
|
4320 |
-
float: left;
|
4321 |
-
}
|
4322 |
-
.navbar-nav > li > a {
|
4323 |
-
padding-top: 15px;
|
4324 |
-
padding-bottom: 15px;
|
4325 |
-
}
|
4326 |
-
}
|
4327 |
-
.navbar-form {
|
4328 |
-
padding: 10px 15px;
|
4329 |
-
margin-top: 8px;
|
4330 |
-
margin-right: -15px;
|
4331 |
-
margin-bottom: 8px;
|
4332 |
-
margin-left: -15px;
|
4333 |
-
border-top: 1px solid transparent;
|
4334 |
-
border-bottom: 1px solid transparent;
|
4335 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4336 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4337 |
-
}
|
4338 |
-
@media (min-width: 768px) {
|
4339 |
-
.navbar-form .form-group {
|
4340 |
-
display: inline-block;
|
4341 |
-
margin-bottom: 0;
|
4342 |
-
vertical-align: middle;
|
4343 |
-
}
|
4344 |
-
.navbar-form .form-control {
|
4345 |
-
display: inline-block;
|
4346 |
-
width: auto;
|
4347 |
-
vertical-align: middle;
|
4348 |
-
}
|
4349 |
-
.navbar-form .form-control-static {
|
4350 |
-
display: inline-block;
|
4351 |
-
}
|
4352 |
-
.navbar-form .input-group {
|
4353 |
-
display: inline-table;
|
4354 |
-
vertical-align: middle;
|
4355 |
-
}
|
4356 |
-
.navbar-form .input-group .input-group-addon,
|
4357 |
-
.navbar-form .input-group .input-group-btn,
|
4358 |
-
.navbar-form .input-group .form-control {
|
4359 |
-
width: auto;
|
4360 |
-
}
|
4361 |
-
.navbar-form .input-group > .form-control {
|
4362 |
-
width: 100%;
|
4363 |
-
}
|
4364 |
-
.navbar-form .control-label {
|
4365 |
-
margin-bottom: 0;
|
4366 |
-
vertical-align: middle;
|
4367 |
-
}
|
4368 |
-
.navbar-form .radio,
|
4369 |
-
.navbar-form .checkbox {
|
4370 |
-
display: inline-block;
|
4371 |
-
margin-top: 0;
|
4372 |
-
margin-bottom: 0;
|
4373 |
-
vertical-align: middle;
|
4374 |
-
}
|
4375 |
-
.navbar-form .radio label,
|
4376 |
-
.navbar-form .checkbox label {
|
4377 |
-
padding-left: 0;
|
4378 |
-
}
|
4379 |
-
.navbar-form .radio input[type="radio"],
|
4380 |
-
.navbar-form .checkbox input[type="checkbox"] {
|
4381 |
-
position: relative;
|
4382 |
-
margin-left: 0;
|
4383 |
-
}
|
4384 |
-
.navbar-form .has-feedback .form-control-feedback {
|
4385 |
-
top: 0;
|
4386 |
-
}
|
4387 |
-
}
|
4388 |
-
@media (max-width: 767px) {
|
4389 |
-
.navbar-form .form-group {
|
4390 |
-
margin-bottom: 5px;
|
4391 |
-
}
|
4392 |
-
.navbar-form .form-group:last-child {
|
4393 |
-
margin-bottom: 0;
|
4394 |
-
}
|
4395 |
-
}
|
4396 |
-
@media (min-width: 768px) {
|
4397 |
-
.navbar-form {
|
4398 |
-
width: auto;
|
4399 |
-
padding-top: 0;
|
4400 |
-
padding-bottom: 0;
|
4401 |
-
margin-right: 0;
|
4402 |
-
margin-left: 0;
|
4403 |
-
border: 0;
|
4404 |
-
-webkit-box-shadow: none;
|
4405 |
-
box-shadow: none;
|
4406 |
-
}
|
4407 |
-
}
|
4408 |
-
.navbar-nav > li > .dropdown-menu {
|
4409 |
-
margin-top: 0;
|
4410 |
-
border-top-left-radius: 0;
|
4411 |
-
border-top-right-radius: 0;
|
4412 |
-
}
|
4413 |
-
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4414 |
-
margin-bottom: 0;
|
4415 |
-
border-top-left-radius: 4px;
|
4416 |
-
border-top-right-radius: 4px;
|
4417 |
-
border-bottom-right-radius: 0;
|
4418 |
-
border-bottom-left-radius: 0;
|
4419 |
-
}
|
4420 |
-
.navbar-btn {
|
4421 |
-
margin-top: 8px;
|
4422 |
-
margin-bottom: 8px;
|
4423 |
-
}
|
4424 |
-
.navbar-btn.btn-sm {
|
4425 |
-
margin-top: 10px;
|
4426 |
-
margin-bottom: 10px;
|
4427 |
-
}
|
4428 |
-
.navbar-btn.btn-xs {
|
4429 |
-
margin-top: 14px;
|
4430 |
-
margin-bottom: 14px;
|
4431 |
-
}
|
4432 |
-
.navbar-text {
|
4433 |
-
margin-top: 15px;
|
4434 |
-
margin-bottom: 15px;
|
4435 |
-
}
|
4436 |
-
@media (min-width: 768px) {
|
4437 |
-
.navbar-text {
|
4438 |
-
float: left;
|
4439 |
-
margin-right: 15px;
|
4440 |
-
margin-left: 15px;
|
4441 |
-
}
|
4442 |
-
}
|
4443 |
-
@media (min-width: 768px) {
|
4444 |
-
.navbar-left {
|
4445 |
-
float: left !important;
|
4446 |
-
}
|
4447 |
-
.navbar-right {
|
4448 |
-
float: right !important;
|
4449 |
-
margin-right: -15px;
|
4450 |
-
}
|
4451 |
-
.navbar-right ~ .navbar-right {
|
4452 |
-
margin-right: 0;
|
4453 |
-
}
|
4454 |
-
}
|
4455 |
-
.navbar-default {
|
4456 |
-
background-color: #f8f8f8;
|
4457 |
-
border-color: #e7e7e7;
|
4458 |
-
}
|
4459 |
-
.navbar-default .navbar-brand {
|
4460 |
-
color: #777;
|
4461 |
-
}
|
4462 |
-
.navbar-default .navbar-brand:hover,
|
4463 |
-
.navbar-default .navbar-brand:focus {
|
4464 |
-
color: #5e5e5e;
|
4465 |
-
background-color: transparent;
|
4466 |
-
}
|
4467 |
-
.navbar-default .navbar-text {
|
4468 |
-
color: #777;
|
4469 |
-
}
|
4470 |
-
.navbar-default .navbar-nav > li > a {
|
4471 |
-
color: #777;
|
4472 |
-
}
|
4473 |
-
.navbar-default .navbar-nav > li > a:hover,
|
4474 |
-
.navbar-default .navbar-nav > li > a:focus {
|
4475 |
-
color: #333;
|
4476 |
-
background-color: transparent;
|
4477 |
-
}
|
4478 |
-
.navbar-default .navbar-nav > .active > a,
|
4479 |
-
.navbar-default .navbar-nav > .active > a:hover,
|
4480 |
-
.navbar-default .navbar-nav > .active > a:focus {
|
4481 |
-
color: #555;
|
4482 |
-
background-color: #e7e7e7;
|
4483 |
-
}
|
4484 |
-
.navbar-default .navbar-nav > .disabled > a,
|
4485 |
-
.navbar-default .navbar-nav > .disabled > a:hover,
|
4486 |
-
.navbar-default .navbar-nav > .disabled > a:focus {
|
4487 |
-
color: #ccc;
|
4488 |
-
background-color: transparent;
|
4489 |
-
}
|
4490 |
-
.navbar-default .navbar-toggle {
|
4491 |
-
border-color: #ddd;
|
4492 |
-
}
|
4493 |
-
.navbar-default .navbar-toggle:hover,
|
4494 |
-
.navbar-default .navbar-toggle:focus {
|
4495 |
-
background-color: #ddd;
|
4496 |
-
}
|
4497 |
-
.navbar-default .navbar-toggle .icon-bar {
|
4498 |
-
background-color: #888;
|
4499 |
-
}
|
4500 |
-
.navbar-default .navbar-collapse,
|
4501 |
-
.navbar-default .navbar-form {
|
4502 |
-
border-color: #e7e7e7;
|
4503 |
-
}
|
4504 |
-
.navbar-default .navbar-nav > .open > a,
|
4505 |
-
.navbar-default .navbar-nav > .open > a:hover,
|
4506 |
-
.navbar-default .navbar-nav > .open > a:focus {
|
4507 |
-
color: #555;
|
4508 |
-
background-color: #e7e7e7;
|
4509 |
-
}
|
4510 |
-
@media (max-width: 767px) {
|
4511 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
4512 |
-
color: #777;
|
4513 |
-
}
|
4514 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
4515 |
-
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
4516 |
-
color: #333;
|
4517 |
-
background-color: transparent;
|
4518 |
-
}
|
4519 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
4520 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4521 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4522 |
-
color: #555;
|
4523 |
-
background-color: #e7e7e7;
|
4524 |
-
}
|
4525 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
4526 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4527 |
-
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4528 |
-
color: #ccc;
|
4529 |
-
background-color: transparent;
|
4530 |
-
}
|
4531 |
-
}
|
4532 |
-
.navbar-default .navbar-link {
|
4533 |
-
color: #777;
|
4534 |
-
}
|
4535 |
-
.navbar-default .navbar-link:hover {
|
4536 |
-
color: #333;
|
4537 |
-
}
|
4538 |
-
.navbar-default .btn-link {
|
4539 |
-
color: #777;
|
4540 |
-
}
|
4541 |
-
.navbar-default .btn-link:hover,
|
4542 |
-
.navbar-default .btn-link:focus {
|
4543 |
-
color: #333;
|
4544 |
-
}
|
4545 |
-
.navbar-default .btn-link[disabled]:hover,
|
4546 |
-
fieldset[disabled] .navbar-default .btn-link:hover,
|
4547 |
-
.navbar-default .btn-link[disabled]:focus,
|
4548 |
-
fieldset[disabled] .navbar-default .btn-link:focus {
|
4549 |
-
color: #ccc;
|
4550 |
-
}
|
4551 |
-
.navbar-inverse {
|
4552 |
-
background-color: #222;
|
4553 |
-
border-color: #080808;
|
4554 |
-
}
|
4555 |
-
.navbar-inverse .navbar-brand {
|
4556 |
-
color: #9d9d9d;
|
4557 |
-
}
|
4558 |
-
.navbar-inverse .navbar-brand:hover,
|
4559 |
-
.navbar-inverse .navbar-brand:focus {
|
4560 |
-
color: #fff;
|
4561 |
-
background-color: transparent;
|
4562 |
-
}
|
4563 |
-
.navbar-inverse .navbar-text {
|
4564 |
-
color: #9d9d9d;
|
4565 |
-
}
|
4566 |
-
.navbar-inverse .navbar-nav > li > a {
|
4567 |
-
color: #9d9d9d;
|
4568 |
-
}
|
4569 |
-
.navbar-inverse .navbar-nav > li > a:hover,
|
4570 |
-
.navbar-inverse .navbar-nav > li > a:focus {
|
4571 |
-
color: #fff;
|
4572 |
-
background-color: transparent;
|
4573 |
-
}
|
4574 |
-
.navbar-inverse .navbar-nav > .active > a,
|
4575 |
-
.navbar-inverse .navbar-nav > .active > a:hover,
|
4576 |
-
.navbar-inverse .navbar-nav > .active > a:focus {
|
4577 |
-
color: #fff;
|
4578 |
-
background-color: #080808;
|
4579 |
-
}
|
4580 |
-
.navbar-inverse .navbar-nav > .disabled > a,
|
4581 |
-
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
4582 |
-
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
4583 |
-
color: #444;
|
4584 |
-
background-color: transparent;
|
4585 |
-
}
|
4586 |
-
.navbar-inverse .navbar-toggle {
|
4587 |
-
border-color: #333;
|
4588 |
-
}
|
4589 |
-
.navbar-inverse .navbar-toggle:hover,
|
4590 |
-
.navbar-inverse .navbar-toggle:focus {
|
4591 |
-
background-color: #333;
|
4592 |
-
}
|
4593 |
-
.navbar-inverse .navbar-toggle .icon-bar {
|
4594 |
-
background-color: #fff;
|
4595 |
-
}
|
4596 |
-
.navbar-inverse .navbar-collapse,
|
4597 |
-
.navbar-inverse .navbar-form {
|
4598 |
-
border-color: #101010;
|
4599 |
-
}
|
4600 |
-
.navbar-inverse .navbar-nav > .open > a,
|
4601 |
-
.navbar-inverse .navbar-nav > .open > a:hover,
|
4602 |
-
.navbar-inverse .navbar-nav > .open > a:focus {
|
4603 |
-
color: #fff;
|
4604 |
-
background-color: #080808;
|
4605 |
-
}
|
4606 |
-
@media (max-width: 767px) {
|
4607 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
4608 |
-
border-color: #080808;
|
4609 |
-
}
|
4610 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
4611 |
-
background-color: #080808;
|
4612 |
-
}
|
4613 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
4614 |
-
color: #9d9d9d;
|
4615 |
-
}
|
4616 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
4617 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
4618 |
-
color: #fff;
|
4619 |
-
background-color: transparent;
|
4620 |
-
}
|
4621 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
4622 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4623 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4624 |
-
color: #fff;
|
4625 |
-
background-color: #080808;
|
4626 |
-
}
|
4627 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
4628 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4629 |
-
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4630 |
-
color: #444;
|
4631 |
-
background-color: transparent;
|
4632 |
-
}
|
4633 |
-
}
|
4634 |
-
.navbar-inverse .navbar-link {
|
4635 |
-
color: #9d9d9d;
|
4636 |
-
}
|
4637 |
-
.navbar-inverse .navbar-link:hover {
|
4638 |
-
color: #fff;
|
4639 |
-
}
|
4640 |
-
.navbar-inverse .btn-link {
|
4641 |
-
color: #9d9d9d;
|
4642 |
-
}
|
4643 |
-
.navbar-inverse .btn-link:hover,
|
4644 |
-
.navbar-inverse .btn-link:focus {
|
4645 |
-
color: #fff;
|
4646 |
-
}
|
4647 |
-
.navbar-inverse .btn-link[disabled]:hover,
|
4648 |
-
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
4649 |
-
.navbar-inverse .btn-link[disabled]:focus,
|
4650 |
-
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
4651 |
-
color: #444;
|
4652 |
-
}
|
4653 |
-
.breadcrumb {
|
4654 |
-
padding: 8px 15px;
|
4655 |
-
margin-bottom: 20px;
|
4656 |
-
list-style: none;
|
4657 |
-
background-color: #f5f5f5;
|
4658 |
-
border-radius: 4px;
|
4659 |
-
}
|
4660 |
-
.breadcrumb > li {
|
4661 |
-
display: inline-block;
|
4662 |
-
}
|
4663 |
-
.breadcrumb > li + li:before {
|
4664 |
-
padding: 0 5px;
|
4665 |
-
color: #ccc;
|
4666 |
-
content: "/\00a0";
|
4667 |
-
}
|
4668 |
-
.breadcrumb > .active {
|
4669 |
-
color: #777;
|
4670 |
-
}
|
4671 |
-
.pagination {
|
4672 |
-
display: inline-block;
|
4673 |
-
padding-left: 0;
|
4674 |
-
margin: 20px 0;
|
4675 |
-
border-radius: 4px;
|
4676 |
-
}
|
4677 |
-
.pagination > li {
|
4678 |
-
display: inline;
|
4679 |
-
}
|
4680 |
-
.pagination > li > a,
|
4681 |
-
.pagination > li > span {
|
4682 |
-
position: relative;
|
4683 |
-
float: left;
|
4684 |
-
padding: 6px 12px;
|
4685 |
-
margin-left: -1px;
|
4686 |
-
line-height: 1.42857143;
|
4687 |
-
color: #337ab7;
|
4688 |
-
text-decoration: none;
|
4689 |
-
background-color: #fff;
|
4690 |
-
border: 1px solid #ddd;
|
4691 |
-
}
|
4692 |
-
.pagination > li:first-child > a,
|
4693 |
-
.pagination > li:first-child > span {
|
4694 |
-
margin-left: 0;
|
4695 |
-
border-top-left-radius: 4px;
|
4696 |
-
border-bottom-left-radius: 4px;
|
4697 |
-
}
|
4698 |
-
.pagination > li:last-child > a,
|
4699 |
-
.pagination > li:last-child > span {
|
4700 |
-
border-top-right-radius: 4px;
|
4701 |
-
border-bottom-right-radius: 4px;
|
4702 |
-
}
|
4703 |
-
.pagination > li > a:hover,
|
4704 |
-
.pagination > li > span:hover,
|
4705 |
-
.pagination > li > a:focus,
|
4706 |
-
.pagination > li > span:focus {
|
4707 |
-
z-index: 2;
|
4708 |
-
color: #23527c;
|
4709 |
-
background-color: #eee;
|
4710 |
-
border-color: #ddd;
|
4711 |
-
}
|
4712 |
-
.pagination > .active > a,
|
4713 |
-
.pagination > .active > span,
|
4714 |
-
.pagination > .active > a:hover,
|
4715 |
-
.pagination > .active > span:hover,
|
4716 |
-
.pagination > .active > a:focus,
|
4717 |
-
.pagination > .active > span:focus {
|
4718 |
-
z-index: 3;
|
4719 |
-
color: #fff;
|
4720 |
-
cursor: default;
|
4721 |
-
background-color: #337ab7;
|
4722 |
-
border-color: #337ab7;
|
4723 |
-
}
|
4724 |
-
.pagination > .disabled > span,
|
4725 |
-
.pagination > .disabled > span:hover,
|
4726 |
-
.pagination > .disabled > span:focus,
|
4727 |
-
.pagination > .disabled > a,
|
4728 |
-
.pagination > .disabled > a:hover,
|
4729 |
-
.pagination > .disabled > a:focus {
|
4730 |
-
color: #777;
|
4731 |
-
cursor: not-allowed;
|
4732 |
-
background-color: #fff;
|
4733 |
-
border-color: #ddd;
|
4734 |
-
}
|
4735 |
-
.pagination-lg > li > a,
|
4736 |
-
.pagination-lg > li > span {
|
4737 |
-
padding: 10px 16px;
|
4738 |
-
font-size: 18px;
|
4739 |
-
line-height: 1.3333333;
|
4740 |
-
}
|
4741 |
-
.pagination-lg > li:first-child > a,
|
4742 |
-
.pagination-lg > li:first-child > span {
|
4743 |
-
border-top-left-radius: 6px;
|
4744 |
-
border-bottom-left-radius: 6px;
|
4745 |
-
}
|
4746 |
-
.pagination-lg > li:last-child > a,
|
4747 |
-
.pagination-lg > li:last-child > span {
|
4748 |
-
border-top-right-radius: 6px;
|
4749 |
-
border-bottom-right-radius: 6px;
|
4750 |
-
}
|
4751 |
-
.pagination-sm > li > a,
|
4752 |
-
.pagination-sm > li > span {
|
4753 |
-
padding: 5px 10px;
|
4754 |
-
font-size: 12px;
|
4755 |
-
line-height: 1.5;
|
4756 |
-
}
|
4757 |
-
.pagination-sm > li:first-child > a,
|
4758 |
-
.pagination-sm > li:first-child > span {
|
4759 |
-
border-top-left-radius: 3px;
|
4760 |
-
border-bottom-left-radius: 3px;
|
4761 |
-
}
|
4762 |
-
.pagination-sm > li:last-child > a,
|
4763 |
-
.pagination-sm > li:last-child > span {
|
4764 |
-
border-top-right-radius: 3px;
|
4765 |
-
border-bottom-right-radius: 3px;
|
4766 |
-
}
|
4767 |
-
.pager {
|
4768 |
-
padding-left: 0;
|
4769 |
-
margin: 20px 0;
|
4770 |
-
text-align: center;
|
4771 |
-
list-style: none;
|
4772 |
-
}
|
4773 |
-
.pager li {
|
4774 |
-
display: inline;
|
4775 |
-
}
|
4776 |
-
.pager li > a,
|
4777 |
-
.pager li > span {
|
4778 |
-
display: inline-block;
|
4779 |
-
padding: 5px 14px;
|
4780 |
-
background-color: #fff;
|
4781 |
-
border: 1px solid #ddd;
|
4782 |
-
border-radius: 15px;
|
4783 |
-
}
|
4784 |
-
.pager li > a:hover,
|
4785 |
-
.pager li > a:focus {
|
4786 |
-
text-decoration: none;
|
4787 |
-
background-color: #eee;
|
4788 |
-
}
|
4789 |
-
.pager .next > a,
|
4790 |
-
.pager .next > span {
|
4791 |
-
float: right;
|
4792 |
-
}
|
4793 |
-
.pager .previous > a,
|
4794 |
-
.pager .previous > span {
|
4795 |
-
float: left;
|
4796 |
-
}
|
4797 |
-
.pager .disabled > a,
|
4798 |
-
.pager .disabled > a:hover,
|
4799 |
-
.pager .disabled > a:focus,
|
4800 |
-
.pager .disabled > span {
|
4801 |
-
color: #777;
|
4802 |
-
cursor: not-allowed;
|
4803 |
-
background-color: #fff;
|
4804 |
-
}
|
4805 |
-
.label {
|
4806 |
-
display: inline;
|
4807 |
-
padding: .2em .6em .3em;
|
4808 |
-
font-size: 75%;
|
4809 |
-
font-weight: bold;
|
4810 |
-
line-height: 1;
|
4811 |
-
color: #fff;
|
4812 |
-
text-align: center;
|
4813 |
-
white-space: nowrap;
|
4814 |
-
vertical-align: baseline;
|
4815 |
-
border-radius: .25em;
|
4816 |
-
}
|
4817 |
-
a.label:hover,
|
4818 |
-
a.label:focus {
|
4819 |
-
color: #fff;
|
4820 |
-
text-decoration: none;
|
4821 |
-
cursor: pointer;
|
4822 |
-
}
|
4823 |
-
.label:empty {
|
4824 |
-
display: none;
|
4825 |
-
}
|
4826 |
-
.btn .label {
|
4827 |
-
position: relative;
|
4828 |
-
top: -1px;
|
4829 |
-
}
|
4830 |
-
.label-default {
|
4831 |
-
background-color: #777;
|
4832 |
-
}
|
4833 |
-
.label-default[href]:hover,
|
4834 |
-
.label-default[href]:focus {
|
4835 |
-
background-color: #5e5e5e;
|
4836 |
-
}
|
4837 |
-
.label-primary {
|
4838 |
-
background-color: #337ab7;
|
4839 |
-
}
|
4840 |
-
.label-primary[href]:hover,
|
4841 |
-
.label-primary[href]:focus {
|
4842 |
-
background-color: #286090;
|
4843 |
-
}
|
4844 |
-
.label-success {
|
4845 |
-
background-color: #5cb85c;
|
4846 |
-
}
|
4847 |
-
.label-success[href]:hover,
|
4848 |
-
.label-success[href]:focus {
|
4849 |
-
background-color: #449d44;
|
4850 |
-
}
|
4851 |
-
.label-info {
|
4852 |
-
background-color: #5bc0de;
|
4853 |
-
}
|
4854 |
-
.label-info[href]:hover,
|
4855 |
-
.label-info[href]:focus {
|
4856 |
-
background-color: #31b0d5;
|
4857 |
-
}
|
4858 |
-
.label-warning {
|
4859 |
-
background-color: #f0ad4e;
|
4860 |
-
}
|
4861 |
-
.label-warning[href]:hover,
|
4862 |
-
.label-warning[href]:focus {
|
4863 |
-
background-color: #ec971f;
|
4864 |
-
}
|
4865 |
-
.label-danger {
|
4866 |
-
background-color: #d9534f;
|
4867 |
-
}
|
4868 |
-
.label-danger[href]:hover,
|
4869 |
-
.label-danger[href]:focus {
|
4870 |
-
background-color: #c9302c;
|
4871 |
-
}
|
4872 |
-
.badge {
|
4873 |
-
display: inline-block;
|
4874 |
-
min-width: 10px;
|
4875 |
-
padding: 3px 7px;
|
4876 |
-
font-size: 12px;
|
4877 |
-
font-weight: bold;
|
4878 |
-
line-height: 1;
|
4879 |
-
color: #fff;
|
4880 |
-
text-align: center;
|
4881 |
-
white-space: nowrap;
|
4882 |
-
vertical-align: middle;
|
4883 |
-
background-color: #777;
|
4884 |
-
border-radius: 10px;
|
4885 |
-
}
|
4886 |
-
.badge:empty {
|
4887 |
-
display: none;
|
4888 |
-
}
|
4889 |
-
.btn .badge {
|
4890 |
-
position: relative;
|
4891 |
-
top: -1px;
|
4892 |
-
}
|
4893 |
-
.btn-xs .badge,
|
4894 |
-
.btn-group-xs > .btn .badge {
|
4895 |
-
top: 0;
|
4896 |
-
padding: 1px 5px;
|
4897 |
-
}
|
4898 |
-
a.badge:hover,
|
4899 |
-
a.badge:focus {
|
4900 |
-
color: #fff;
|
4901 |
-
text-decoration: none;
|
4902 |
-
cursor: pointer;
|
4903 |
-
}
|
4904 |
-
.list-group-item.active > .badge,
|
4905 |
-
.nav-pills > .active > a > .badge {
|
4906 |
-
color: #337ab7;
|
4907 |
-
background-color: #fff;
|
4908 |
-
}
|
4909 |
-
.list-group-item > .badge {
|
4910 |
-
float: right;
|
4911 |
-
}
|
4912 |
-
.list-group-item > .badge + .badge {
|
4913 |
-
margin-right: 5px;
|
4914 |
-
}
|
4915 |
-
.nav-pills > li > a > .badge {
|
4916 |
-
margin-left: 3px;
|
4917 |
-
}
|
4918 |
-
.jumbotron {
|
4919 |
-
padding-top: 30px;
|
4920 |
-
padding-bottom: 30px;
|
4921 |
-
margin-bottom: 30px;
|
4922 |
-
color: inherit;
|
4923 |
-
background-color: #eee;
|
4924 |
-
}
|
4925 |
-
.jumbotron h1,
|
4926 |
-
.jumbotron .h1 {
|
4927 |
-
color: inherit;
|
4928 |
-
}
|
4929 |
-
.jumbotron p {
|
4930 |
-
margin-bottom: 15px;
|
4931 |
-
font-size: 21px;
|
4932 |
-
font-weight: 200;
|
4933 |
-
}
|
4934 |
-
.jumbotron > hr {
|
4935 |
-
border-top-color: #d5d5d5;
|
4936 |
-
}
|
4937 |
-
.container .jumbotron,
|
4938 |
-
.container-fluid .jumbotron {
|
4939 |
-
padding-right: 15px;
|
4940 |
-
padding-left: 15px;
|
4941 |
-
border-radius: 6px;
|
4942 |
-
}
|
4943 |
-
.jumbotron .container {
|
4944 |
-
max-width: 100%;
|
4945 |
-
}
|
4946 |
-
@media screen and (min-width: 768px) {
|
4947 |
-
.jumbotron {
|
4948 |
-
padding-top: 48px;
|
4949 |
-
padding-bottom: 48px;
|
4950 |
-
}
|
4951 |
-
.container .jumbotron,
|
4952 |
-
.container-fluid .jumbotron {
|
4953 |
-
padding-right: 60px;
|
4954 |
-
padding-left: 60px;
|
4955 |
-
}
|
4956 |
-
.jumbotron h1,
|
4957 |
-
.jumbotron .h1 {
|
4958 |
-
font-size: 63px;
|
4959 |
-
}
|
4960 |
-
}
|
4961 |
-
.thumbnail {
|
4962 |
-
display: block;
|
4963 |
-
padding: 4px;
|
4964 |
-
margin-bottom: 20px;
|
4965 |
-
line-height: 1.42857143;
|
4966 |
-
background-color: #fff;
|
4967 |
-
border: 1px solid #ddd;
|
4968 |
-
border-radius: 4px;
|
4969 |
-
-webkit-transition: border .2s ease-in-out;
|
4970 |
-
-o-transition: border .2s ease-in-out;
|
4971 |
-
transition: border .2s ease-in-out;
|
4972 |
-
}
|
4973 |
-
.thumbnail > img,
|
4974 |
-
.thumbnail a > img {
|
4975 |
-
margin-right: auto;
|
4976 |
-
margin-left: auto;
|
4977 |
-
}
|
4978 |
-
a.thumbnail:hover,
|
4979 |
-
a.thumbnail:focus,
|
4980 |
-
a.thumbnail.active {
|
4981 |
-
border-color: #337ab7;
|
4982 |
-
}
|
4983 |
-
.thumbnail .caption {
|
4984 |
-
padding: 9px;
|
4985 |
-
color: #333;
|
4986 |
-
}
|
4987 |
-
.alert {
|
4988 |
-
padding: 15px;
|
4989 |
-
margin-bottom: 20px;
|
4990 |
-
border: 1px solid transparent;
|
4991 |
-
border-radius: 4px;
|
4992 |
-
}
|
4993 |
-
.alert h4 {
|
4994 |
-
margin-top: 0;
|
4995 |
-
color: inherit;
|
4996 |
-
}
|
4997 |
-
.alert .alert-link {
|
4998 |
-
font-weight: bold;
|
4999 |
-
}
|
5000 |
-
.alert > p,
|
5001 |
-
.alert > ul {
|
5002 |
-
margin-bottom: 0;
|
5003 |
-
}
|
5004 |
-
.alert > p + p {
|
5005 |
-
margin-top: 5px;
|
5006 |
-
}
|
5007 |
-
.alert-dismissable,
|
5008 |
-
.alert-dismissible {
|
5009 |
-
padding-right: 35px;
|
5010 |
-
}
|
5011 |
-
.alert-dismissable .close,
|
5012 |
-
.alert-dismissible .close {
|
5013 |
-
position: relative;
|
5014 |
-
top: -2px;
|
5015 |
-
right: -21px;
|
5016 |
-
color: inherit;
|
5017 |
-
}
|
5018 |
-
.alert-success {
|
5019 |
-
color: #3c763d;
|
5020 |
-
background-color: #dff0d8;
|
5021 |
-
border-color: #d6e9c6;
|
5022 |
-
}
|
5023 |
-
.alert-success hr {
|
5024 |
-
border-top-color: #c9e2b3;
|
5025 |
-
}
|
5026 |
-
.alert-success .alert-link {
|
5027 |
-
color: #2b542c;
|
5028 |
-
}
|
5029 |
-
.alert-info {
|
5030 |
-
color: #31708f;
|
5031 |
-
background-color: #d9edf7;
|
5032 |
-
border-color: #bce8f1;
|
5033 |
-
}
|
5034 |
-
.alert-info hr {
|
5035 |
-
border-top-color: #a6e1ec;
|
5036 |
-
}
|
5037 |
-
.alert-info .alert-link {
|
5038 |
-
color: #245269;
|
5039 |
-
}
|
5040 |
-
.alert-warning {
|
5041 |
-
color: #8a6d3b;
|
5042 |
-
background-color: #fcf8e3;
|
5043 |
-
border-color: #faebcc;
|
5044 |
-
}
|
5045 |
-
.alert-warning hr {
|
5046 |
-
border-top-color: #f7e1b5;
|
5047 |
-
}
|
5048 |
-
.alert-warning .alert-link {
|
5049 |
-
color: #66512c;
|
5050 |
-
}
|
5051 |
-
.alert-danger {
|
5052 |
-
color: #a94442;
|
5053 |
-
background-color: #f2dede;
|
5054 |
-
border-color: #ebccd1;
|
5055 |
-
}
|
5056 |
-
.alert-danger hr {
|
5057 |
-
border-top-color: #e4b9c0;
|
5058 |
-
}
|
5059 |
-
.alert-danger .alert-link {
|
5060 |
-
color: #843534;
|
5061 |
-
}
|
5062 |
-
@-webkit-keyframes progress-bar-stripes {
|
5063 |
-
from {
|
5064 |
-
background-position: 40px 0;
|
5065 |
-
}
|
5066 |
-
to {
|
5067 |
-
background-position: 0 0;
|
5068 |
-
}
|
5069 |
-
}
|
5070 |
-
@-o-keyframes progress-bar-stripes {
|
5071 |
-
from {
|
5072 |
-
background-position: 40px 0;
|
5073 |
-
}
|
5074 |
-
to {
|
5075 |
-
background-position: 0 0;
|
5076 |
-
}
|
5077 |
-
}
|
5078 |
-
@keyframes progress-bar-stripes {
|
5079 |
-
from {
|
5080 |
-
background-position: 40px 0;
|
5081 |
-
}
|
5082 |
-
to {
|
5083 |
-
background-position: 0 0;
|
5084 |
-
}
|
5085 |
-
}
|
5086 |
-
.progress {
|
5087 |
-
height: 20px;
|
5088 |
-
margin-bottom: 20px;
|
5089 |
-
overflow: hidden;
|
5090 |
-
background-color: #f5f5f5;
|
5091 |
-
border-radius: 4px;
|
5092 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5093 |
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5094 |
-
}
|
5095 |
-
.progress-bar {
|
5096 |
-
float: left;
|
5097 |
-
width: 0;
|
5098 |
-
height: 100%;
|
5099 |
-
font-size: 12px;
|
5100 |
-
line-height: 20px;
|
5101 |
-
color: #fff;
|
5102 |
-
text-align: center;
|
5103 |
-
background-color: #337ab7;
|
5104 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5105 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5106 |
-
-webkit-transition: width .6s ease;
|
5107 |
-
-o-transition: width .6s ease;
|
5108 |
-
transition: width .6s ease;
|
5109 |
-
}
|
5110 |
-
.progress-striped .progress-bar,
|
5111 |
-
.progress-bar-striped {
|
5112 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5113 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5114 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5115 |
-
-webkit-background-size: 40px 40px;
|
5116 |
-
background-size: 40px 40px;
|
5117 |
-
}
|
5118 |
-
.progress.active .progress-bar,
|
5119 |
-
.progress-bar.active {
|
5120 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
5121 |
-
-o-animation: progress-bar-stripes 2s linear infinite;
|
5122 |
-
animation: progress-bar-stripes 2s linear infinite;
|
5123 |
-
}
|
5124 |
-
.progress-bar-success {
|
5125 |
-
background-color: #5cb85c;
|
5126 |
-
}
|
5127 |
-
.progress-striped .progress-bar-success {
|
5128 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5129 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5130 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5131 |
-
}
|
5132 |
-
.progress-bar-info {
|
5133 |
-
background-color: #5bc0de;
|
5134 |
-
}
|
5135 |
-
.progress-striped .progress-bar-info {
|
5136 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5137 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5138 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5139 |
-
}
|
5140 |
-
.progress-bar-warning {
|
5141 |
-
background-color: #f0ad4e;
|
5142 |
-
}
|
5143 |
-
.progress-striped .progress-bar-warning {
|
5144 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5145 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5146 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5147 |
-
}
|
5148 |
-
.progress-bar-danger {
|
5149 |
-
background-color: #d9534f;
|
5150 |
-
}
|
5151 |
-
.progress-striped .progress-bar-danger {
|
5152 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5153 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5154 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5155 |
-
}
|
5156 |
-
.media {
|
5157 |
-
margin-top: 15px;
|
5158 |
-
}
|
5159 |
-
.media:first-child {
|
5160 |
-
margin-top: 0;
|
5161 |
-
}
|
5162 |
-
.media,
|
5163 |
-
.media-body {
|
5164 |
-
overflow: hidden;
|
5165 |
-
zoom: 1;
|
5166 |
-
}
|
5167 |
-
.media-body {
|
5168 |
-
width: 10000px;
|
5169 |
-
}
|
5170 |
-
.media-object {
|
5171 |
-
display: block;
|
5172 |
-
}
|
5173 |
-
.media-object.img-thumbnail {
|
5174 |
-
max-width: none;
|
5175 |
-
}
|
5176 |
-
.media-right,
|
5177 |
-
.media > .pull-right {
|
5178 |
-
padding-left: 10px;
|
5179 |
-
}
|
5180 |
-
.media-left,
|
5181 |
-
.media > .pull-left {
|
5182 |
-
padding-right: 10px;
|
5183 |
-
}
|
5184 |
-
.media-left,
|
5185 |
-
.media-right,
|
5186 |
-
.media-body {
|
5187 |
-
display: table-cell;
|
5188 |
-
vertical-align: top;
|
5189 |
-
}
|
5190 |
-
.media-middle {
|
5191 |
-
vertical-align: middle;
|
5192 |
-
}
|
5193 |
-
.media-bottom {
|
5194 |
-
vertical-align: bottom;
|
5195 |
-
}
|
5196 |
-
.media-heading {
|
5197 |
-
margin-top: 0;
|
5198 |
-
margin-bottom: 5px;
|
5199 |
-
}
|
5200 |
-
.media-list {
|
5201 |
-
padding-left: 0;
|
5202 |
-
list-style: none;
|
5203 |
-
}
|
5204 |
-
.list-group {
|
5205 |
-
padding-left: 0;
|
5206 |
-
margin-bottom: 20px;
|
5207 |
-
}
|
5208 |
-
.list-group-item {
|
5209 |
-
position: relative;
|
5210 |
-
display: block;
|
5211 |
-
padding: 10px 15px;
|
5212 |
-
margin-bottom: -1px;
|
5213 |
-
background-color: #fff;
|
5214 |
-
border: 1px solid #ddd;
|
5215 |
-
}
|
5216 |
-
.list-group-item:first-child {
|
5217 |
-
border-top-left-radius: 4px;
|
5218 |
-
border-top-right-radius: 4px;
|
5219 |
-
}
|
5220 |
-
.list-group-item:last-child {
|
5221 |
-
margin-bottom: 0;
|
5222 |
-
border-bottom-right-radius: 4px;
|
5223 |
-
border-bottom-left-radius: 4px;
|
5224 |
-
}
|
5225 |
-
a.list-group-item,
|
5226 |
-
button.list-group-item {
|
5227 |
-
color: #555;
|
5228 |
-
}
|
5229 |
-
a.list-group-item .list-group-item-heading,
|
5230 |
-
button.list-group-item .list-group-item-heading {
|
5231 |
-
color: #333;
|
5232 |
-
}
|
5233 |
-
a.list-group-item:hover,
|
5234 |
-
button.list-group-item:hover,
|
5235 |
-
a.list-group-item:focus,
|
5236 |
-
button.list-group-item:focus {
|
5237 |
-
color: #555;
|
5238 |
-
text-decoration: none;
|
5239 |
-
background-color: #f5f5f5;
|
5240 |
-
}
|
5241 |
-
button.list-group-item {
|
5242 |
-
width: 100%;
|
5243 |
-
text-align: left;
|
5244 |
-
}
|
5245 |
-
.list-group-item.disabled,
|
5246 |
-
.list-group-item.disabled:hover,
|
5247 |
-
.list-group-item.disabled:focus {
|
5248 |
-
color: #777;
|
5249 |
-
cursor: not-allowed;
|
5250 |
-
background-color: #eee;
|
5251 |
-
}
|
5252 |
-
.list-group-item.disabled .list-group-item-heading,
|
5253 |
-
.list-group-item.disabled:hover .list-group-item-heading,
|
5254 |
-
.list-group-item.disabled:focus .list-group-item-heading {
|
5255 |
-
color: inherit;
|
5256 |
-
}
|
5257 |
-
.list-group-item.disabled .list-group-item-text,
|
5258 |
-
.list-group-item.disabled:hover .list-group-item-text,
|
5259 |
-
.list-group-item.disabled:focus .list-group-item-text {
|
5260 |
-
color: #777;
|
5261 |
-
}
|
5262 |
-
.list-group-item.active,
|
5263 |
-
.list-group-item.active:hover,
|
5264 |
-
.list-group-item.active:focus {
|
5265 |
-
z-index: 2;
|
5266 |
-
color: #fff;
|
5267 |
-
background-color: #337ab7;
|
5268 |
-
border-color: #337ab7;
|
5269 |
-
}
|
5270 |
-
.list-group-item.active .list-group-item-heading,
|
5271 |
-
.list-group-item.active:hover .list-group-item-heading,
|
5272 |
-
.list-group-item.active:focus .list-group-item-heading,
|
5273 |
-
.list-group-item.active .list-group-item-heading > small,
|
5274 |
-
.list-group-item.active:hover .list-group-item-heading > small,
|
5275 |
-
.list-group-item.active:focus .list-group-item-heading > small,
|
5276 |
-
.list-group-item.active .list-group-item-heading > .small,
|
5277 |
-
.list-group-item.active:hover .list-group-item-heading > .small,
|
5278 |
-
.list-group-item.active:focus .list-group-item-heading > .small {
|
5279 |
-
color: inherit;
|
5280 |
-
}
|
5281 |
-
.list-group-item.active .list-group-item-text,
|
5282 |
-
.list-group-item.active:hover .list-group-item-text,
|
5283 |
-
.list-group-item.active:focus .list-group-item-text {
|
5284 |
-
color: #c7ddef;
|
5285 |
-
}
|
5286 |
-
.list-group-item-success {
|
5287 |
-
color: #3c763d;
|
5288 |
-
background-color: #dff0d8;
|
5289 |
-
}
|
5290 |
-
a.list-group-item-success,
|
5291 |
-
button.list-group-item-success {
|
5292 |
-
color: #3c763d;
|
5293 |
-
}
|
5294 |
-
a.list-group-item-success .list-group-item-heading,
|
5295 |
-
button.list-group-item-success .list-group-item-heading {
|
5296 |
-
color: inherit;
|
5297 |
-
}
|
5298 |
-
a.list-group-item-success:hover,
|
5299 |
-
button.list-group-item-success:hover,
|
5300 |
-
a.list-group-item-success:focus,
|
5301 |
-
button.list-group-item-success:focus {
|
5302 |
-
color: #3c763d;
|
5303 |
-
background-color: #d0e9c6;
|
5304 |
-
}
|
5305 |
-
a.list-group-item-success.active,
|
5306 |
-
button.list-group-item-success.active,
|
5307 |
-
a.list-group-item-success.active:hover,
|
5308 |
-
button.list-group-item-success.active:hover,
|
5309 |
-
a.list-group-item-success.active:focus,
|
5310 |
-
button.list-group-item-success.active:focus {
|
5311 |
-
color: #fff;
|
5312 |
-
background-color: #3c763d;
|
5313 |
-
border-color: #3c763d;
|
5314 |
-
}
|
5315 |
-
.list-group-item-info {
|
5316 |
-
color: #31708f;
|
5317 |
-
background-color: #d9edf7;
|
5318 |
-
}
|
5319 |
-
a.list-group-item-info,
|
5320 |
-
button.list-group-item-info {
|
5321 |
-
color: #31708f;
|
5322 |
-
}
|
5323 |
-
a.list-group-item-info .list-group-item-heading,
|
5324 |
-
button.list-group-item-info .list-group-item-heading {
|
5325 |
-
color: inherit;
|
5326 |
-
}
|
5327 |
-
a.list-group-item-info:hover,
|
5328 |
-
button.list-group-item-info:hover,
|
5329 |
-
a.list-group-item-info:focus,
|
5330 |
-
button.list-group-item-info:focus {
|
5331 |
-
color: #31708f;
|
5332 |
-
background-color: #c4e3f3;
|
5333 |
-
}
|
5334 |
-
a.list-group-item-info.active,
|
5335 |
-
button.list-group-item-info.active,
|
5336 |
-
a.list-group-item-info.active:hover,
|
5337 |
-
button.list-group-item-info.active:hover,
|
5338 |
-
a.list-group-item-info.active:focus,
|
5339 |
-
button.list-group-item-info.active:focus {
|
5340 |
-
color: #fff;
|
5341 |
-
background-color: #31708f;
|
5342 |
-
border-color: #31708f;
|
5343 |
-
}
|
5344 |
-
.list-group-item-warning {
|
5345 |
-
color: #8a6d3b;
|
5346 |
-
background-color: #fcf8e3;
|
5347 |
-
}
|
5348 |
-
a.list-group-item-warning,
|
5349 |
-
button.list-group-item-warning {
|
5350 |
-
color: #8a6d3b;
|
5351 |
-
}
|
5352 |
-
a.list-group-item-warning .list-group-item-heading,
|
5353 |
-
button.list-group-item-warning .list-group-item-heading {
|
5354 |
-
color: inherit;
|
5355 |
-
}
|
5356 |
-
a.list-group-item-warning:hover,
|
5357 |
-
button.list-group-item-warning:hover,
|
5358 |
-
a.list-group-item-warning:focus,
|
5359 |
-
button.list-group-item-warning:focus {
|
5360 |
-
color: #8a6d3b;
|
5361 |
-
background-color: #faf2cc;
|
5362 |
-
}
|
5363 |
-
a.list-group-item-warning.active,
|
5364 |
-
button.list-group-item-warning.active,
|
5365 |
-
a.list-group-item-warning.active:hover,
|
5366 |
-
button.list-group-item-warning.active:hover,
|
5367 |
-
a.list-group-item-warning.active:focus,
|
5368 |
-
button.list-group-item-warning.active:focus {
|
5369 |
-
color: #fff;
|
5370 |
-
background-color: #8a6d3b;
|
5371 |
-
border-color: #8a6d3b;
|
5372 |
-
}
|
5373 |
-
.list-group-item-danger {
|
5374 |
-
color: #a94442;
|
5375 |
-
background-color: #f2dede;
|
5376 |
-
}
|
5377 |
-
a.list-group-item-danger,
|
5378 |
-
button.list-group-item-danger {
|
5379 |
-
color: #a94442;
|
5380 |
-
}
|
5381 |
-
a.list-group-item-danger .list-group-item-heading,
|
5382 |
-
button.list-group-item-danger .list-group-item-heading {
|
5383 |
-
color: inherit;
|
5384 |
-
}
|
5385 |
-
a.list-group-item-danger:hover,
|
5386 |
-
button.list-group-item-danger:hover,
|
5387 |
-
a.list-group-item-danger:focus,
|
5388 |
-
button.list-group-item-danger:focus {
|
5389 |
-
color: #a94442;
|
5390 |
-
background-color: #ebcccc;
|
5391 |
-
}
|
5392 |
-
a.list-group-item-danger.active,
|
5393 |
-
button.list-group-item-danger.active,
|
5394 |
-
a.list-group-item-danger.active:hover,
|
5395 |
-
button.list-group-item-danger.active:hover,
|
5396 |
-
a.list-group-item-danger.active:focus,
|
5397 |
-
button.list-group-item-danger.active:focus {
|
5398 |
-
color: #fff;
|
5399 |
-
background-color: #a94442;
|
5400 |
-
border-color: #a94442;
|
5401 |
-
}
|
5402 |
-
.list-group-item-heading {
|
5403 |
-
margin-top: 0;
|
5404 |
-
margin-bottom: 5px;
|
5405 |
-
}
|
5406 |
-
.list-group-item-text {
|
5407 |
-
margin-bottom: 0;
|
5408 |
-
line-height: 1.3;
|
5409 |
-
}
|
5410 |
-
.panel {
|
5411 |
-
margin-bottom: 20px;
|
5412 |
-
background-color: #fff;
|
5413 |
-
border: 1px solid transparent;
|
5414 |
-
border-radius: 4px;
|
5415 |
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5416 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5417 |
-
}
|
5418 |
-
.panel-body {
|
5419 |
-
padding: 15px;
|
5420 |
-
}
|
5421 |
-
.panel-heading {
|
5422 |
-
padding: 10px 15px;
|
5423 |
-
border-bottom: 1px solid transparent;
|
5424 |
-
border-top-left-radius: 3px;
|
5425 |
-
border-top-right-radius: 3px;
|
5426 |
-
}
|
5427 |
-
.panel-heading > .dropdown .dropdown-toggle {
|
5428 |
-
color: inherit;
|
5429 |
-
}
|
5430 |
-
.panel-title {
|
5431 |
-
margin-top: 0;
|
5432 |
-
margin-bottom: 0;
|
5433 |
-
font-size: 16px;
|
5434 |
-
color: inherit;
|
5435 |
-
}
|
5436 |
-
.panel-title > a,
|
5437 |
-
.panel-title > small,
|
5438 |
-
.panel-title > .small,
|
5439 |
-
.panel-title > small > a,
|
5440 |
-
.panel-title > .small > a {
|
5441 |
-
color: inherit;
|
5442 |
-
}
|
5443 |
-
.panel-footer {
|
5444 |
-
padding: 10px 15px;
|
5445 |
-
background-color: #f5f5f5;
|
5446 |
-
border-top: 1px solid #ddd;
|
5447 |
-
border-bottom-right-radius: 3px;
|
5448 |
-
border-bottom-left-radius: 3px;
|
5449 |
-
}
|
5450 |
-
.panel > .list-group,
|
5451 |
-
.panel > .panel-collapse > .list-group {
|
5452 |
-
margin-bottom: 0;
|
5453 |
-
}
|
5454 |
-
.panel > .list-group .list-group-item,
|
5455 |
-
.panel > .panel-collapse > .list-group .list-group-item {
|
5456 |
-
border-width: 1px 0;
|
5457 |
-
border-radius: 0;
|
5458 |
-
}
|
5459 |
-
.panel > .list-group:first-child .list-group-item:first-child,
|
5460 |
-
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
5461 |
-
border-top: 0;
|
5462 |
-
border-top-left-radius: 3px;
|
5463 |
-
border-top-right-radius: 3px;
|
5464 |
-
}
|
5465 |
-
.panel > .list-group:last-child .list-group-item:last-child,
|
5466 |
-
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
5467 |
-
border-bottom: 0;
|
5468 |
-
border-bottom-right-radius: 3px;
|
5469 |
-
border-bottom-left-radius: 3px;
|
5470 |
-
}
|
5471 |
-
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
5472 |
-
border-top-left-radius: 0;
|
5473 |
-
border-top-right-radius: 0;
|
5474 |
-
}
|
5475 |
-
.panel-heading + .list-group .list-group-item:first-child {
|
5476 |
-
border-top-width: 0;
|
5477 |
-
}
|
5478 |
-
.list-group + .panel-footer {
|
5479 |
-
border-top-width: 0;
|
5480 |
-
}
|
5481 |
-
.panel > .table,
|
5482 |
-
.panel > .table-responsive > .table,
|
5483 |
-
.panel > .panel-collapse > .table {
|
5484 |
-
margin-bottom: 0;
|
5485 |
-
}
|
5486 |
-
.panel > .table caption,
|
5487 |
-
.panel > .table-responsive > .table caption,
|
5488 |
-
.panel > .panel-collapse > .table caption {
|
5489 |
-
padding-right: 15px;
|
5490 |
-
padding-left: 15px;
|
5491 |
-
}
|
5492 |
-
.panel > .table:first-child,
|
5493 |
-
.panel > .table-responsive:first-child > .table:first-child {
|
5494 |
-
border-top-left-radius: 3px;
|
5495 |
-
border-top-right-radius: 3px;
|
5496 |
-
}
|
5497 |
-
.panel > .table:first-child > thead:first-child > tr:first-child,
|
5498 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
5499 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child,
|
5500 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
|
5501 |
-
border-top-left-radius: 3px;
|
5502 |
-
border-top-right-radius: 3px;
|
5503 |
-
}
|
5504 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5505 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5506 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5507 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5508 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5509 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5510 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
5511 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
5512 |
-
border-top-left-radius: 3px;
|
5513 |
-
}
|
5514 |
-
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5515 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5516 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5517 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5518 |
-
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5519 |
-
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5520 |
-
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
5521 |
-
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
5522 |
-
border-top-right-radius: 3px;
|
5523 |
-
}
|
5524 |
-
.panel > .table:last-child,
|
5525 |
-
.panel > .table-responsive:last-child > .table:last-child {
|
5526 |
-
border-bottom-right-radius: 3px;
|
5527 |
-
border-bottom-left-radius: 3px;
|
5528 |
-
}
|
5529 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child,
|
5530 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
5531 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child,
|
5532 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
|
5533 |
-
border-bottom-right-radius: 3px;
|
5534 |
-
border-bottom-left-radius: 3px;
|
5535 |
-
}
|
5536 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5537 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5538 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5539 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5540 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5541 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5542 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
5543 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
5544 |
-
border-bottom-left-radius: 3px;
|
5545 |
-
}
|
5546 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5547 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5548 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5549 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5550 |
-
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5551 |
-
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5552 |
-
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
5553 |
-
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
5554 |
-
border-bottom-right-radius: 3px;
|
5555 |
-
}
|
5556 |
-
.panel > .panel-body + .table,
|
5557 |
-
.panel > .panel-body + .table-responsive,
|
5558 |
-
.panel > .table + .panel-body,
|
5559 |
-
.panel > .table-responsive + .panel-body {
|
5560 |
-
border-top: 1px solid #ddd;
|
5561 |
-
}
|
5562 |
-
.panel > .table > tbody:first-child > tr:first-child th,
|
5563 |
-
.panel > .table > tbody:first-child > tr:first-child td {
|
5564 |
-
border-top: 0;
|
5565 |
-
}
|
5566 |
-
.panel > .table-bordered,
|
5567 |
-
.panel > .table-responsive > .table-bordered {
|
5568 |
-
border: 0;
|
5569 |
-
}
|
5570 |
-
.panel > .table-bordered > thead > tr > th:first-child,
|
5571 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
5572 |
-
.panel > .table-bordered > tbody > tr > th:first-child,
|
5573 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
5574 |
-
.panel > .table-bordered > tfoot > tr > th:first-child,
|
5575 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
5576 |
-
.panel > .table-bordered > thead > tr > td:first-child,
|
5577 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
5578 |
-
.panel > .table-bordered > tbody > tr > td:first-child,
|
5579 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
5580 |
-
.panel > .table-bordered > tfoot > tr > td:first-child,
|
5581 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
5582 |
-
border-left: 0;
|
5583 |
-
}
|
5584 |
-
.panel > .table-bordered > thead > tr > th:last-child,
|
5585 |
-
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
5586 |
-
.panel > .table-bordered > tbody > tr > th:last-child,
|
5587 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
5588 |
-
.panel > .table-bordered > tfoot > tr > th:last-child,
|
5589 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
5590 |
-
.panel > .table-bordered > thead > tr > td:last-child,
|
5591 |
-
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
5592 |
-
.panel > .table-bordered > tbody > tr > td:last-child,
|
5593 |
-
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
5594 |
-
.panel > .table-bordered > tfoot > tr > td:last-child,
|
5595 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
5596 |
-
border-right: 0;
|
5597 |
-
}
|
5598 |
-
.panel > .table-bordered > thead > tr:first-child > td,
|
5599 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
5600 |
-
.panel > .table-bordered > tbody > tr:first-child > td,
|
5601 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
5602 |
-
.panel > .table-bordered > thead > tr:first-child > th,
|
5603 |
-
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
5604 |
-
.panel > .table-bordered > tbody > tr:first-child > th,
|
5605 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
5606 |
-
border-bottom: 0;
|
5607 |
-
}
|
5608 |
-
.panel > .table-bordered > tbody > tr:last-child > td,
|
5609 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
5610 |
-
.panel > .table-bordered > tfoot > tr:last-child > td,
|
5611 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
5612 |
-
.panel > .table-bordered > tbody > tr:last-child > th,
|
5613 |
-
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
5614 |
-
.panel > .table-bordered > tfoot > tr:last-child > th,
|
5615 |
-
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
5616 |
-
border-bottom: 0;
|
5617 |
-
}
|
5618 |
-
.panel > .table-responsive {
|
5619 |
-
margin-bottom: 0;
|
5620 |
-
border: 0;
|
5621 |
-
}
|
5622 |
-
.panel-group {
|
5623 |
-
margin-bottom: 20px;
|
5624 |
-
}
|
5625 |
-
.panel-group .panel {
|
5626 |
-
margin-bottom: 0;
|
5627 |
-
border-radius: 4px;
|
5628 |
-
}
|
5629 |
-
.panel-group .panel + .panel {
|
5630 |
-
margin-top: 5px;
|
5631 |
-
}
|
5632 |
-
.panel-group .panel-heading {
|
5633 |
-
border-bottom: 0;
|
5634 |
-
}
|
5635 |
-
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
5636 |
-
.panel-group .panel-heading + .panel-collapse > .list-group {
|
5637 |
-
border-top: 1px solid #ddd;
|
5638 |
-
}
|
5639 |
-
.panel-group .panel-footer {
|
5640 |
-
border-top: 0;
|
5641 |
-
}
|
5642 |
-
.panel-group .panel-footer + .panel-collapse .panel-body {
|
5643 |
-
border-bottom: 1px solid #ddd;
|
5644 |
-
}
|
5645 |
-
.panel-default {
|
5646 |
-
border-color: #ddd;
|
5647 |
-
}
|
5648 |
-
.panel-default > .panel-heading {
|
5649 |
-
color: #333;
|
5650 |
-
background-color: #f5f5f5;
|
5651 |
-
border-color: #ddd;
|
5652 |
-
}
|
5653 |
-
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
5654 |
-
border-top-color: #ddd;
|
5655 |
-
}
|
5656 |
-
.panel-default > .panel-heading .badge {
|
5657 |
-
color: #f5f5f5;
|
5658 |
-
background-color: #333;
|
5659 |
-
}
|
5660 |
-
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
5661 |
-
border-bottom-color: #ddd;
|
5662 |
-
}
|
5663 |
-
.panel-primary {
|
5664 |
-
border-color: #337ab7;
|
5665 |
-
}
|
5666 |
-
.panel-primary > .panel-heading {
|
5667 |
-
color: #fff;
|
5668 |
-
background-color: #337ab7;
|
5669 |
-
border-color: #337ab7;
|
5670 |
-
}
|
5671 |
-
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
5672 |
-
border-top-color: #337ab7;
|
5673 |
-
}
|
5674 |
-
.panel-primary > .panel-heading .badge {
|
5675 |
-
color: #337ab7;
|
5676 |
-
background-color: #fff;
|
5677 |
-
}
|
5678 |
-
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
5679 |
-
border-bottom-color: #337ab7;
|
5680 |
-
}
|
5681 |
-
.panel-success {
|
5682 |
-
border-color: #d6e9c6;
|
5683 |
-
}
|
5684 |
-
.panel-success > .panel-heading {
|
5685 |
-
color: #3c763d;
|
5686 |
-
background-color: #dff0d8;
|
5687 |
-
border-color: #d6e9c6;
|
5688 |
-
}
|
5689 |
-
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
5690 |
-
border-top-color: #d6e9c6;
|
5691 |
-
}
|
5692 |
-
.panel-success > .panel-heading .badge {
|
5693 |
-
color: #dff0d8;
|
5694 |
-
background-color: #3c763d;
|
5695 |
-
}
|
5696 |
-
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
5697 |
-
border-bottom-color: #d6e9c6;
|
5698 |
-
}
|
5699 |
-
.panel-info {
|
5700 |
-
border-color: #bce8f1;
|
5701 |
-
}
|
5702 |
-
.panel-info > .panel-heading {
|
5703 |
-
color: #31708f;
|
5704 |
-
background-color: #d9edf7;
|
5705 |
-
border-color: #bce8f1;
|
5706 |
-
}
|
5707 |
-
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
5708 |
-
border-top-color: #bce8f1;
|
5709 |
-
}
|
5710 |
-
.panel-info > .panel-heading .badge {
|
5711 |
-
color: #d9edf7;
|
5712 |
-
background-color: #31708f;
|
5713 |
-
}
|
5714 |
-
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
5715 |
-
border-bottom-color: #bce8f1;
|
5716 |
-
}
|
5717 |
-
.panel-warning {
|
5718 |
-
border-color: #faebcc;
|
5719 |
-
}
|
5720 |
-
.panel-warning > .panel-heading {
|
5721 |
-
color: #8a6d3b;
|
5722 |
-
background-color: #fcf8e3;
|
5723 |
-
border-color: #faebcc;
|
5724 |
-
}
|
5725 |
-
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
5726 |
-
border-top-color: #faebcc;
|
5727 |
-
}
|
5728 |
-
.panel-warning > .panel-heading .badge {
|
5729 |
-
color: #fcf8e3;
|
5730 |
-
background-color: #8a6d3b;
|
5731 |
-
}
|
5732 |
-
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
5733 |
-
border-bottom-color: #faebcc;
|
5734 |
-
}
|
5735 |
-
.panel-danger {
|
5736 |
-
border-color: #ebccd1;
|
5737 |
-
}
|
5738 |
-
.panel-danger > .panel-heading {
|
5739 |
-
color: #a94442;
|
5740 |
-
background-color: #f2dede;
|
5741 |
-
border-color: #ebccd1;
|
5742 |
-
}
|
5743 |
-
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
5744 |
-
border-top-color: #ebccd1;
|
5745 |
-
}
|
5746 |
-
.panel-danger > .panel-heading .badge {
|
5747 |
-
color: #f2dede;
|
5748 |
-
background-color: #a94442;
|
5749 |
-
}
|
5750 |
-
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
5751 |
-
border-bottom-color: #ebccd1;
|
5752 |
-
}
|
5753 |
-
.embed-responsive {
|
5754 |
-
position: relative;
|
5755 |
-
display: block;
|
5756 |
-
height: 0;
|
5757 |
-
padding: 0;
|
5758 |
-
overflow: hidden;
|
5759 |
-
}
|
5760 |
-
.embed-responsive .embed-responsive-item,
|
5761 |
-
.embed-responsive iframe,
|
5762 |
-
.embed-responsive embed,
|
5763 |
-
.embed-responsive object,
|
5764 |
-
.embed-responsive video {
|
5765 |
-
position: absolute;
|
5766 |
-
top: 0;
|
5767 |
-
bottom: 0;
|
5768 |
-
left: 0;
|
5769 |
-
width: 100%;
|
5770 |
-
height: 100%;
|
5771 |
-
border: 0;
|
5772 |
-
}
|
5773 |
-
.embed-responsive-16by9 {
|
5774 |
-
padding-bottom: 56.25%;
|
5775 |
-
}
|
5776 |
-
.embed-responsive-4by3 {
|
5777 |
-
padding-bottom: 75%;
|
5778 |
-
}
|
5779 |
-
.well {
|
5780 |
-
min-height: 20px;
|
5781 |
-
padding: 19px;
|
5782 |
-
margin-bottom: 20px;
|
5783 |
-
background-color: #f5f5f5;
|
5784 |
-
border: 1px solid #e3e3e3;
|
5785 |
-
border-radius: 4px;
|
5786 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5787 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5788 |
-
}
|
5789 |
-
.well blockquote {
|
5790 |
-
border-color: #ddd;
|
5791 |
-
border-color: rgba(0, 0, 0, .15);
|
5792 |
-
}
|
5793 |
-
.well-lg {
|
5794 |
-
padding: 24px;
|
5795 |
-
border-radius: 6px;
|
5796 |
-
}
|
5797 |
-
.well-sm {
|
5798 |
-
padding: 9px;
|
5799 |
-
border-radius: 3px;
|
5800 |
-
}
|
5801 |
-
.close {
|
5802 |
-
float: right;
|
5803 |
-
font-size: 24px;
|
5804 |
-
font-weight: bold;
|
5805 |
-
line-height: 1;
|
5806 |
-
color: #000;
|
5807 |
-
text-shadow: 0 1px 0 #fff;
|
5808 |
-
filter: alpha(opacity=20);
|
5809 |
-
opacity: .4;
|
5810 |
-
}
|
5811 |
-
.close:hover,
|
5812 |
-
.close:focus {
|
5813 |
-
color: #000;
|
5814 |
-
text-decoration: none;
|
5815 |
-
cursor: pointer;
|
5816 |
-
filter: alpha(opacity=50);
|
5817 |
-
opacity: .5;
|
5818 |
-
}
|
5819 |
-
button.close {
|
5820 |
-
-webkit-appearance: none;
|
5821 |
-
padding: 0;
|
5822 |
-
cursor: pointer;
|
5823 |
-
background: transparent;
|
5824 |
-
border: 0;
|
5825 |
-
}
|
5826 |
-
.modal-open {
|
5827 |
-
overflow: hidden;
|
5828 |
-
overflow-y: auto;
|
5829 |
-
}
|
5830 |
-
.modal {
|
5831 |
-
position: fixed;
|
5832 |
-
top: 45px;
|
5833 |
-
right: 0;
|
5834 |
-
bottom: 0;
|
5835 |
-
left: 0;
|
5836 |
-
z-index: 1050;
|
5837 |
-
display: none;
|
5838 |
-
overflow: hidden;
|
5839 |
-
-webkit-overflow-scrolling: touch;
|
5840 |
-
outline: 0;
|
5841 |
-
}
|
5842 |
-
.modal.fade .modal-dialog {
|
5843 |
-
-webkit-transition: -webkit-transform .3s ease-out;
|
5844 |
-
-o-transition: -o-transform .3s ease-out;
|
5845 |
-
transition: transform .3s ease-out;
|
5846 |
-
-webkit-transform: translate(0, -25%);
|
5847 |
-
-ms-transform: translate(0, -25%);
|
5848 |
-
-o-transform: translate(0, -25%);
|
5849 |
-
transform: translate(0, -25%);
|
5850 |
-
}
|
5851 |
-
.modal.in .modal-dialog {
|
5852 |
-
-webkit-transform: translate(0, 0);
|
5853 |
-
-ms-transform: translate(0, 0);
|
5854 |
-
-o-transform: translate(0, 0);
|
5855 |
-
transform: translate(0, 0);
|
5856 |
-
}
|
5857 |
-
.modal-open .modal {
|
5858 |
-
overflow-x: hidden;
|
5859 |
-
overflow-y: auto;
|
5860 |
-
}
|
5861 |
-
.modal-dialog {
|
5862 |
-
position: relative;
|
5863 |
-
width: auto;
|
5864 |
-
margin: 10px;
|
5865 |
-
}
|
5866 |
-
.modal-content {
|
5867 |
-
position: relative;
|
5868 |
-
background-color: #fff;
|
5869 |
-
-webkit-background-clip: padding-box;
|
5870 |
-
background-clip: padding-box;
|
5871 |
-
border: 1px solid #999;
|
5872 |
-
border: 1px solid rgba(0, 0, 0, .2);
|
5873 |
-
border-radius: 6px;
|
5874 |
-
outline: 0;
|
5875 |
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5876 |
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5877 |
-
}
|
5878 |
-
.modal-backdrop {
|
5879 |
-
position: fixed;
|
5880 |
-
top: 0;
|
5881 |
-
right: 0;
|
5882 |
-
bottom: 0;
|
5883 |
-
left: 0;
|
5884 |
-
z-index: 1040;
|
5885 |
-
background-color: #000;
|
5886 |
-
}
|
5887 |
-
.modal-backdrop.fade {
|
5888 |
-
filter: alpha(opacity=0);
|
5889 |
-
opacity: 0;
|
5890 |
-
}
|
5891 |
-
.modal-backdrop.in {
|
5892 |
-
filter: alpha(opacity=50);
|
5893 |
-
opacity: .5;
|
5894 |
-
}
|
5895 |
-
.modal-header {
|
5896 |
-
padding: 15px;
|
5897 |
-
border-bottom: 1px solid #e5e5e5;
|
5898 |
-
}
|
5899 |
-
.modal-header .close {
|
5900 |
-
margin-top: -2px;
|
5901 |
-
}
|
5902 |
-
.modal-title {
|
5903 |
-
margin: 0;
|
5904 |
-
line-height: 1.42857143;
|
5905 |
-
}
|
5906 |
-
.modal-body {
|
5907 |
-
position: relative;
|
5908 |
-
padding: 15px;
|
5909 |
-
}
|
5910 |
-
.modal-footer {
|
5911 |
-
padding: 15px;
|
5912 |
-
text-align: right;
|
5913 |
-
border-top: 1px solid #e5e5e5;
|
5914 |
-
}
|
5915 |
-
.modal-footer .btn + .btn {
|
5916 |
-
margin-bottom: 0;
|
5917 |
-
margin-left: 5px;
|
5918 |
-
}
|
5919 |
-
.modal-footer .btn-group .btn + .btn {
|
5920 |
-
margin-left: -1px;
|
5921 |
-
}
|
5922 |
-
.modal-footer .btn-block + .btn-block {
|
5923 |
-
margin-left: 0;
|
5924 |
-
}
|
5925 |
-
.modal-scrollbar-measure {
|
5926 |
-
position: absolute;
|
5927 |
-
top: -9999px;
|
5928 |
-
width: 50px;
|
5929 |
-
height: 50px;
|
5930 |
-
overflow: scroll;
|
5931 |
-
}
|
5932 |
-
@media (min-width: 768px) {
|
5933 |
-
.modal-dialog {
|
5934 |
-
width: 600px;
|
5935 |
-
margin: 30px auto;
|
5936 |
-
}
|
5937 |
-
.modal-content {
|
5938 |
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5939 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5940 |
-
}
|
5941 |
-
.modal-sm {
|
5942 |
-
width: 300px;
|
5943 |
-
}
|
5944 |
-
}
|
5945 |
-
@media (min-width: 992px) {
|
5946 |
-
.modal-lg {
|
5947 |
-
width: 900px;
|
5948 |
-
}
|
5949 |
-
}
|
5950 |
-
.tooltip {
|
5951 |
-
position: absolute;
|
5952 |
-
z-index: 1070;
|
5953 |
-
display: block;
|
5954 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5955 |
-
font-size: 12px;
|
5956 |
-
font-style: normal;
|
5957 |
-
font-weight: normal;
|
5958 |
-
line-height: 1.42857143;
|
5959 |
-
text-align: left;
|
5960 |
-
text-align: start;
|
5961 |
-
text-decoration: none;
|
5962 |
-
text-shadow: none;
|
5963 |
-
text-transform: none;
|
5964 |
-
letter-spacing: normal;
|
5965 |
-
word-break: normal;
|
5966 |
-
word-spacing: normal;
|
5967 |
-
word-wrap: normal;
|
5968 |
-
white-space: normal;
|
5969 |
-
filter: alpha(opacity=0);
|
5970 |
-
opacity: 0;
|
5971 |
-
|
5972 |
-
line-break: auto;
|
5973 |
-
}
|
5974 |
-
.tooltip.in {
|
5975 |
-
filter: alpha(opacity=90);
|
5976 |
-
opacity: .9;
|
5977 |
-
}
|
5978 |
-
.tooltip.top {
|
5979 |
-
padding: 5px 0;
|
5980 |
-
margin-top: -3px;
|
5981 |
-
}
|
5982 |
-
.tooltip.right {
|
5983 |
-
padding: 0 5px;
|
5984 |
-
margin-left: 3px;
|
5985 |
-
}
|
5986 |
-
.tooltip.bottom {
|
5987 |
-
padding: 5px 0;
|
5988 |
-
margin-top: 3px;
|
5989 |
-
}
|
5990 |
-
.tooltip.left {
|
5991 |
-
padding: 0 5px;
|
5992 |
-
margin-left: -3px;
|
5993 |
-
}
|
5994 |
-
.tooltip-inner {
|
5995 |
-
max-width: 200px;
|
5996 |
-
padding: 3px 8px;
|
5997 |
-
color: #fff;
|
5998 |
-
text-align: center;
|
5999 |
-
background-color: #000;
|
6000 |
-
border-radius: 4px;
|
6001 |
-
}
|
6002 |
-
.tooltip-arrow {
|
6003 |
-
position: absolute;
|
6004 |
-
width: 0;
|
6005 |
-
height: 0;
|
6006 |
-
border-color: transparent;
|
6007 |
-
border-style: solid;
|
6008 |
-
}
|
6009 |
-
.tooltip.top .tooltip-arrow {
|
6010 |
-
bottom: 0;
|
6011 |
-
left: 50%;
|
6012 |
-
margin-left: -5px;
|
6013 |
-
border-width: 5px 5px 0;
|
6014 |
-
border-top-color: #000;
|
6015 |
-
}
|
6016 |
-
.tooltip.top-left .tooltip-arrow {
|
6017 |
-
right: 5px;
|
6018 |
-
bottom: 0;
|
6019 |
-
margin-bottom: -5px;
|
6020 |
-
border-width: 5px 5px 0;
|
6021 |
-
border-top-color: #000;
|
6022 |
-
}
|
6023 |
-
.tooltip.top-right .tooltip-arrow {
|
6024 |
-
bottom: 0;
|
6025 |
-
left: 5px;
|
6026 |
-
margin-bottom: -5px;
|
6027 |
-
border-width: 5px 5px 0;
|
6028 |
-
border-top-color: #000;
|
6029 |
-
}
|
6030 |
-
.tooltip.right .tooltip-arrow {
|
6031 |
-
top: 50%;
|
6032 |
-
left: 0;
|
6033 |
-
margin-top: -5px;
|
6034 |
-
border-width: 5px 5px 5px 0;
|
6035 |
-
border-right-color: #000;
|
6036 |
-
}
|
6037 |
-
.tooltip.left .tooltip-arrow {
|
6038 |
-
top: 50%;
|
6039 |
-
right: 0;
|
6040 |
-
margin-top: -5px;
|
6041 |
-
border-width: 5px 0 5px 5px;
|
6042 |
-
border-left-color: #000;
|
6043 |
-
}
|
6044 |
-
.tooltip.bottom .tooltip-arrow {
|
6045 |
-
top: 0;
|
6046 |
-
left: 50%;
|
6047 |
-
margin-left: -5px;
|
6048 |
-
border-width: 0 5px 5px;
|
6049 |
-
border-bottom-color: #000;
|
6050 |
-
}
|
6051 |
-
.tooltip.bottom-left .tooltip-arrow {
|
6052 |
-
top: 0;
|
6053 |
-
right: 5px;
|
6054 |
-
margin-top: -5px;
|
6055 |
-
border-width: 0 5px 5px;
|
6056 |
-
border-bottom-color: #000;
|
6057 |
-
}
|
6058 |
-
.tooltip.bottom-right .tooltip-arrow {
|
6059 |
-
top: 0;
|
6060 |
-
left: 5px;
|
6061 |
-
margin-top: -5px;
|
6062 |
-
border-width: 0 5px 5px;
|
6063 |
-
border-bottom-color: #000;
|
6064 |
-
}
|
6065 |
-
.popover {
|
6066 |
-
position: absolute;
|
6067 |
-
top: 0;
|
6068 |
-
left: 0;
|
6069 |
-
z-index: 1060;
|
6070 |
-
display: none;
|
6071 |
-
max-width: 276px;
|
6072 |
-
padding: 1px;
|
6073 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6074 |
-
font-size: 14px;
|
6075 |
-
font-style: normal;
|
6076 |
-
font-weight: normal;
|
6077 |
-
line-height: 1.42857143;
|
6078 |
-
text-align: left;
|
6079 |
-
text-align: start;
|
6080 |
-
text-decoration: none;
|
6081 |
-
text-shadow: none;
|
6082 |
-
text-transform: none;
|
6083 |
-
letter-spacing: normal;
|
6084 |
-
word-break: normal;
|
6085 |
-
word-spacing: normal;
|
6086 |
-
word-wrap: normal;
|
6087 |
-
white-space: normal;
|
6088 |
-
background-color: #fff;
|
6089 |
-
-webkit-background-clip: padding-box;
|
6090 |
-
background-clip: padding-box;
|
6091 |
-
border: 1px solid #ccc;
|
6092 |
-
border: 1px solid rgba(0, 0, 0, .2);
|
6093 |
-
border-radius: 6px;
|
6094 |
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6095 |
-
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6096 |
-
|
6097 |
-
line-break: auto;
|
6098 |
-
}
|
6099 |
-
.popover.top {
|
6100 |
-
margin-top: -10px;
|
6101 |
-
}
|
6102 |
-
.popover.right {
|
6103 |
-
margin-left: 10px;
|
6104 |
-
}
|
6105 |
-
.popover.bottom {
|
6106 |
-
margin-top: 10px;
|
6107 |
-
}
|
6108 |
-
.popover.left {
|
6109 |
-
margin-left: -10px;
|
6110 |
-
}
|
6111 |
-
.popover-title {
|
6112 |
-
padding: 8px 14px;
|
6113 |
-
margin: 0;
|
6114 |
-
font-size: 14px;
|
6115 |
-
background-color: #f7f7f7;
|
6116 |
-
border-bottom: 1px solid #ebebeb;
|
6117 |
-
border-radius: 5px 5px 0 0;
|
6118 |
-
}
|
6119 |
-
.popover-content {
|
6120 |
-
padding: 9px 14px;
|
6121 |
-
}
|
6122 |
-
.popover > .arrow,
|
6123 |
-
.popover > .arrow:after {
|
6124 |
-
position: absolute;
|
6125 |
-
display: block;
|
6126 |
-
width: 0;
|
6127 |
-
height: 0;
|
6128 |
-
border-color: transparent;
|
6129 |
-
border-style: solid;
|
6130 |
-
}
|
6131 |
-
.popover > .arrow {
|
6132 |
-
border-width: 11px;
|
6133 |
-
}
|
6134 |
-
.popover > .arrow:after {
|
6135 |
-
content: "";
|
6136 |
-
border-width: 10px;
|
6137 |
-
}
|
6138 |
-
.popover.top > .arrow {
|
6139 |
-
bottom: -11px;
|
6140 |
-
left: 50%;
|
6141 |
-
margin-left: -11px;
|
6142 |
-
border-top-color: #999;
|
6143 |
-
border-top-color: rgba(0, 0, 0, .25);
|
6144 |
-
border-bottom-width: 0;
|
6145 |
-
}
|
6146 |
-
.popover.top > .arrow:after {
|
6147 |
-
bottom: 1px;
|
6148 |
-
margin-left: -10px;
|
6149 |
-
content: " ";
|
6150 |
-
border-top-color: #fff;
|
6151 |
-
border-bottom-width: 0;
|
6152 |
-
}
|
6153 |
-
.popover.right > .arrow {
|
6154 |
-
top: 50%;
|
6155 |
-
left: -11px;
|
6156 |
-
margin-top: -11px;
|
6157 |
-
border-right-color: #999;
|
6158 |
-
border-right-color: rgba(0, 0, 0, .25);
|
6159 |
-
border-left-width: 0;
|
6160 |
-
}
|
6161 |
-
.popover.right > .arrow:after {
|
6162 |
-
bottom: -10px;
|
6163 |
-
left: 1px;
|
6164 |
-
content: " ";
|
6165 |
-
border-right-color: #fff;
|
6166 |
-
border-left-width: 0;
|
6167 |
-
}
|
6168 |
-
.popover.bottom > .arrow {
|
6169 |
-
top: -11px;
|
6170 |
-
left: 50%;
|
6171 |
-
margin-left: -11px;
|
6172 |
-
border-top-width: 0;
|
6173 |
-
border-bottom-color: #999;
|
6174 |
-
border-bottom-color: rgba(0, 0, 0, .25);
|
6175 |
-
}
|
6176 |
-
.popover.bottom > .arrow:after {
|
6177 |
-
top: 1px;
|
6178 |
-
margin-left: -10px;
|
6179 |
-
content: " ";
|
6180 |
-
border-top-width: 0;
|
6181 |
-
border-bottom-color: #fff;
|
6182 |
-
}
|
6183 |
-
.popover.left > .arrow {
|
6184 |
-
top: 50%;
|
6185 |
-
right: -11px;
|
6186 |
-
margin-top: -11px;
|
6187 |
-
border-right-width: 0;
|
6188 |
-
border-left-color: #999;
|
6189 |
-
border-left-color: rgba(0, 0, 0, .25);
|
6190 |
-
}
|
6191 |
-
.popover.left > .arrow:after {
|
6192 |
-
right: 1px;
|
6193 |
-
bottom: -10px;
|
6194 |
-
content: " ";
|
6195 |
-
border-right-width: 0;
|
6196 |
-
border-left-color: #fff;
|
6197 |
-
}
|
6198 |
-
.carousel {
|
6199 |
-
position: relative;
|
6200 |
-
}
|
6201 |
-
.carousel-inner {
|
6202 |
-
position: relative;
|
6203 |
-
width: 100%;
|
6204 |
-
overflow: hidden;
|
6205 |
-
}
|
6206 |
-
.carousel-inner > .item {
|
6207 |
-
position: relative;
|
6208 |
-
display: none;
|
6209 |
-
-webkit-transition: .6s ease-in-out left;
|
6210 |
-
-o-transition: .6s ease-in-out left;
|
6211 |
-
transition: .6s ease-in-out left;
|
6212 |
-
}
|
6213 |
-
.carousel-inner > .item > img,
|
6214 |
-
.carousel-inner > .item > a > img {
|
6215 |
-
line-height: 1;
|
6216 |
-
}
|
6217 |
-
@media all and (transform-3d), (-webkit-transform-3d) {
|
6218 |
-
.carousel-inner > .item {
|
6219 |
-
-webkit-transition: -webkit-transform .6s ease-in-out;
|
6220 |
-
-o-transition: -o-transform .6s ease-in-out;
|
6221 |
-
transition: transform .6s ease-in-out;
|
6222 |
-
|
6223 |
-
-webkit-backface-visibility: hidden;
|
6224 |
-
backface-visibility: hidden;
|
6225 |
-
-webkit-perspective: 1000px;
|
6226 |
-
perspective: 1000px;
|
6227 |
-
}
|
6228 |
-
.carousel-inner > .item.next,
|
6229 |
-
.carousel-inner > .item.active.right {
|
6230 |
-
left: 0;
|
6231 |
-
-webkit-transform: translate3d(100%, 0, 0);
|
6232 |
-
transform: translate3d(100%, 0, 0);
|
6233 |
-
}
|
6234 |
-
.carousel-inner > .item.prev,
|
6235 |
-
.carousel-inner > .item.active.left {
|
6236 |
-
left: 0;
|
6237 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
6238 |
-
transform: translate3d(-100%, 0, 0);
|
6239 |
-
}
|
6240 |
-
.carousel-inner > .item.next.left,
|
6241 |
-
.carousel-inner > .item.prev.right,
|
6242 |
-
.carousel-inner > .item.active {
|
6243 |
-
left: 0;
|
6244 |
-
-webkit-transform: translate3d(0, 0, 0);
|
6245 |
-
transform: translate3d(0, 0, 0);
|
6246 |
-
}
|
6247 |
-
}
|
6248 |
-
.carousel-inner > .active,
|
6249 |
-
.carousel-inner > .next,
|
6250 |
-
.carousel-inner > .prev {
|
6251 |
-
display: block;
|
6252 |
-
}
|
6253 |
-
.carousel-inner > .active {
|
6254 |
-
left: 0;
|
6255 |
-
}
|
6256 |
-
.carousel-inner > .next,
|
6257 |
-
.carousel-inner > .prev {
|
6258 |
-
position: absolute;
|
6259 |
-
top: 0;
|
6260 |
-
width: 100%;
|
6261 |
-
}
|
6262 |
-
.carousel-inner > .next {
|
6263 |
-
left: 100%;
|
6264 |
-
}
|
6265 |
-
.carousel-inner > .prev {
|
6266 |
-
left: -100%;
|
6267 |
-
}
|
6268 |
-
.carousel-inner > .next.left,
|
6269 |
-
.carousel-inner > .prev.right {
|
6270 |
-
left: 0;
|
6271 |
-
}
|
6272 |
-
.carousel-inner > .active.left {
|
6273 |
-
left: -100%;
|
6274 |
-
}
|
6275 |
-
.carousel-inner > .active.right {
|
6276 |
-
left: 100%;
|
6277 |
-
}
|
6278 |
-
.carousel-control {
|
6279 |
-
position: absolute;
|
6280 |
-
top: 0;
|
6281 |
-
bottom: 0;
|
6282 |
-
left: 0;
|
6283 |
-
width: 15%;
|
6284 |
-
font-size: 20px;
|
6285 |
-
color: #fff;
|
6286 |
-
text-align: center;
|
6287 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6288 |
-
background-color: rgba(0, 0, 0, 0);
|
6289 |
-
filter: alpha(opacity=50);
|
6290 |
-
opacity: .5;
|
6291 |
-
}
|
6292 |
-
.carousel-control.left {
|
6293 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6294 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6295 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
6296 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6297 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
6298 |
-
background-repeat: repeat-x;
|
6299 |
-
}
|
6300 |
-
.carousel-control.right {
|
6301 |
-
right: 0;
|
6302 |
-
left: auto;
|
6303 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6304 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6305 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
6306 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6307 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
6308 |
-
background-repeat: repeat-x;
|
6309 |
-
}
|
6310 |
-
.carousel-control:hover,
|
6311 |
-
.carousel-control:focus {
|
6312 |
-
color: #fff;
|
6313 |
-
text-decoration: none;
|
6314 |
-
filter: alpha(opacity=90);
|
6315 |
-
outline: 0;
|
6316 |
-
opacity: .9;
|
6317 |
-
}
|
6318 |
-
.carousel-control .icon-prev,
|
6319 |
-
.carousel-control .icon-next,
|
6320 |
-
.carousel-control .glyphicon-chevron-left,
|
6321 |
-
.carousel-control .glyphicon-chevron-right {
|
6322 |
-
position: absolute;
|
6323 |
-
top: 50%;
|
6324 |
-
z-index: 5;
|
6325 |
-
display: inline-block;
|
6326 |
-
margin-top: -10px;
|
6327 |
-
}
|
6328 |
-
.carousel-control .icon-prev,
|
6329 |
-
.carousel-control .glyphicon-chevron-left {
|
6330 |
-
left: 50%;
|
6331 |
-
margin-left: -10px;
|
6332 |
-
}
|
6333 |
-
.carousel-control .icon-next,
|
6334 |
-
.carousel-control .glyphicon-chevron-right {
|
6335 |
-
right: 50%;
|
6336 |
-
margin-right: -10px;
|
6337 |
-
}
|
6338 |
-
.carousel-control .icon-prev,
|
6339 |
-
.carousel-control .icon-next {
|
6340 |
-
width: 20px;
|
6341 |
-
height: 20px;
|
6342 |
-
font-family: serif;
|
6343 |
-
line-height: 1;
|
6344 |
-
}
|
6345 |
-
.carousel-control .icon-prev:before {
|
6346 |
-
content: '\2039';
|
6347 |
-
}
|
6348 |
-
.carousel-control .icon-next:before {
|
6349 |
-
content: '\203a';
|
6350 |
-
}
|
6351 |
-
.carousel-indicators {
|
6352 |
-
position: absolute;
|
6353 |
-
bottom: 10px;
|
6354 |
-
left: 50%;
|
6355 |
-
z-index: 15;
|
6356 |
-
width: 60%;
|
6357 |
-
padding-left: 0;
|
6358 |
-
margin-left: -30%;
|
6359 |
-
text-align: center;
|
6360 |
-
list-style: none;
|
6361 |
-
}
|
6362 |
-
.carousel-indicators li {
|
6363 |
-
display: inline-block;
|
6364 |
-
width: 10px;
|
6365 |
-
height: 10px;
|
6366 |
-
margin: 1px;
|
6367 |
-
text-indent: -999px;
|
6368 |
-
cursor: pointer;
|
6369 |
-
background-color: #000 \9;
|
6370 |
-
background-color: rgba(0, 0, 0, 0);
|
6371 |
-
border: 1px solid #fff;
|
6372 |
-
border-radius: 10px;
|
6373 |
-
}
|
6374 |
-
.carousel-indicators .active {
|
6375 |
-
width: 12px;
|
6376 |
-
height: 12px;
|
6377 |
-
margin: 0;
|
6378 |
-
background-color: #fff;
|
6379 |
-
}
|
6380 |
-
.carousel-caption {
|
6381 |
-
position: absolute;
|
6382 |
-
right: 15%;
|
6383 |
-
bottom: 20px;
|
6384 |
-
left: 15%;
|
6385 |
-
z-index: 10;
|
6386 |
-
padding-top: 20px;
|
6387 |
-
padding-bottom: 20px;
|
6388 |
-
color: #fff;
|
6389 |
-
text-align: center;
|
6390 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6391 |
-
}
|
6392 |
-
.carousel-caption .btn {
|
6393 |
-
text-shadow: none;
|
6394 |
-
}
|
6395 |
-
@media screen and (min-width: 768px) {
|
6396 |
-
.carousel-control .glyphicon-chevron-left,
|
6397 |
-
.carousel-control .glyphicon-chevron-right,
|
6398 |
-
.carousel-control .icon-prev,
|
6399 |
-
.carousel-control .icon-next {
|
6400 |
-
width: 30px;
|
6401 |
-
height: 30px;
|
6402 |
-
margin-top: -10px;
|
6403 |
-
font-size: 30px;
|
6404 |
-
}
|
6405 |
-
.carousel-control .glyphicon-chevron-left,
|
6406 |
-
.carousel-control .icon-prev {
|
6407 |
-
margin-left: -10px;
|
6408 |
-
}
|
6409 |
-
.carousel-control .glyphicon-chevron-right,
|
6410 |
-
.carousel-control .icon-next {
|
6411 |
-
margin-right: -10px;
|
6412 |
-
}
|
6413 |
-
.carousel-caption {
|
6414 |
-
right: 20%;
|
6415 |
-
left: 20%;
|
6416 |
-
padding-bottom: 30px;
|
6417 |
-
}
|
6418 |
-
.carousel-indicators {
|
6419 |
-
bottom: 20px;
|
6420 |
-
}
|
6421 |
-
}
|
6422 |
-
.clearfix:before,
|
6423 |
-
.clearfix:after,
|
6424 |
-
.dl-horizontal dd:before,
|
6425 |
-
.dl-horizontal dd:after,
|
6426 |
-
.container:before,
|
6427 |
-
.container:after,
|
6428 |
-
.container-fluid:before,
|
6429 |
-
.container-fluid:after,
|
6430 |
-
.row:before,
|
6431 |
-
.row:after,
|
6432 |
-
.form-horizontal .form-group:before,
|
6433 |
-
.form-horizontal .form-group:after,
|
6434 |
-
.btn-toolbar:before,
|
6435 |
-
.btn-toolbar:after,
|
6436 |
-
.btn-group-vertical > .btn-group:before,
|
6437 |
-
.btn-group-vertical > .btn-group:after,
|
6438 |
-
.nav:before,
|
6439 |
-
.nav:after,
|
6440 |
-
.navbar:before,
|
6441 |
-
.navbar:after,
|
6442 |
-
.navbar-header:before,
|
6443 |
-
.navbar-header:after,
|
6444 |
-
.navbar-collapse:before,
|
6445 |
-
.navbar-collapse:after,
|
6446 |
-
.pager:before,
|
6447 |
-
.pager:after,
|
6448 |
-
.panel-body:before,
|
6449 |
-
.panel-body:after,
|
6450 |
-
.modal-header:before,
|
6451 |
-
.modal-header:after,
|
6452 |
-
.modal-footer:before,
|
6453 |
-
.modal-footer:after {
|
6454 |
-
display: table;
|
6455 |
-
content: " ";
|
6456 |
-
}
|
6457 |
-
.clearfix:after,
|
6458 |
-
.dl-horizontal dd:after,
|
6459 |
-
.container:after,
|
6460 |
-
.container-fluid:after,
|
6461 |
-
.row:after,
|
6462 |
-
.form-horizontal .form-group:after,
|
6463 |
-
.btn-toolbar:after,
|
6464 |
-
.btn-group-vertical > .btn-group:after,
|
6465 |
-
.nav:after,
|
6466 |
-
.navbar:after,
|
6467 |
-
.navbar-header:after,
|
6468 |
-
.navbar-collapse:after,
|
6469 |
-
.pager:after,
|
6470 |
-
.panel-body:after,
|
6471 |
-
.modal-header:after,
|
6472 |
-
.modal-footer:after {
|
6473 |
-
clear: both;
|
6474 |
-
}
|
6475 |
-
.center-block {
|
6476 |
-
display: block;
|
6477 |
-
margin-right: auto;
|
6478 |
-
margin-left: auto;
|
6479 |
-
}
|
6480 |
-
.pull-right {
|
6481 |
-
float: right !important;
|
6482 |
-
}
|
6483 |
-
.pull-left {
|
6484 |
-
float: left !important;
|
6485 |
-
}
|
6486 |
-
.hide {
|
6487 |
-
display: none !important;
|
6488 |
-
}
|
6489 |
-
.show {
|
6490 |
-
display: block !important;
|
6491 |
-
}
|
6492 |
-
.invisible {
|
6493 |
-
visibility: hidden;
|
6494 |
-
}
|
6495 |
-
.text-hide {
|
6496 |
-
font: 0/0 a;
|
6497 |
-
color: transparent;
|
6498 |
-
text-shadow: none;
|
6499 |
-
background-color: transparent;
|
6500 |
-
border: 0;
|
6501 |
-
}
|
6502 |
-
.hidden {
|
6503 |
-
display: none !important;
|
6504 |
-
}
|
6505 |
-
.affix {
|
6506 |
-
position: fixed;
|
6507 |
-
}
|
6508 |
-
@-ms-viewport {
|
6509 |
-
width: device-width;
|
6510 |
-
}
|
6511 |
-
.visible-xs,
|
6512 |
-
.visible-sm,
|
6513 |
-
.visible-md,
|
6514 |
-
.visible-lg {
|
6515 |
-
display: none !important;
|
6516 |
-
}
|
6517 |
-
.visible-xs-block,
|
6518 |
-
.visible-xs-inline,
|
6519 |
-
.visible-xs-inline-block,
|
6520 |
-
.visible-sm-block,
|
6521 |
-
.visible-sm-inline,
|
6522 |
-
.visible-sm-inline-block,
|
6523 |
-
.visible-md-block,
|
6524 |
-
.visible-md-inline,
|
6525 |
-
.visible-md-inline-block,
|
6526 |
-
.visible-lg-block,
|
6527 |
-
.visible-lg-inline,
|
6528 |
-
.visible-lg-inline-block {
|
6529 |
-
display: none !important;
|
6530 |
-
}
|
6531 |
-
@media (max-width: 767px) {
|
6532 |
-
.visible-xs {
|
6533 |
-
display: block !important;
|
6534 |
-
}
|
6535 |
-
table.visible-xs {
|
6536 |
-
display: table !important;
|
6537 |
-
}
|
6538 |
-
tr.visible-xs {
|
6539 |
-
display: table-row !important;
|
6540 |
-
}
|
6541 |
-
th.visible-xs,
|
6542 |
-
td.visible-xs {
|
6543 |
-
display: table-cell !important;
|
6544 |
-
}
|
6545 |
-
}
|
6546 |
-
@media (max-width: 767px) {
|
6547 |
-
.visible-xs-block {
|
6548 |
-
display: block !important;
|
6549 |
-
}
|
6550 |
-
}
|
6551 |
-
@media (max-width: 767px) {
|
6552 |
-
.visible-xs-inline {
|
6553 |
-
display: inline !important;
|
6554 |
-
}
|
6555 |
-
}
|
6556 |
-
@media (max-width: 767px) {
|
6557 |
-
.visible-xs-inline-block {
|
6558 |
-
display: inline-block !important;
|
6559 |
-
}
|
6560 |
-
}
|
6561 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6562 |
-
.visible-sm {
|
6563 |
-
display: block !important;
|
6564 |
-
}
|
6565 |
-
table.visible-sm {
|
6566 |
-
display: table !important;
|
6567 |
-
}
|
6568 |
-
tr.visible-sm {
|
6569 |
-
display: table-row !important;
|
6570 |
-
}
|
6571 |
-
th.visible-sm,
|
6572 |
-
td.visible-sm {
|
6573 |
-
display: table-cell !important;
|
6574 |
-
}
|
6575 |
-
}
|
6576 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6577 |
-
.visible-sm-block {
|
6578 |
-
display: block !important;
|
6579 |
-
}
|
6580 |
-
}
|
6581 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6582 |
-
.visible-sm-inline {
|
6583 |
-
display: inline !important;
|
6584 |
-
}
|
6585 |
-
}
|
6586 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6587 |
-
.visible-sm-inline-block {
|
6588 |
-
display: inline-block !important;
|
6589 |
-
}
|
6590 |
-
}
|
6591 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6592 |
-
.visible-md {
|
6593 |
-
display: block !important;
|
6594 |
-
}
|
6595 |
-
table.visible-md {
|
6596 |
-
display: table !important;
|
6597 |
-
}
|
6598 |
-
tr.visible-md {
|
6599 |
-
display: table-row !important;
|
6600 |
-
}
|
6601 |
-
th.visible-md,
|
6602 |
-
td.visible-md {
|
6603 |
-
display: table-cell !important;
|
6604 |
-
}
|
6605 |
-
}
|
6606 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6607 |
-
.visible-md-block {
|
6608 |
-
display: block !important;
|
6609 |
-
}
|
6610 |
-
}
|
6611 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6612 |
-
.visible-md-inline {
|
6613 |
-
display: inline !important;
|
6614 |
-
}
|
6615 |
-
}
|
6616 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6617 |
-
.visible-md-inline-block {
|
6618 |
-
display: inline-block !important;
|
6619 |
-
}
|
6620 |
-
}
|
6621 |
-
@media (min-width: 1200px) {
|
6622 |
-
.visible-lg {
|
6623 |
-
display: block !important;
|
6624 |
-
}
|
6625 |
-
table.visible-lg {
|
6626 |
-
display: table !important;
|
6627 |
-
}
|
6628 |
-
tr.visible-lg {
|
6629 |
-
display: table-row !important;
|
6630 |
-
}
|
6631 |
-
th.visible-lg,
|
6632 |
-
td.visible-lg {
|
6633 |
-
display: table-cell !important;
|
6634 |
-
}
|
6635 |
-
}
|
6636 |
-
@media (min-width: 1200px) {
|
6637 |
-
.visible-lg-block {
|
6638 |
-
display: block !important;
|
6639 |
-
}
|
6640 |
-
}
|
6641 |
-
@media (min-width: 1200px) {
|
6642 |
-
.visible-lg-inline {
|
6643 |
-
display: inline !important;
|
6644 |
-
}
|
6645 |
-
}
|
6646 |
-
@media (min-width: 1200px) {
|
6647 |
-
.visible-lg-inline-block {
|
6648 |
-
display: inline-block !important;
|
6649 |
-
}
|
6650 |
-
}
|
6651 |
-
@media (max-width: 767px) {
|
6652 |
-
.hidden-xs {
|
6653 |
-
display: none !important;
|
6654 |
-
}
|
6655 |
-
}
|
6656 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6657 |
-
.hidden-sm {
|
6658 |
-
display: none !important;
|
6659 |
-
}
|
6660 |
-
}
|
6661 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6662 |
-
.hidden-md {
|
6663 |
-
display: none !important;
|
6664 |
-
}
|
6665 |
-
}
|
6666 |
-
@media (min-width: 1200px) {
|
6667 |
-
.hidden-lg {
|
6668 |
-
display: none !important;
|
6669 |
-
}
|
6670 |
-
}
|
6671 |
-
.visible-print {
|
6672 |
-
display: none !important;
|
6673 |
-
}
|
6674 |
-
@media print {
|
6675 |
-
.visible-print {
|
6676 |
-
display: block !important;
|
6677 |
-
}
|
6678 |
-
table.visible-print {
|
6679 |
-
display: table !important;
|
6680 |
-
}
|
6681 |
-
tr.visible-print {
|
6682 |
-
display: table-row !important;
|
6683 |
-
}
|
6684 |
-
th.visible-print,
|
6685 |
-
td.visible-print {
|
6686 |
-
display: table-cell !important;
|
6687 |
-
}
|
6688 |
-
}
|
6689 |
-
.visible-print-block {
|
6690 |
-
display: none !important;
|
6691 |
-
}
|
6692 |
-
@media print {
|
6693 |
-
.visible-print-block {
|
6694 |
-
display: block !important;
|
6695 |
-
}
|
6696 |
-
}
|
6697 |
-
.visible-print-inline {
|
6698 |
-
display: none !important;
|
6699 |
-
}
|
6700 |
-
@media print {
|
6701 |
-
.visible-print-inline {
|
6702 |
-
display: inline !important;
|
6703 |
-
}
|
6704 |
-
}
|
6705 |
-
.visible-print-inline-block {
|
6706 |
-
display: none !important;
|
6707 |
-
}
|
6708 |
-
@media print {
|
6709 |
-
.visible-print-inline-block {
|
6710 |
-
display: inline-block !important;
|
6711 |
-
}
|
6712 |
-
}
|
6713 |
-
@media print {
|
6714 |
-
.hidden-print {
|
6715 |
-
display: none !important;
|
6716 |
-
}
|
6717 |
-
}
|
6718 |
-
|
6719 |
-
#wpwrap{
|
6720 |
-
background:#eee;
|
6721 |
-
}
|
6722 |
-
|
6723 |
-
#adminmenuback {
|
6724 |
-
z-index: 0 !important;
|
6725 |
-
}
|
6726 |
-
|
6727 |
-
|
6728 |
-
.btn-success, .label-success{
|
6729 |
-
background-color: #79B232 !important;
|
6730 |
-
}
|
6731 |
-
|
6732 |
-
.btn-primary, .label-primary{
|
6733 |
-
background-color: #337ab7 !important;
|
6734 |
-
}
|
6735 |
-
|
6736 |
-
|
6737 |
-
.updated a {
|
6738 |
-
padding-bottom: 10px !important;
|
6739 |
-
}
|
6740 |
-
|
6741 |
-
p {
|
6742 |
-
margin: 0 0 2px !important;
|
6743 |
-
}
|
6744 |
-
|
6745 |
-
.margin-auto{
|
6746 |
-
margin: 0 auto;
|
6747 |
-
text-align: center;
|
6748 |
-
}
|
6749 |
-
|
6750 |
-
.list-group-item{
|
6751 |
-
padding: 8px !important;
|
6752 |
-
}
|
6753 |
-
|
6754 |
-
.glyphicon-success{
|
6755 |
-
color: #79B232;
|
6756 |
-
}
|
6757 |
-
.glyphicon-warning{
|
6758 |
-
color: #eea236;
|
6759 |
-
}
|
6760 |
-
.glyphicon-info{
|
6761 |
-
color: #337ab7;
|
6762 |
-
}
|
6763 |
-
.glyphicon-grey{
|
6764 |
-
color: #76777b;
|
6765 |
-
}
|
6766 |
-
|
6767 |
-
.glyphicon-primary{
|
6768 |
-
color: #2e6da4;
|
6769 |
-
}
|
6770 |
-
.glyphicon-danger{
|
6771 |
-
color: #a94442;
|
6772 |
-
}
|
6773 |
-
.glyphicon-lg{
|
6774 |
-
font-size: 18px;
|
6775 |
-
}
|
6776 |
-
|
6777 |
-
.btn-group-xl > .btn, .btn-xl {
|
6778 |
-
border-radius: 6px;
|
6779 |
-
font-size: 24px;
|
6780 |
-
line-height: 1.33333;
|
6781 |
-
padding: 10px 5px 5px 5px;
|
6782 |
-
}
|
6783 |
-
|
6784 |
-
/*B2S Inbox*/
|
6785 |
-
.b2s-inbox .b2s-inbox-menu ul {
|
6786 |
-
padding: 0;
|
6787 |
-
list-style: none
|
6788 |
-
}
|
6789 |
-
|
6790 |
-
.b2s-inbox .b2s-inbox-menu ul li {
|
6791 |
-
position: relative
|
6792 |
-
}
|
6793 |
-
|
6794 |
-
.b2s-inbox .b2s-inbox-menu ul li.title {
|
6795 |
-
font-size: 14px;
|
6796 |
-
color: #3d3f42;
|
6797 |
-
font-weight: 600;
|
6798 |
-
}
|
6799 |
-
|
6800 |
-
.b2s-inbox .b2s-inbox-menu ul li.title:hover {
|
6801 |
-
background: 0 0
|
6802 |
-
}
|
6803 |
-
|
6804 |
-
.b2s-inbox .b2s-inbox-menu ul li a {
|
6805 |
-
display: block;
|
6806 |
-
width: 100%;
|
6807 |
-
text-decoration: none;
|
6808 |
-
}
|
6809 |
-
|
6810 |
-
.b2s-inbox .b2s-inbox-menu ul li a i {
|
6811 |
-
margin-right: 10px
|
6812 |
-
}
|
6813 |
-
|
6814 |
-
.b2s-inbox .b2s-inbox-menu ul li a .label {
|
6815 |
-
position: absolute;
|
6816 |
-
top:0px;
|
6817 |
-
right: 2px;
|
6818 |
-
display: block;
|
6819 |
-
min-width: 18px;
|
6820 |
-
height: 18px;
|
6821 |
-
padding: 2px;
|
6822 |
-
font-size: 12px;
|
6823 |
-
}
|
6824 |
-
|
6825 |
-
|
6826 |
-
.b2s-inbox-menu .title{
|
6827 |
-
font-size: 14px;
|
6828 |
-
color: #3d3f42;
|
6829 |
-
font-weight: 600;
|
6830 |
-
}
|
6831 |
-
|
6832 |
-
/* Posts */
|
6833 |
-
|
6834 |
-
.b2s-post h3 {
|
6835 |
-
margin-top: 5px;
|
6836 |
-
}
|
6837 |
-
|
6838 |
-
@media(max-width: 400px) {
|
6839 |
-
.b2s-post h3 {
|
6840 |
-
font-size: 16px !important;
|
6841 |
-
}
|
6842 |
-
}
|
6843 |
-
|
6844 |
-
.b2s-post .list-group li {
|
6845 |
-
padding: 15px 20px 12px 20px;
|
6846 |
-
cursor: pointer;
|
6847 |
-
}
|
6848 |
-
|
6849 |
-
.b2s-post .list-group li:hover {
|
6850 |
-
background: #eee;
|
6851 |
-
}
|
6852 |
-
|
6853 |
-
.b2s-post .fa-padding .fa {
|
6854 |
-
padding-top: 5px;
|
6855 |
-
width: 1.5em;
|
6856 |
-
}
|
6857 |
-
|
6858 |
-
.b2s-post .info {
|
6859 |
-
color: #323b43;
|
6860 |
-
margin: 0px;
|
6861 |
-
}
|
6862 |
-
|
6863 |
-
.b2s-post .info a:hover {
|
6864 |
-
text-decoration: underline;
|
6865 |
-
}
|
6866 |
-
|
6867 |
-
.b2s-post .info .fa {
|
6868 |
-
width: 1.5em;
|
6869 |
-
text-align: center;
|
6870 |
-
}
|
6871 |
-
|
6872 |
-
.b2s-post .number {
|
6873 |
-
color: #777;
|
6874 |
-
}
|
6875 |
-
|
6876 |
-
.b2s-post img {
|
6877 |
-
margin: 0 auto;
|
6878 |
-
display: block;
|
6879 |
-
}
|
6880 |
-
|
6881 |
-
.b2s-post .modal-body {
|
6882 |
-
padding-bottom: 0px;
|
6883 |
-
}
|
6884 |
-
|
6885 |
-
/*B2S Banner Premium Version */
|
6886 |
-
.b2s-premium-version-banner .icon {
|
6887 |
-
float: left;
|
6888 |
-
margin: 12px 8px 8px 12px;
|
6889 |
-
}
|
6890 |
-
|
6891 |
-
.b2s-premium-version-banner .icon img {
|
6892 |
-
max-width: 60px;
|
6893 |
-
}
|
6894 |
-
|
6895 |
-
.b2s-premium-version-banner .text {
|
6896 |
-
color: #000;
|
6897 |
-
float: left;
|
6898 |
-
font-size: 18px;
|
6899 |
-
line-height: 26px;
|
6900 |
-
margin: 18px 18px 14px;
|
6901 |
-
max-width: 80%;
|
6902 |
-
width: auto;
|
6903 |
-
}
|
6904 |
-
.b2s-premium-version-banner .text span {
|
6905 |
-
font-size: 14px;
|
6906 |
-
opacity: 0.6;
|
6907 |
-
}
|
6908 |
-
.b2s-premium-version-banner .premium-button {
|
6909 |
-
margin: 18px 40px;
|
6910 |
-
}
|
6911 |
-
|
6912 |
-
|
6913 |
-
/*PRG Custom */
|
6914 |
-
.prg-logo{
|
6915 |
-
max-height: 40px;
|
6916 |
-
}
|
6917 |
-
|
6918 |
-
.prg-padding-bottom-30{
|
6919 |
-
padding-bottom:30px;
|
6920 |
-
}
|
6921 |
-
|
6922 |
-
.nav-tabs {
|
6923 |
-
border-bottom: 0 !important;
|
6924 |
-
padding-bottom: 10px;
|
6925 |
-
}
|
6926 |
-
|
6927 |
-
.nav-tabs {
|
6928 |
-
border-bottom: 0 !important;
|
6929 |
-
padding-bottom: 10px;
|
6930 |
-
}
|
6931 |
-
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
6932 |
-
background-color: #337AB7 !important;
|
6933 |
-
color: #fff;
|
6934 |
-
font-weight: 600;
|
6935 |
-
}
|
6936 |
-
|
6937 |
-
.nav-tabs > li > a {
|
6938 |
-
border-radius: 4px !important;
|
6939 |
-
}
|
6940 |
-
|
6941 |
-
.nav > li > a {
|
6942 |
-
padding: 4px 6px;
|
6943 |
-
}
|
6944 |
-
|
6945 |
-
.panel-min-height{
|
6946 |
-
min-height: 760px;
|
6947 |
-
}
|
6948 |
-
|
6949 |
-
.img-error{
|
6950 |
-
display: block;
|
6951 |
-
margin: 0 auto 35px;
|
6952 |
-
}
|
6953 |
-
|
6954 |
-
/* B2S Custom */
|
6955 |
-
.b2s-container{
|
6956 |
-
margin-top:15px;
|
6957 |
-
font-family: "Open Sans",Arial,sans-serif;
|
6958 |
-
font-weight: 500;
|
6959 |
-
}
|
6960 |
-
|
6961 |
-
.b2s-select,.b2s-input,.b2s-select-area{
|
6962 |
-
height: 30px !important;
|
6963 |
-
margin-bottom: 8px !important;
|
6964 |
-
}
|
6965 |
-
|
6966 |
-
.b2s-btn-logo{
|
6967 |
-
font-weight: 600 !important;
|
6968 |
-
font-size: 22px !important;
|
6969 |
-
line-height: 0.89999 !important;
|
6970 |
-
padding:5px 5px !important;
|
6971 |
-
color: #337ab7 !important;
|
6972 |
-
margin-top: 0px;
|
6973 |
-
text-decoration: none !important;
|
6974 |
-
}
|
6975 |
-
|
6976 |
-
.b2s-img-logo{
|
6977 |
-
min-width: 2.5em;
|
6978 |
-
}
|
6979 |
-
|
6980 |
-
.b2s-sidebar{
|
6981 |
-
max-width: 320px;
|
6982 |
-
}
|
6983 |
-
|
6984 |
-
.b2s-sidebar-version{
|
6985 |
-
font-size: 12px !important;
|
6986 |
-
white-space:nowrap;
|
6987 |
-
}
|
6988 |
-
|
6989 |
-
.b2s-sidebar-btn-licence{
|
6990 |
-
font-size: 14px !important;
|
6991 |
-
}
|
6992 |
-
|
6993 |
-
.b2s-sidebar-btn-licence{
|
6994 |
-
text-decoration: underline;
|
6995 |
-
}
|
6996 |
-
|
6997 |
-
.b2s-sidebar-licence{
|
6998 |
-
font-size: 14px !important;
|
6999 |
-
padding-top: 5px;
|
7000 |
-
font-weight: 600;
|
7001 |
-
}
|
7002 |
-
|
7003 |
-
.b2s-sidebar-licence-btn-edit{
|
7004 |
-
padding-left: 5px;
|
7005 |
-
color: #adadad;
|
7006 |
-
}
|
7007 |
-
|
7008 |
-
@media(max-width:1150px){
|
7009 |
-
.b2s-sidebar-licence-btn-edit{
|
7010 |
-
display: none;
|
7011 |
-
}
|
7012 |
-
}
|
7013 |
-
|
7014 |
-
|
7015 |
-
.b2s-sidebar-head-text{
|
7016 |
-
text-transform: uppercase;
|
7017 |
-
font-size: 14px;
|
7018 |
-
font-weight: 600;
|
7019 |
-
margin-bottom:8px;
|
7020 |
-
}
|
7021 |
-
.b2s-sidebar-menu-item{
|
7022 |
-
padding-left: 10px;
|
7023 |
-
font-weight: 400;
|
7024 |
-
font-size: 15px !important;
|
7025 |
-
line-height: 1.1333333;
|
7026 |
-
color: #337ab7 !important;
|
7027 |
-
line-height: 0.89999 !important;
|
7028 |
-
}
|
7029 |
-
|
7030 |
-
|
7031 |
-
.b2s-list-margin-left-10{
|
7032 |
-
margin-left: 10px !important;
|
7033 |
-
margin-bottom: 10px;
|
7034 |
-
}
|
7035 |
-
|
7036 |
-
.b2s-info-sm{
|
7037 |
-
font-size: 12px !important;
|
7038 |
-
}
|
7039 |
-
|
7040 |
-
h4{
|
7041 |
-
font-size: 18px;
|
7042 |
-
margin-top: 10px;
|
7043 |
-
}
|
7044 |
-
|
7045 |
-
.b2s-blog-news-title{
|
7046 |
-
font-size: 14px !important;
|
7047 |
-
margin-top: 0px !important;
|
7048 |
-
}
|
7049 |
-
|
7050 |
-
.b2s-loading-area, .prg-loading-area{
|
7051 |
-
width: 80%;
|
7052 |
-
float:left;
|
7053 |
-
text-align: center;
|
7054 |
-
}
|
7055 |
-
|
7056 |
-
.prg-loading-area{
|
7057 |
-
padding-top:25px;
|
7058 |
-
}
|
7059 |
-
|
7060 |
-
.del-padding-left {
|
7061 |
-
padding-left: 0px !important;
|
7062 |
-
}
|
7063 |
-
|
7064 |
-
.add-padding-left{
|
7065 |
-
padding: 0 15px;
|
7066 |
-
}
|
7067 |
-
|
7068 |
-
.add-margin-bottom-10{
|
7069 |
-
margin-bottom: 10px;
|
7070 |
-
}
|
7071 |
-
|
7072 |
-
.add-margin-top-10{
|
7073 |
-
margin-top: 10px;
|
7074 |
-
}
|
7075 |
-
|
7076 |
-
.del-padding-right {
|
7077 |
-
padding-right: 5px !important;
|
7078 |
-
}
|
7079 |
-
|
7080 |
-
.padding-bottom-10{
|
7081 |
-
padding-bottom: 10px;
|
7082 |
-
}
|
7083 |
-
|
7084 |
-
.padding-top-10{
|
7085 |
-
padding-top: 10px;
|
7086 |
-
}
|
7087 |
-
.vertical-middle{
|
7088 |
-
vertical-align: middle;
|
7089 |
-
}
|
7090 |
-
|
7091 |
-
.padding-left-5{
|
7092 |
-
padding-left: 5px;
|
7093 |
-
}
|
7094 |
-
|
7095 |
-
.padding-left-15{
|
7096 |
-
padding-left: 15px;
|
7097 |
-
}
|
7098 |
-
.margin-right-15{
|
7099 |
-
margin-right: 15px;
|
7100 |
-
}
|
7101 |
-
|
7102 |
-
.b2s-support-area {
|
7103 |
-
margin-bottom: 20px;
|
7104 |
-
}
|
7105 |
-
|
7106 |
-
.b2s-post-menu {
|
7107 |
-
padding-bottom: 10px;
|
7108 |
-
border-bottom: 1px solid #dedede;
|
7109 |
-
margin-bottom: 10px;
|
7110 |
-
width: 100%;
|
7111 |
-
}
|
7112 |
-
|
7113 |
-
.thumbnail-blog{
|
7114 |
-
padding: 1px;
|
7115 |
-
max-width: 84px;
|
7116 |
-
margin-right: 10px;
|
7117 |
-
}
|
7118 |
-
|
7119 |
-
@media(max-width: 549px) {
|
7120 |
-
.b2s-post-btn {
|
7121 |
-
width: 100%;
|
7122 |
-
}
|
7123 |
-
}
|
7124 |
-
|
7125 |
-
.b2s-img-network{
|
7126 |
-
width: 48px;
|
7127 |
-
margin-top: 3px;
|
7128 |
-
}
|
7129 |
-
|
7130 |
-
.post-img-10{
|
7131 |
-
margin-top: 10px;
|
7132 |
-
}
|
7133 |
-
.post-img-5{
|
7134 |
-
margin-top: 5px;
|
7135 |
-
}
|
7136 |
-
.img-width-9{
|
7137 |
-
max-width: 9%;
|
7138 |
-
}
|
7139 |
-
|
7140 |
-
.width-100{
|
7141 |
-
width: 100%;
|
7142 |
-
}
|
7143 |
-
|
7144 |
-
.error{
|
7145 |
-
border: 1px solid #FF0000 !important;
|
7146 |
-
}
|
7147 |
-
|
7148 |
-
input[type="checkbox"].error, select.error{
|
7149 |
-
border: 1px solid #cccccc !important;
|
7150 |
-
}
|
7151 |
-
|
7152 |
-
input[type="checkbox"].error + label{
|
7153 |
-
color: #FF0000;
|
7154 |
-
}
|
7155 |
-
|
7156 |
-
.b2s-loader-impulse, .prg-loader-impulse{
|
7157 |
-
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
7158 |
-
border-radius: 100%;
|
7159 |
-
margin: 0 auto;
|
7160 |
-
}
|
7161 |
-
.b2s-loader-impulse{
|
7162 |
-
background-color: #79b331;
|
7163 |
-
}
|
7164 |
-
.prg-loader-impulse{
|
7165 |
-
background-color: #FDBF45;
|
7166 |
-
}
|
7167 |
-
.b2s-loader-impulse-md,.prg-loader-impulse-md {
|
7168 |
-
height: 64px;
|
7169 |
-
width: 64px;
|
7170 |
-
}
|
7171 |
-
|
7172 |
-
.b2s-loader-impulse-sm,.prg-loader-impulse-sm {
|
7173 |
-
height: 32px;
|
7174 |
-
width: 32px;
|
7175 |
-
}
|
7176 |
-
|
7177 |
-
@keyframes sk-pulseScaleOut {
|
7178 |
-
0% {
|
7179 |
-
-webkit-transform: scale(0);
|
7180 |
-
transform: scale(0); }
|
7181 |
-
100% {
|
7182 |
-
-webkit-transform: scale(1);
|
7183 |
-
transform: scale(1);
|
7184 |
-
opacity: 0; }
|
7185 |
-
}
|
7186 |
-
|
7187 |
-
.b2s-loader-text{
|
7188 |
-
font-size: 80%;
|
7189 |
-
}
|
7190 |
-
|
7191 |
-
.clearfix{
|
7192 |
-
display: block !important;
|
7193 |
-
}
|
7194 |
-
|
7195 |
-
.b2s-color-green{
|
7196 |
-
color: #79b232;
|
7197 |
-
}
|
7198 |
-
.b2s-color-black{
|
7199 |
-
color: #444;
|
7200 |
-
}
|
7201 |
-
|
7202 |
-
.b2s-version-info{
|
7203 |
-
font-size: 12px;
|
7204 |
-
}
|
7205 |
-
|
7206 |
-
.panel-no-shadow{
|
7207 |
-
-webkit-box-shadow: none;
|
7208 |
-
-moz-box-shadow: none;
|
7209 |
-
box-shadow: none;
|
7210 |
-
|
7211 |
-
}
|
7212 |
-
.panel-no-padding{
|
7213 |
-
padding: 0px;
|
7214 |
-
}
|
7215 |
-
|
7216 |
-
.btn-circle {
|
7217 |
-
width: 30px;
|
7218 |
-
height: 30px;
|
7219 |
-
text-align: center;
|
7220 |
-
padding: 6px 0;
|
7221 |
-
font-size: 12px;
|
7222 |
-
line-height: 1.428571429;
|
7223 |
-
border-radius: 15px;
|
7224 |
-
}
|
7225 |
-
.btn-circle.btn-lg {
|
7226 |
-
width: 50px;
|
7227 |
-
height: 50px;
|
7228 |
-
padding: 10px 16px;
|
7229 |
-
font-size: 18px;
|
7230 |
-
line-height: 1.33;
|
7231 |
-
border-radius: 25px;
|
7232 |
-
}
|
7233 |
-
.btn-circle.btn-xl {
|
7234 |
-
width: 70px;
|
7235 |
-
height: 70px;
|
7236 |
-
padding: 10px 16px;
|
7237 |
-
font-size: 24px;
|
7238 |
-
line-height: 1.33;
|
7239 |
-
border-radius: 35px;
|
7240 |
-
}
|
7241 |
-
|
7242 |
-
.b2s-info-btn {
|
7243 |
-
font-size: 12px;
|
7244 |
-
text-decoration: underline;
|
7245 |
-
}
|
7246 |
-
|
7247 |
-
.b2s-btn-disabled{
|
7248 |
-
opacity: .53;
|
7249 |
-
}
|
7250 |
-
|
7251 |
-
.label-sm{
|
7252 |
-
font-size: 60%;
|
7253 |
-
}
|
7254 |
-
|
7255 |
-
.btn-label-premium {
|
7256 |
-
color: #fff !important;
|
7257 |
-
}
|
7258 |
-
.btn-label-premium-xs {
|
7259 |
-
font-size: 11px !important;
|
7260 |
-
}
|
7261 |
-
|
7262 |
-
/*#adminmenu .toplevel_page_blog2social ul li:last-child{
|
7263 |
-
background-color: #79B232;
|
7264 |
-
}
|
7265 |
-
#adminmenu .toplevel_page_blog2social ul li:last-child a{
|
7266 |
-
color: #fff !important;
|
7267 |
-
}
|
7268 |
-
#adminmenu .toplevel_page_blog2social ul li:last-child:hover a{
|
7269 |
-
text-decoration: underline;
|
7270 |
-
}*/
|
7271 |
-
|
7272 |
-
#adminmenu .toplevel_page_blog2social a[href="admin.php?page=blog2social-premium"] {
|
7273 |
-
text-decoration: none !important;
|
7274 |
-
}
|
7275 |
-
|
7276 |
-
.b2s-close{
|
7277 |
-
color:#aaa;
|
7278 |
-
float:right;
|
7279 |
-
cursor:pointer;
|
7280 |
-
font-weight: 600;
|
7281 |
-
font-size: 18px;
|
7282 |
-
}
|
7283 |
-
.b2s-notice-buttons{
|
7284 |
-
padding-top:10px;
|
7285 |
-
display: flex;
|
7286 |
-
justify-content: space-between
|
7287 |
-
}
|
7288 |
-
.b2s-notice{
|
7289 |
-
border-left: 5px solid #79B232;
|
7290 |
-
}
|
7291 |
-
|
7292 |
-
.margin-top-8{
|
7293 |
-
margin-top: -8px;
|
7294 |
-
}
|
7295 |
-
|
7296 |
-
.b2s-key-name{
|
7297 |
-
color: #79B232;
|
7298 |
-
font-weight: 700;
|
7299 |
-
}
|
7300 |
-
.b2s-disabled-div{
|
7301 |
-
opacity: 0.5;
|
7302 |
-
}
|
7303 |
-
|
7304 |
-
.b2s-glyphicon-xl{
|
7305 |
-
font-size: 50px;
|
7306 |
-
}
|
7307 |
-
.b2s-text-xl{
|
7308 |
-
font-size: 18px;
|
7309 |
-
}
|
7310 |
-
.b2s-text-bold{
|
7311 |
-
font-weight: 600;
|
7312 |
-
}
|
7313 |
-
|
7314 |
-
|
7315 |
-
/* ---------------------------------------------------
|
7316 |
-
CSS CheckBOX
|
7317 |
-
---------------------------------------------------- */
|
7318 |
-
|
7319 |
-
.checkbox.checbox-switch {
|
7320 |
-
padding-left: 0;
|
7321 |
-
}
|
7322 |
-
|
7323 |
-
.checkbox.checbox-switch label,
|
7324 |
-
.checkbox-inline.checbox-switch {
|
7325 |
-
display: inline-block;
|
7326 |
-
position: relative;
|
7327 |
-
padding-left: 0;
|
7328 |
-
}
|
7329 |
-
.checkbox.checbox-switch label input,
|
7330 |
-
.checkbox-inline.checbox-switch input {
|
7331 |
-
display: none;
|
7332 |
-
}
|
7333 |
-
.checkbox.checbox-switch label span,
|
7334 |
-
.checkbox-inline.checbox-switch span {
|
7335 |
-
width: 35px;
|
7336 |
-
border-radius: 20px;
|
7337 |
-
height: 18px;
|
7338 |
-
border: 1px solid #dbdbdb;
|
7339 |
-
background-color: rgb(255, 255, 255);
|
7340 |
-
border-color: rgb(223, 223, 223);
|
7341 |
-
box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
|
7342 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
|
7343 |
-
display: inline-block;
|
7344 |
-
vertical-align: middle;
|
7345 |
-
margin-right: 5px;
|
7346 |
-
}
|
7347 |
-
.checkbox.checbox-switch label span:before,
|
7348 |
-
.checkbox-inline.checbox-switch span:before {
|
7349 |
-
display: inline-block;
|
7350 |
-
width: 16px;
|
7351 |
-
height: 16px;
|
7352 |
-
border-radius: 50%;
|
7353 |
-
background: rgb(255,255,255);
|
7354 |
-
content: " ";
|
7355 |
-
top: 0;
|
7356 |
-
position: relative;
|
7357 |
-
left: 0;
|
7358 |
-
transition: all 0.3s ease;
|
7359 |
-
box-shadow: 0 1px 4px rgba(0,0,0,0.4);
|
7360 |
-
}
|
7361 |
-
.checkbox.checbox-switch label > input:checked + span:before,
|
7362 |
-
.checkbox-inline.checbox-switch > input:checked + span:before {
|
7363 |
-
left: 17px;
|
7364 |
-
}
|
7365 |
-
|
7366 |
-
|
7367 |
-
/* Switch Default */
|
7368 |
-
.checkbox.checbox-switch label > input:checked + span,
|
7369 |
-
.checkbox-inline.checbox-switch > input:checked + span {
|
7370 |
-
background-color: rgb(180, 182, 183);
|
7371 |
-
border-color: rgb(180, 182, 183);
|
7372 |
-
box-shadow: rgb(180, 182, 183) 0px 0px 0px 8px inset;
|
7373 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7374 |
-
}
|
7375 |
-
.checkbox.checbox-switch label > input:checked:disabled + span,
|
7376 |
-
.checkbox-inline.checbox-switch > input:checked:disabled + span {
|
7377 |
-
background-color: rgb(220, 220, 220);
|
7378 |
-
border-color: rgb(220, 220, 220);
|
7379 |
-
box-shadow: rgb(220, 220, 220) 0px 0px 0px 8px inset;
|
7380 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7381 |
-
}
|
7382 |
-
.checkbox.checbox-switch label > input:disabled + span,
|
7383 |
-
.checkbox-inline.checbox-switch > input:disabled + span {
|
7384 |
-
background-color: rgb(232,235,238);
|
7385 |
-
border-color: rgb(255,255,255);
|
7386 |
-
}
|
7387 |
-
.checkbox.checbox-switch label > input:disabled + span:before,
|
7388 |
-
.checkbox-inline.checbox-switch > input:disabled + span:before {
|
7389 |
-
background-color: rgb(248,249,250);
|
7390 |
-
border-color: rgb(243, 243, 243);
|
7391 |
-
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
7392 |
-
}
|
7393 |
-
|
7394 |
-
/* Switch Light */
|
7395 |
-
.checkbox.checbox-switch.switch-light label > input:checked + span,
|
7396 |
-
.checkbox-inline.checbox-switch.switch-light > input:checked + span {
|
7397 |
-
background-color: rgb(248,249,250);
|
7398 |
-
border-color: rgb(248,249,250);
|
7399 |
-
box-shadow: rgb(248,249,250) 0px 0px 0px 8px inset;
|
7400 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7401 |
-
}
|
7402 |
-
|
7403 |
-
/* Switch Dark */
|
7404 |
-
.checkbox.checbox-switch.switch-dark label > input:checked + span,
|
7405 |
-
.checkbox-inline.checbox-switch.switch-dark > input:checked + span {
|
7406 |
-
background-color: rgb(52,58,64);
|
7407 |
-
border-color: rgb(52,58,64);
|
7408 |
-
box-shadow: rgb(52,58,64) 0px 0px 0px 8px inset;
|
7409 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7410 |
-
}
|
7411 |
-
.checkbox.checbox-switch.switch-dark label > input:checked:disabled + span,
|
7412 |
-
.checkbox-inline.checbox-switch.switch-dark > input:checked:disabled + span {
|
7413 |
-
background-color: rgb(100, 102, 104);
|
7414 |
-
border-color: rgb(100, 102, 104);
|
7415 |
-
box-shadow: rgb(100, 102, 104) 0px 0px 0px 8px inset;
|
7416 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7417 |
-
}
|
7418 |
-
|
7419 |
-
/* Switch Success */
|
7420 |
-
.checkbox.checbox-switch.switch-success label > input:checked + span,
|
7421 |
-
.checkbox-inline.checbox-switch.switch-success > input:checked + span {
|
7422 |
-
background-color: rgb(40, 167, 69);
|
7423 |
-
border-color: rgb(40, 167, 69);
|
7424 |
-
box-shadow: rgb(40, 167, 69) 0px 0px 0px 8px inset;
|
7425 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7426 |
-
}
|
7427 |
-
.checkbox.checbox-switch.switch-success label > input:checked:disabled + span,
|
7428 |
-
.checkbox-inline.checbox-switch.switch-success > input:checked:disabled + span {
|
7429 |
-
background-color: rgb(153, 217, 168);
|
7430 |
-
border-color: rgb(153, 217, 168);
|
7431 |
-
box-shadow: rgb(153, 217, 168) 0px 0px 0px 8px inset;
|
7432 |
-
}
|
7433 |
-
|
7434 |
-
/* Switch Danger */
|
7435 |
-
.checkbox.checbox-switch.switch-danger label > input:checked + span,
|
7436 |
-
.checkbox-inline.checbox-switch.switch-danger > input:checked + span {
|
7437 |
-
background-color: rgb(200, 35, 51);
|
7438 |
-
border-color: rgb(200, 35, 51);
|
7439 |
-
box-shadow: rgb(200, 35, 51) 0px 0px 0px 8px inset;
|
7440 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7441 |
-
}
|
7442 |
-
.checkbox.checbox-switch.switch-danger label > input:checked:disabled + span,
|
7443 |
-
.checkbox-inline.checbox-switch.switch-danger > input:checked:disabled + span {
|
7444 |
-
background-color: rgb(216, 119, 129);
|
7445 |
-
border-color: rgb(216, 119, 129);
|
7446 |
-
box-shadow: rgb(216, 119, 129) 0px 0px 0px 8px inset;
|
7447 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7448 |
-
}
|
7449 |
-
|
7450 |
-
/* Switch Primary */
|
7451 |
-
.checkbox.checbox-switch.switch-primary label > input:checked + span,
|
7452 |
-
.checkbox-inline.checbox-switch.switch-primary > input:checked + span {
|
7453 |
-
background-color: rgb(0, 105, 217);
|
7454 |
-
border-color: rgb(0, 105, 217);
|
7455 |
-
box-shadow: rgb(0, 105, 217) 0px 0px 0px 8px inset;
|
7456 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7457 |
-
}
|
7458 |
-
.checkbox.checbox-switch.switch-primary label > input:checked:disabled + span,
|
7459 |
-
.checkbox-inline.checbox-switch.switch-primary > input:checked:disabled + span {
|
7460 |
-
background-color: rgb(109, 163, 221);
|
7461 |
-
border-color: rgb(109, 163, 221);
|
7462 |
-
box-shadow: rgb(109, 163, 221) 0px 0px 0px 8px inset;
|
7463 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7464 |
-
}
|
7465 |
-
|
7466 |
-
/* Switch Info */
|
7467 |
-
.checkbox.checbox-switch.switch-info label > input:checked + span,
|
7468 |
-
.checkbox-inline.checbox-switch.switch-info > input:checked + span {
|
7469 |
-
background-color: rgb(23, 162, 184);
|
7470 |
-
border-color: rgb(23, 162, 184);
|
7471 |
-
box-shadow: rgb(23, 162, 184) 0px 0px 0px 8px inset;
|
7472 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7473 |
-
}
|
7474 |
-
.checkbox.checbox-switch.switch-info label > input:checked:disabled + span,
|
7475 |
-
.checkbox-inline.checbox-switch.switch-info > input:checked:disabled + span {
|
7476 |
-
background-color: rgb(102, 192, 206);
|
7477 |
-
border-color: rgb(102, 192, 206);
|
7478 |
-
box-shadow: rgb(102, 192, 206) 0px 0px 0px 8px inset;
|
7479 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7480 |
-
}
|
7481 |
-
|
7482 |
-
/* Switch Warning */
|
7483 |
-
.checkbox.checbox-switch.switch-warning label > input:checked + span,
|
7484 |
-
.checkbox-inline.checbox-switch.switch-warning > input:checked + span {
|
7485 |
-
background-color: rgb(255, 193, 7);
|
7486 |
-
border-color: rgb(255, 193, 7);
|
7487 |
-
box-shadow: rgb(255, 193, 7) 0px 0px 0px 8px inset;
|
7488 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7489 |
-
}
|
7490 |
-
.checkbox.checbox-switch.switch-warning label > input:checked:disabled + span,
|
7491 |
-
.checkbox-inline.checbox-switch.switch-warning > input:checked:disabled + span {
|
7492 |
-
background-color: rgb(226, 195, 102);
|
7493 |
-
border-color: rgb(226, 195, 102);
|
7494 |
-
box-shadow: rgb(226, 195, 102) 0px 0px 0px 8px inset;
|
7495 |
-
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7496 |
-
}
|
7497 |
-
|
7498 |
-
/* Modal Scrollbar */
|
7499 |
-
.b2s-scroll-modal-dialog{
|
7500 |
-
overflow-y: initial !important
|
7501 |
-
}
|
7502 |
-
.b2s-scroll-modal-body{
|
7503 |
-
height: 250px;
|
7504 |
-
overflow-y: auto;
|
7505 |
-
}
|
7506 |
-
|
7507 |
-
|
7508 |
-
.b2s-scroll-modal-down {
|
7509 |
-
opacity: 1;
|
7510 |
-
-webkit-transition: all .5s ease-in 3s;
|
7511 |
-
transition: all .5s ease-in 3s;
|
7512 |
-
}
|
7513 |
-
|
7514 |
-
.b2s-scroll-modal-down {
|
7515 |
-
position: absolute;
|
7516 |
-
bottom: 50px;
|
7517 |
-
left: 50%;
|
7518 |
-
margin-left: -16px;
|
7519 |
-
display: block;
|
7520 |
-
width: 32px;
|
7521 |
-
height: 32px;
|
7522 |
-
border: 2px solid #398439;
|
7523 |
-
background-size: 14px auto;
|
7524 |
-
border-radius: 50%;
|
7525 |
-
z-index: 20000;
|
7526 |
-
-webkit-animation: bounce 2s infinite 2s;
|
7527 |
-
animation: bounce 2s infinite 2s;
|
7528 |
-
-webkit-transition: all .2s ease-in;
|
7529 |
-
transition: all .2s ease-in;
|
7530 |
-
}
|
7531 |
-
|
7532 |
-
.b2s-scroll-modal-down:before {
|
7533 |
-
position: absolute;
|
7534 |
-
top: calc(50% - 8px);
|
7535 |
-
left: calc(50% - 6px);
|
7536 |
-
transform: rotate(-45deg);
|
7537 |
-
display: block;
|
7538 |
-
width: 12px;
|
7539 |
-
height: 12px;
|
7540 |
-
content: "";
|
7541 |
-
border: 2px solid #398439;
|
7542 |
-
border-width: 0px 0 2px 2px;
|
7543 |
-
}
|
7544 |
-
|
7545 |
-
@keyframes bounce {
|
7546 |
-
0%,
|
7547 |
-
100%,
|
7548 |
-
20%,
|
7549 |
-
50%,
|
7550 |
-
80% {
|
7551 |
-
-webkit-transform: translateY(0);
|
7552 |
-
-ms-transform: translateY(0);
|
7553 |
-
transform: translateY(0);
|
7554 |
-
}
|
7555 |
-
40% {
|
7556 |
-
-webkit-transform: translateY(-10px);
|
7557 |
-
-ms-transform: translateY(-10px);
|
7558 |
-
transform: translateY(-10px);
|
7559 |
-
}
|
7560 |
-
60% {
|
7561 |
-
-webkit-transform: translateY(-5px);
|
7562 |
-
-ms-transform: translateY(-5px);
|
7563 |
-
transform: translateY(-5px);
|
7564 |
-
}
|
7565 |
-
}
|
7566 |
-
|
7567 |
-
.btn-padding{
|
7568 |
-
padding:6px 0px;
|
7569 |
-
}
|
7570 |
-
|
7571 |
-
.b2s-color-white{
|
7572 |
-
color:#fff;
|
7573 |
-
}
|
7574 |
-
|
7575 |
-
.b2s-color-grey{
|
7576 |
-
color: #72777c !important;
|
7577 |
-
}
|
7578 |
-
|
7579 |
-
.b2s-modal-info-key-area{
|
7580 |
-
width: 350px !important;
|
7581 |
-
}
|
7582 |
-
.b2s-text-underline{
|
7583 |
-
text-decoration: underline;
|
7584 |
-
}
|
7585 |
-
|
7586 |
-
.b2s-feature-img-with-24{
|
7587 |
-
max-width: 24px !important;
|
7588 |
-
}
|
7589 |
-
|
7590 |
-
.b2s-padding-bottom-5{
|
7591 |
-
padding-bottom: 5px;
|
7592 |
-
}
|
7593 |
-
|
7594 |
-
.b2s-left-border-success {
|
7595 |
-
border-left: 4px solid #79B232;
|
7596 |
-
}
|
7597 |
-
|
7598 |
-
.b2s-left-border-danger {
|
7599 |
-
border-left: 4px solid #a94442;
|
7600 |
}
|
1 |
+
article,
|
2 |
+
aside,
|
3 |
+
details,
|
4 |
+
figcaption,
|
5 |
+
figure,
|
6 |
+
footer,
|
7 |
+
header,
|
8 |
+
hgroup,
|
9 |
+
main,
|
10 |
+
menu,
|
11 |
+
nav,
|
12 |
+
section,
|
13 |
+
summary {
|
14 |
+
display: block;
|
15 |
+
}
|
16 |
+
audio,
|
17 |
+
canvas,
|
18 |
+
progress,
|
19 |
+
video {
|
20 |
+
display: inline-block;
|
21 |
+
vertical-align: baseline;
|
22 |
+
}
|
23 |
+
audio:not([controls]) {
|
24 |
+
display: none;
|
25 |
+
height: 0;
|
26 |
+
}
|
27 |
+
[hidden],
|
28 |
+
template {
|
29 |
+
display: none;
|
30 |
+
}
|
31 |
+
a {
|
32 |
+
background-color: transparent;
|
33 |
+
}
|
34 |
+
a:active,
|
35 |
+
a:hover {
|
36 |
+
outline: 0;
|
37 |
+
}
|
38 |
+
abbr[title] {
|
39 |
+
border-bottom: 1px dotted;
|
40 |
+
}
|
41 |
+
/*b,
|
42 |
+
strong {
|
43 |
+
font-weight: bold;
|
44 |
+
}*/
|
45 |
+
dfn {
|
46 |
+
font-style: italic;
|
47 |
+
}
|
48 |
+
h1 {
|
49 |
+
margin: .67em 0;
|
50 |
+
font-size: 2em;
|
51 |
+
}
|
52 |
+
mark {
|
53 |
+
color: #000;
|
54 |
+
background: #ff0;
|
55 |
+
}
|
56 |
+
small {
|
57 |
+
font-size: 80%;
|
58 |
+
}
|
59 |
+
sub,
|
60 |
+
sup {
|
61 |
+
position: relative;
|
62 |
+
font-size: 75%;
|
63 |
+
line-height: 0;
|
64 |
+
vertical-align: baseline;
|
65 |
+
}
|
66 |
+
sup {
|
67 |
+
top: -.5em;
|
68 |
+
}
|
69 |
+
sub {
|
70 |
+
bottom: -.25em;
|
71 |
+
}
|
72 |
+
img {
|
73 |
+
border: 0;
|
74 |
+
}
|
75 |
+
svg:not(:root) {
|
76 |
+
overflow: hidden;
|
77 |
+
}
|
78 |
+
figure {
|
79 |
+
margin: 1em 40px;
|
80 |
+
}
|
81 |
+
hr {
|
82 |
+
height: 0;
|
83 |
+
-webkit-box-sizing: content-box;
|
84 |
+
-moz-box-sizing: content-box;
|
85 |
+
box-sizing: content-box;
|
86 |
+
}
|
87 |
+
pre {
|
88 |
+
overflow: auto;
|
89 |
+
}
|
90 |
+
code,
|
91 |
+
kbd,
|
92 |
+
pre,
|
93 |
+
samp {
|
94 |
+
font-family: monospace, monospace;
|
95 |
+
font-size: 1em;
|
96 |
+
}
|
97 |
+
button,
|
98 |
+
input,
|
99 |
+
optgroup,
|
100 |
+
select,
|
101 |
+
textarea {
|
102 |
+
margin: 0;
|
103 |
+
font: inherit;
|
104 |
+
color: inherit;
|
105 |
+
}
|
106 |
+
button {
|
107 |
+
overflow: visible;
|
108 |
+
}
|
109 |
+
button,
|
110 |
+
select {
|
111 |
+
text-transform: none;
|
112 |
+
}
|
113 |
+
button,
|
114 |
+
html input[type="button"],
|
115 |
+
input[type="reset"],
|
116 |
+
input[type="submit"] {
|
117 |
+
-webkit-appearance: button;
|
118 |
+
cursor: pointer;
|
119 |
+
}
|
120 |
+
button[disabled],
|
121 |
+
html input[disabled] {
|
122 |
+
cursor: default;
|
123 |
+
}
|
124 |
+
button::-moz-focus-inner,
|
125 |
+
input::-moz-focus-inner {
|
126 |
+
padding: 0;
|
127 |
+
border: 0;
|
128 |
+
}
|
129 |
+
input {
|
130 |
+
line-height: normal;
|
131 |
+
}
|
132 |
+
input[type="checkbox"],
|
133 |
+
input[type="radio"] {
|
134 |
+
-webkit-box-sizing: border-box;
|
135 |
+
-moz-box-sizing: border-box;
|
136 |
+
box-sizing: border-box;
|
137 |
+
padding: 0;
|
138 |
+
}
|
139 |
+
input[type="number"]::-webkit-inner-spin-button,
|
140 |
+
input[type="number"]::-webkit-outer-spin-button {
|
141 |
+
height: auto;
|
142 |
+
}
|
143 |
+
input[type="search"] {
|
144 |
+
-webkit-box-sizing: content-box;
|
145 |
+
-moz-box-sizing: content-box;
|
146 |
+
box-sizing: content-box;
|
147 |
+
-webkit-appearance: textfield;
|
148 |
+
}
|
149 |
+
input[type="search"]::-webkit-search-cancel-button,
|
150 |
+
input[type="search"]::-webkit-search-decoration {
|
151 |
+
-webkit-appearance: none;
|
152 |
+
}
|
153 |
+
fieldset {
|
154 |
+
padding: .35em .625em .75em;
|
155 |
+
margin: 0 2px;
|
156 |
+
border: 1px solid #c0c0c0;
|
157 |
+
}
|
158 |
+
legend {
|
159 |
+
padding: 0;
|
160 |
+
border: 0;
|
161 |
+
}
|
162 |
+
textarea {
|
163 |
+
overflow: auto;
|
164 |
+
}
|
165 |
+
optgroup {
|
166 |
+
font-weight: bold;
|
167 |
+
}
|
168 |
+
table {
|
169 |
+
border-spacing: 0;
|
170 |
+
border-collapse: collapse;
|
171 |
+
}
|
172 |
+
td,
|
173 |
+
th {
|
174 |
+
padding: 0;
|
175 |
+
}
|
176 |
+
|
177 |
+
@media print {
|
178 |
+
*,
|
179 |
+
*:before,
|
180 |
+
*:after {
|
181 |
+
color: #000 !important;
|
182 |
+
text-shadow: none !important;
|
183 |
+
background: transparent !important;
|
184 |
+
-webkit-box-shadow: none !important;
|
185 |
+
box-shadow: none !important;
|
186 |
+
}
|
187 |
+
a,
|
188 |
+
a:visited {
|
189 |
+
text-decoration: underline;
|
190 |
+
}
|
191 |
+
a[href]:after {
|
192 |
+
content: " (" attr(href) ")";
|
193 |
+
}
|
194 |
+
abbr[title]:after {
|
195 |
+
content: " (" attr(title) ")";
|
196 |
+
}
|
197 |
+
a[href^="#"]:after,
|
198 |
+
a[href^="javascript:"]:after {
|
199 |
+
content: "";
|
200 |
+
}
|
201 |
+
pre,
|
202 |
+
blockquote {
|
203 |
+
border: 1px solid #999;
|
204 |
+
|
205 |
+
page-break-inside: avoid;
|
206 |
+
}
|
207 |
+
thead {
|
208 |
+
display: table-header-group;
|
209 |
+
}
|
210 |
+
tr,
|
211 |
+
img {
|
212 |
+
page-break-inside: avoid;
|
213 |
+
}
|
214 |
+
img {
|
215 |
+
max-width: 100% !important;
|
216 |
+
}
|
217 |
+
p,
|
218 |
+
h2,
|
219 |
+
h3 {
|
220 |
+
orphans: 3;
|
221 |
+
widows: 3;
|
222 |
+
}
|
223 |
+
h2,
|
224 |
+
h3 {
|
225 |
+
page-break-after: avoid;
|
226 |
+
}
|
227 |
+
.navbar {
|
228 |
+
display: none;
|
229 |
+
}
|
230 |
+
.btn > .caret,
|
231 |
+
.dropup > .btn > .caret {
|
232 |
+
border-top-color: #000 !important;
|
233 |
+
}
|
234 |
+
.label {
|
235 |
+
border: 1px solid #000;
|
236 |
+
}
|
237 |
+
.table {
|
238 |
+
border-collapse: collapse !important;
|
239 |
+
}
|
240 |
+
.table td,
|
241 |
+
.table th {
|
242 |
+
background-color: #fff !important;
|
243 |
+
}
|
244 |
+
.table-bordered th,
|
245 |
+
.table-bordered td {
|
246 |
+
border: 1px solid #ddd !important;
|
247 |
+
}
|
248 |
+
}
|
249 |
+
@font-face {
|
250 |
+
font-family: 'Glyphicons Halflings';
|
251 |
+
|
252 |
+
src: url('../fonts/glyphicons-halflings-regular.eot');
|
253 |
+
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
254 |
+
}
|
255 |
+
.glyphicon {
|
256 |
+
position: relative;
|
257 |
+
top: 1px;
|
258 |
+
display: inline-block;
|
259 |
+
font-family: 'Glyphicons Halflings';
|
260 |
+
font-style: normal;
|
261 |
+
font-weight: normal;
|
262 |
+
line-height: 1;
|
263 |
+
|
264 |
+
-webkit-font-smoothing: antialiased;
|
265 |
+
-moz-osx-font-smoothing: grayscale;
|
266 |
+
}
|
267 |
+
.glyphicon-asterisk:before {
|
268 |
+
content: "\002a";
|
269 |
+
}
|
270 |
+
.glyphicon-plus:before {
|
271 |
+
content: "\002b";
|
272 |
+
}
|
273 |
+
.glyphicon-euro:before,
|
274 |
+
.glyphicon-eur:before {
|
275 |
+
content: "\20ac";
|
276 |
+
}
|
277 |
+
.glyphicon-minus:before {
|
278 |
+
content: "\2212";
|
279 |
+
}
|
280 |
+
.glyphicon-cloud:before {
|
281 |
+
content: "\2601";
|
282 |
+
}
|
283 |
+
.glyphicon-envelope:before {
|
284 |
+
content: "\2709";
|
285 |
+
}
|
286 |
+
.glyphicon-pencil:before {
|
287 |
+
content: "\270f";
|
288 |
+
}
|
289 |
+
.glyphicon-glass:before {
|
290 |
+
content: "\e001";
|
291 |
+
}
|
292 |
+
.glyphicon-music:before {
|
293 |
+
content: "\e002";
|
294 |
+
}
|
295 |
+
.glyphicon-search:before {
|
296 |
+
content: "\e003";
|
297 |
+
}
|
298 |
+
.glyphicon-heart:before {
|
299 |
+
content: "\e005";
|
300 |
+
}
|
301 |
+
.glyphicon-star:before {
|
302 |
+
content: "\e006";
|
303 |
+
}
|
304 |
+
.glyphicon-star-empty:before {
|
305 |
+
content: "\e007";
|
306 |
+
}
|
307 |
+
.glyphicon-user:before {
|
308 |
+
content: "\e008";
|
309 |
+
}
|
310 |
+
.glyphicon-film:before {
|
311 |
+
content: "\e009";
|
312 |
+
}
|
313 |
+
.glyphicon-th-large:before {
|
314 |
+
content: "\e010";
|
315 |
+
}
|
316 |
+
.glyphicon-th:before {
|
317 |
+
content: "\e011";
|
318 |
+
}
|
319 |
+
.glyphicon-th-list:before {
|
320 |
+
content: "\e012";
|
321 |
+
}
|
322 |
+
.glyphicon-ok:before {
|
323 |
+
content: "\e013";
|
324 |
+
}
|
325 |
+
.glyphicon-remove:before {
|
326 |
+
content: "\e014";
|
327 |
+
}
|
328 |
+
.glyphicon-zoom-in:before {
|
329 |
+
content: "\e015";
|
330 |
+
}
|
331 |
+
.glyphicon-zoom-out:before {
|
332 |
+
content: "\e016";
|
333 |
+
}
|
334 |
+
.glyphicon-off:before {
|
335 |
+
content: "\e017";
|
336 |
+
}
|
337 |
+
.glyphicon-signal:before {
|
338 |
+
content: "\e018";
|
339 |
+
}
|
340 |
+
.glyphicon-cog:before {
|
341 |
+
content: "\e019";
|
342 |
+
}
|
343 |
+
.glyphicon-trash:before {
|
344 |
+
content: "\e020";
|
345 |
+
}
|
346 |
+
.glyphicon-home:before {
|
347 |
+
content: "\e021";
|
348 |
+
}
|
349 |
+
.glyphicon-file:before {
|
350 |
+
content: "\e022";
|
351 |
+
}
|
352 |
+
.glyphicon-time:before {
|
353 |
+
content: "\e023";
|
354 |
+
}
|
355 |
+
.glyphicon-road:before {
|
356 |
+
content: "\e024";
|
357 |
+
}
|
358 |
+
.glyphicon-download-alt:before {
|
359 |
+
content: "\e025";
|
360 |
+
}
|
361 |
+
.glyphicon-download:before {
|
362 |
+
content: "\e026";
|
363 |
+
}
|
364 |
+
.glyphicon-upload:before {
|
365 |
+
content: "\e027";
|
366 |
+
}
|
367 |
+
.glyphicon-inbox:before {
|
368 |
+
content: "\e028";
|
369 |
+
}
|
370 |
+
.glyphicon-play-circle:before {
|
371 |
+
content: "\e029";
|
372 |
+
}
|
373 |
+
.glyphicon-repeat:before {
|
374 |
+
content: "\e030";
|
375 |
+
}
|
376 |
+
.glyphicon-refresh:before {
|
377 |
+
content: "\e031";
|
378 |
+
}
|
379 |
+
.glyphicon-list-alt:before {
|
380 |
+
content: "\e032";
|
381 |
+
}
|
382 |
+
.glyphicon-lock:before {
|
383 |
+
content: "\e033";
|
384 |
+
}
|
385 |
+
.glyphicon-flag:before {
|
386 |
+
content: "\e034";
|
387 |
+
}
|
388 |
+
.glyphicon-headphones:before {
|
389 |
+
content: "\e035";
|
390 |
+
}
|
391 |
+
.glyphicon-volume-off:before {
|
392 |
+
content: "\e036";
|
393 |
+
}
|
394 |
+
.glyphicon-volume-down:before {
|
395 |
+
content: "\e037";
|
396 |
+
}
|
397 |
+
.glyphicon-volume-up:before {
|
398 |
+
content: "\e038";
|
399 |
+
}
|
400 |
+
.glyphicon-qrcode:before {
|
401 |
+
content: "\e039";
|
402 |
+
}
|
403 |
+
.glyphicon-barcode:before {
|
404 |
+
content: "\e040";
|
405 |
+
}
|
406 |
+
.glyphicon-tag:before {
|
407 |
+
content: "\e041";
|
408 |
+
}
|
409 |
+
.glyphicon-tags:before {
|
410 |
+
content: "\e042";
|
411 |
+
}
|
412 |
+
.glyphicon-book:before {
|
413 |
+
content: "\e043";
|
414 |
+
}
|
415 |
+
.glyphicon-bookmark:before {
|
416 |
+
content: "\e044";
|
417 |
+
}
|
418 |
+
.glyphicon-print:before {
|
419 |
+
content: "\e045";
|
420 |
+
}
|
421 |
+
.glyphicon-camera:before {
|
422 |
+
content: "\e046";
|
423 |
+
}
|
424 |
+
.glyphicon-font:before {
|
425 |
+
content: "\e047";
|
426 |
+
}
|
427 |
+
.glyphicon-bold:before {
|
428 |
+
content: "\e048";
|
429 |
+
}
|
430 |
+
.glyphicon-italic:before {
|
431 |
+
content: "\e049";
|
432 |
+
}
|
433 |
+
.glyphicon-text-height:before {
|
434 |
+
content: "\e050";
|
435 |
+
}
|
436 |
+
.glyphicon-text-width:before {
|
437 |
+
content: "\e051";
|
438 |
+
}
|
439 |
+
.glyphicon-align-left:before {
|
440 |
+
content: "\e052";
|
441 |
+
}
|
442 |
+
.glyphicon-align-center:before {
|
443 |
+
content: "\e053";
|
444 |
+
}
|
445 |
+
.glyphicon-align-right:before {
|
446 |
+
content: "\e054";
|
447 |
+
}
|
448 |
+
.glyphicon-align-justify:before {
|
449 |
+
content: "\e055";
|
450 |
+
}
|
451 |
+
.glyphicon-list:before {
|
452 |
+
content: "\e056";
|
453 |
+
}
|
454 |
+
.glyphicon-indent-left:before {
|
455 |
+
content: "\e057";
|
456 |
+
}
|
457 |
+
.glyphicon-indent-right:before {
|
458 |
+
content: "\e058";
|
459 |
+
}
|
460 |
+
.glyphicon-facetime-video:before {
|
461 |
+
content: "\e059";
|
462 |
+
}
|
463 |
+
.glyphicon-picture:before {
|
464 |
+
content: "\e060";
|
465 |
+
}
|
466 |
+
.glyphicon-map-marker:before {
|
467 |
+
content: "\e062";
|
468 |
+
}
|
469 |
+
.glyphicon-adjust:before {
|
470 |
+
content: "\e063";
|
471 |
+
}
|
472 |
+
.glyphicon-tint:before {
|
473 |
+
content: "\e064";
|
474 |
+
}
|
475 |
+
.glyphicon-edit:before {
|
476 |
+
content: "\e065";
|
477 |
+
}
|
478 |
+
.glyphicon-share:before {
|
479 |
+
content: "\e066";
|
480 |
+
}
|
481 |
+
.glyphicon-check:before {
|
482 |
+
content: "\e067";
|
483 |
+
}
|
484 |
+
.glyphicon-move:before {
|
485 |
+
content: "\e068";
|
486 |
+
}
|
487 |
+
.glyphicon-step-backward:before {
|
488 |
+
content: "\e069";
|
489 |
+
}
|
490 |
+
.glyphicon-fast-backward:before {
|
491 |
+
content: "\e070";
|
492 |
+
}
|
493 |
+
.glyphicon-backward:before {
|
494 |
+
content: "\e071";
|
495 |
+
}
|
496 |
+
.glyphicon-play:before {
|
497 |
+
content: "\e072";
|
498 |
+
}
|
499 |
+
.glyphicon-pause:before {
|
500 |
+
content: "\e073";
|
501 |
+
}
|
502 |
+
.glyphicon-stop:before {
|
503 |
+
content: "\e074";
|
504 |
+
}
|
505 |
+
.glyphicon-forward:before {
|
506 |
+
content: "\e075";
|
507 |
+
}
|
508 |
+
.glyphicon-fast-forward:before {
|
509 |
+
content: "\e076";
|
510 |
+
}
|
511 |
+
.glyphicon-step-forward:before {
|
512 |
+
content: "\e077";
|
513 |
+
}
|
514 |
+
.glyphicon-eject:before {
|
515 |
+
content: "\e078";
|
516 |
+
}
|
517 |
+
.glyphicon-chevron-left:before {
|
518 |
+
content: "\e079";
|
519 |
+
}
|
520 |
+
.glyphicon-chevron-right:before {
|
521 |
+
content: "\e080";
|
522 |
+
}
|
523 |
+
.glyphicon-plus-sign:before {
|
524 |
+
content: "\e081";
|
525 |
+
}
|
526 |
+
.glyphicon-minus-sign:before {
|
527 |
+
content: "\e082";
|
528 |
+
}
|
529 |
+
.glyphicon-remove-sign:before {
|
530 |
+
content: "\e083";
|
531 |
+
}
|
532 |
+
.glyphicon-ok-sign:before {
|
533 |
+
content: "\e084";
|
534 |
+
}
|
535 |
+
.glyphicon-question-sign:before {
|
536 |
+
content: "\e085";
|
537 |
+
}
|
538 |
+
.glyphicon-info-sign:before {
|
539 |
+
content: "\e086";
|
540 |
+
}
|
541 |
+
.glyphicon-screenshot:before {
|
542 |
+
content: "\e087";
|
543 |
+
}
|
544 |
+
.glyphicon-remove-circle:before {
|
545 |
+
content: "\e088";
|
546 |
+
}
|
547 |
+
.glyphicon-ok-circle:before {
|
548 |
+
content: "\e089";
|
549 |
+
}
|
550 |
+
.glyphicon-ban-circle:before {
|
551 |
+
content: "\e090";
|
552 |
+
}
|
553 |
+
.glyphicon-arrow-left:before {
|
554 |
+
content: "\e091";
|
555 |
+
}
|
556 |
+
.glyphicon-arrow-right:before {
|
557 |
+
content: "\e092";
|
558 |
+
}
|
559 |
+
.glyphicon-arrow-up:before {
|
560 |
+
content: "\e093";
|
561 |
+
}
|
562 |
+
.glyphicon-arrow-down:before {
|
563 |
+
content: "\e094";
|
564 |
+
}
|
565 |
+
.glyphicon-share-alt:before {
|
566 |
+
content: "\e095";
|
567 |
+
}
|
568 |
+
.glyphicon-resize-full:before {
|
569 |
+
content: "\e096";
|
570 |
+
}
|
571 |
+
.glyphicon-resize-small:before {
|
572 |
+
content: "\e097";
|
573 |
+
}
|
574 |
+
.glyphicon-exclamation-sign:before {
|
575 |
+
content: "\e101";
|
576 |
+
}
|
577 |
+
.glyphicon-gift:before {
|
578 |
+
content: "\e102";
|
579 |
+
}
|
580 |
+
.glyphicon-leaf:before {
|
581 |
+
content: "\e103";
|
582 |
+
}
|
583 |
+
.glyphicon-fire:before {
|
584 |
+
content: "\e104";
|
585 |
+
}
|
586 |
+
.glyphicon-eye-open:before {
|
587 |
+
content: "\e105";
|
588 |
+
}
|
589 |
+
.glyphicon-eye-close:before {
|
590 |
+
content: "\e106";
|
591 |
+
}
|
592 |
+
.glyphicon-warning-sign:before {
|
593 |
+
content: "\e107";
|
594 |
+
}
|
595 |
+
.glyphicon-plane:before {
|
596 |
+
content: "\e108";
|
597 |
+
}
|
598 |
+
.glyphicon-calendar:before {
|
599 |
+
content: "\e109";
|
600 |
+
}
|
601 |
+
.glyphicon-random:before {
|
602 |
+
content: "\e110";
|
603 |
+
}
|
604 |
+
.glyphicon-comment:before {
|
605 |
+
content: "\e111";
|
606 |
+
}
|
607 |
+
.glyphicon-magnet:before {
|
608 |
+
content: "\e112";
|
609 |
+
}
|
610 |
+
.glyphicon-chevron-up:before {
|
611 |
+
content: "\e113";
|
612 |
+
}
|
613 |
+
.glyphicon-chevron-down:before {
|
614 |
+
content: "\e114";
|
615 |
+
}
|
616 |
+
.glyphicon-retweet:before {
|
617 |
+
content: "\e115";
|
618 |
+
}
|
619 |
+
.glyphicon-shopping-cart:before {
|
620 |
+
content: "\e116";
|
621 |
+
}
|
622 |
+
.glyphicon-folder-close:before {
|
623 |
+
content: "\e117";
|
624 |
+
}
|
625 |
+
.glyphicon-folder-open:before {
|
626 |
+
content: "\e118";
|
627 |
+
}
|
628 |
+
.glyphicon-resize-vertical:before {
|
629 |
+
content: "\e119";
|
630 |
+
}
|
631 |
+
.glyphicon-resize-horizontal:before {
|
632 |
+
content: "\e120";
|
633 |
+
}
|
634 |
+
.glyphicon-hdd:before {
|
635 |
+
content: "\e121";
|
636 |
+
}
|
637 |
+
.glyphicon-bullhorn:before {
|
638 |
+
content: "\e122";
|
639 |
+
}
|
640 |
+
.glyphicon-bell:before {
|
641 |
+
content: "\e123";
|
642 |
+
}
|
643 |
+
.glyphicon-certificate:before {
|
644 |
+
content: "\e124";
|
645 |
+
}
|
646 |
+
.glyphicon-thumbs-up:before {
|
647 |
+
content: "\e125";
|
648 |
+
}
|
649 |
+
.glyphicon-thumbs-down:before {
|
650 |
+
content: "\e126";
|
651 |
+
}
|
652 |
+
.glyphicon-hand-right:before {
|
653 |
+
content: "\e127";
|
654 |
+
}
|
655 |
+
.glyphicon-hand-left:before {
|
656 |
+
content: "\e128";
|
657 |
+
}
|
658 |
+
.glyphicon-hand-up:before {
|
659 |
+
content: "\e129";
|
660 |
+
}
|
661 |
+
.glyphicon-hand-down:before {
|
662 |
+
content: "\e130";
|
663 |
+
}
|
664 |
+
.glyphicon-circle-arrow-right:before {
|
665 |
+
content: "\e131";
|
666 |
+
}
|
667 |
+
.glyphicon-circle-arrow-left:before {
|
668 |
+
content: "\e132";
|
669 |
+
}
|
670 |
+
.glyphicon-circle-arrow-up:before {
|
671 |
+
content: "\e133";
|
672 |
+
}
|
673 |
+
.glyphicon-circle-arrow-down:before {
|
674 |
+
content: "\e134";
|
675 |
+
}
|
676 |
+
.glyphicon-globe:before {
|
677 |
+
content: "\e135";
|
678 |
+
}
|
679 |
+
.glyphicon-wrench:before {
|
680 |
+
content: "\e136";
|
681 |
+
}
|
682 |
+
.glyphicon-tasks:before {
|
683 |
+
content: "\e137";
|
684 |
+
}
|
685 |
+
.glyphicon-filter:before {
|
686 |
+
content: "\e138";
|
687 |
+
}
|
688 |
+
.glyphicon-briefcase:before {
|
689 |
+
content: "\e139";
|
690 |
+
}
|
691 |
+
.glyphicon-fullscreen:before {
|
692 |
+
content: "\e140";
|
693 |
+
}
|
694 |
+
.glyphicon-dashboard:before {
|
695 |
+
content: "\e141";
|
696 |
+
}
|
697 |
+
.glyphicon-paperclip:before {
|
698 |
+
content: "\e142";
|
699 |
+
}
|
700 |
+
.glyphicon-heart-empty:before {
|
701 |
+
content: "\e143";
|
702 |
+
}
|
703 |
+
.glyphicon-link:before {
|
704 |
+
content: "\e144";
|
705 |
+
}
|
706 |
+
.glyphicon-phone:before {
|
707 |
+
content: "\e145";
|
708 |
+
}
|
709 |
+
.glyphicon-pushpin:before {
|
710 |
+
content: "\e146";
|
711 |
+
}
|
712 |
+
.glyphicon-usd:before {
|
713 |
+
content: "\e148";
|
714 |
+
}
|
715 |
+
.glyphicon-gbp:before {
|
716 |
+
content: "\e149";
|
717 |
+
}
|
718 |
+
.glyphicon-sort:before {
|
719 |
+
content: "\e150";
|
720 |
+
}
|
721 |
+
.glyphicon-sort-by-alphabet:before {
|
722 |
+
content: "\e151";
|
723 |
+
}
|
724 |
+
.glyphicon-sort-by-alphabet-alt:before {
|
725 |
+
content: "\e152";
|
726 |
+
}
|
727 |
+
.glyphicon-sort-by-order:before {
|
728 |
+
content: "\e153";
|
729 |
+
}
|
730 |
+
.glyphicon-sort-by-order-alt:before {
|
731 |
+
content: "\e154";
|
732 |
+
}
|
733 |
+
.glyphicon-sort-by-attributes:before {
|
734 |
+
content: "\e155";
|
735 |
+
}
|
736 |
+
.glyphicon-sort-by-attributes-alt:before {
|
737 |
+
content: "\e156";
|
738 |
+
}
|
739 |
+
.glyphicon-unchecked:before {
|
740 |
+
content: "\e157";
|
741 |
+
}
|
742 |
+
.glyphicon-expand:before {
|
743 |
+
content: "\e158";
|
744 |
+
}
|
745 |
+
.glyphicon-collapse-down:before {
|
746 |
+
content: "\e159";
|
747 |
+
}
|
748 |
+
.glyphicon-collapse-up:before {
|
749 |
+
content: "\e160";
|
750 |
+
}
|
751 |
+
.glyphicon-log-in:before {
|
752 |
+
content: "\e161";
|
753 |
+
}
|
754 |
+
.glyphicon-flash:before {
|
755 |
+
content: "\e162";
|
756 |
+
}
|
757 |
+
.glyphicon-log-out:before {
|
758 |
+
content: "\e163";
|
759 |
+
}
|
760 |
+
.glyphicon-new-window:before {
|
761 |
+
content: "\e164";
|
762 |
+
}
|
763 |
+
.glyphicon-record:before {
|
764 |
+
content: "\e165";
|
765 |
+
}
|
766 |
+
.glyphicon-save:before {
|
767 |
+
content: "\e166";
|
768 |
+
}
|
769 |
+
.glyphicon-open:before {
|
770 |
+
content: "\e167";
|
771 |
+
}
|
772 |
+
.glyphicon-saved:before {
|
773 |
+
content: "\e168";
|
774 |
+
}
|
775 |
+
.glyphicon-import:before {
|
776 |
+
content: "\e169";
|
777 |
+
}
|
778 |
+
.glyphicon-export:before {
|
779 |
+
content: "\e170";
|
780 |
+
}
|
781 |
+
.glyphicon-send:before {
|
782 |
+
content: "\e171";
|
783 |
+
}
|
784 |
+
.glyphicon-floppy-disk:before {
|
785 |
+
content: "\e172";
|
786 |
+
}
|
787 |
+
.glyphicon-floppy-saved:before {
|
788 |
+
content: "\e173";
|
789 |
+
}
|
790 |
+
.glyphicon-floppy-remove:before {
|
791 |
+
content: "\e174";
|
792 |
+
}
|
793 |
+
.glyphicon-floppy-save:before {
|
794 |
+
content: "\e175";
|
795 |
+
}
|
796 |
+
.glyphicon-floppy-open:before {
|
797 |
+
content: "\e176";
|
798 |
+
}
|
799 |
+
.glyphicon-credit-card:before {
|
800 |
+
content: "\e177";
|
801 |
+
}
|
802 |
+
.glyphicon-transfer:before {
|
803 |
+
content: "\e178";
|
804 |
+
}
|
805 |
+
.glyphicon-cutlery:before {
|
806 |
+
content: "\e179";
|
807 |
+
}
|
808 |
+
.glyphicon-header:before {
|
809 |
+
content: "\e180";
|
810 |
+
}
|
811 |
+
.glyphicon-compressed:before {
|
812 |
+
content: "\e181";
|
813 |
+
}
|
814 |
+
.glyphicon-earphone:before {
|
815 |
+
content: "\e182";
|
816 |
+
}
|
817 |
+
.glyphicon-phone-alt:before {
|
818 |
+
content: "\e183";
|
819 |
+
}
|
820 |
+
.glyphicon-tower:before {
|
821 |
+
content: "\e184";
|
822 |
+
}
|
823 |
+
.glyphicon-stats:before {
|
824 |
+
content: "\e185";
|
825 |
+
}
|
826 |
+
.glyphicon-sd-video:before {
|
827 |
+
content: "\e186";
|
828 |
+
}
|
829 |
+
.glyphicon-hd-video:before {
|
830 |
+
content: "\e187";
|
831 |
+
}
|
832 |
+
.glyphicon-subtitles:before {
|
833 |
+
content: "\e188";
|
834 |
+
}
|
835 |
+
.glyphicon-sound-stereo:before {
|
836 |
+
content: "\e189";
|
837 |
+
}
|
838 |
+
.glyphicon-sound-dolby:before {
|
839 |
+
content: "\e190";
|
840 |
+
}
|
841 |
+
.glyphicon-sound-5-1:before {
|
842 |
+
content: "\e191";
|
843 |
+
}
|
844 |
+
.glyphicon-sound-6-1:before {
|
845 |
+
content: "\e192";
|
846 |
+
}
|
847 |
+
.glyphicon-sound-7-1:before {
|
848 |
+
content: "\e193";
|
849 |
+
}
|
850 |
+
.glyphicon-copyright-mark:before {
|
851 |
+
content: "\e194";
|
852 |
+
}
|
853 |
+
.glyphicon-registration-mark:before {
|
854 |
+
content: "\e195";
|
855 |
+
}
|
856 |
+
.glyphicon-cloud-download:before {
|
857 |
+
content: "\e197";
|
858 |
+
}
|
859 |
+
.glyphicon-cloud-upload:before {
|
860 |
+
content: "\e198";
|
861 |
+
}
|
862 |
+
.glyphicon-tree-conifer:before {
|
863 |
+
content: "\e199";
|
864 |
+
}
|
865 |
+
.glyphicon-tree-deciduous:before {
|
866 |
+
content: "\e200";
|
867 |
+
}
|
868 |
+
.glyphicon-cd:before {
|
869 |
+
content: "\e201";
|
870 |
+
}
|
871 |
+
.glyphicon-save-file:before {
|
872 |
+
content: "\e202";
|
873 |
+
}
|
874 |
+
.glyphicon-open-file:before {
|
875 |
+
content: "\e203";
|
876 |
+
}
|
877 |
+
.glyphicon-level-up:before {
|
878 |
+
content: "\e204";
|
879 |
+
}
|
880 |
+
.glyphicon-copy:before {
|
881 |
+
content: "\e205";
|
882 |
+
}
|
883 |
+
.glyphicon-paste:before {
|
884 |
+
content: "\e206";
|
885 |
+
}
|
886 |
+
.glyphicon-alert:before {
|
887 |
+
content: "\e209";
|
888 |
+
}
|
889 |
+
.glyphicon-equalizer:before {
|
890 |
+
content: "\e210";
|
891 |
+
}
|
892 |
+
.glyphicon-king:before {
|
893 |
+
content: "\e211";
|
894 |
+
}
|
895 |
+
.glyphicon-queen:before {
|
896 |
+
content: "\e212";
|
897 |
+
}
|
898 |
+
.glyphicon-pawn:before {
|
899 |
+
content: "\e213";
|
900 |
+
}
|
901 |
+
.glyphicon-bishop:before {
|
902 |
+
content: "\e214";
|
903 |
+
}
|
904 |
+
.glyphicon-knight:before {
|
905 |
+
content: "\e215";
|
906 |
+
}
|
907 |
+
.glyphicon-baby-formula:before {
|
908 |
+
content: "\e216";
|
909 |
+
}
|
910 |
+
.glyphicon-tent:before {
|
911 |
+
content: "\26fa";
|
912 |
+
}
|
913 |
+
.glyphicon-blackboard:before {
|
914 |
+
content: "\e218";
|
915 |
+
}
|
916 |
+
.glyphicon-bed:before {
|
917 |
+
content: "\e219";
|
918 |
+
}
|
919 |
+
.glyphicon-apple:before {
|
920 |
+
content: "\f8ff";
|
921 |
+
}
|
922 |
+
.glyphicon-erase:before {
|
923 |
+
content: "\e221";
|
924 |
+
}
|
925 |
+
.glyphicon-hourglass:before {
|
926 |
+
content: "\231b";
|
927 |
+
}
|
928 |
+
.glyphicon-lamp:before {
|
929 |
+
content: "\e223";
|
930 |
+
}
|
931 |
+
.glyphicon-duplicate:before {
|
932 |
+
content: "\e224";
|
933 |
+
}
|
934 |
+
.glyphicon-piggy-bank:before {
|
935 |
+
content: "\e225";
|
936 |
+
}
|
937 |
+
.glyphicon-scissors:before {
|
938 |
+
content: "\e226";
|
939 |
+
}
|
940 |
+
.glyphicon-bitcoin:before {
|
941 |
+
content: "\e227";
|
942 |
+
}
|
943 |
+
.glyphicon-btc:before {
|
944 |
+
content: "\e227";
|
945 |
+
}
|
946 |
+
.glyphicon-xbt:before {
|
947 |
+
content: "\e227";
|
948 |
+
}
|
949 |
+
.glyphicon-yen:before {
|
950 |
+
content: "\00a5";
|
951 |
+
}
|
952 |
+
.glyphicon-jpy:before {
|
953 |
+
content: "\00a5";
|
954 |
+
}
|
955 |
+
.glyphicon-ruble:before {
|
956 |
+
content: "\20bd";
|
957 |
+
}
|
958 |
+
.glyphicon-rub:before {
|
959 |
+
content: "\20bd";
|
960 |
+
}
|
961 |
+
.glyphicon-scale:before {
|
962 |
+
content: "\e230";
|
963 |
+
}
|
964 |
+
.glyphicon-ice-lolly:before {
|
965 |
+
content: "\e231";
|
966 |
+
}
|
967 |
+
.glyphicon-ice-lolly-tasted:before {
|
968 |
+
content: "\e232";
|
969 |
+
}
|
970 |
+
.glyphicon-education:before {
|
971 |
+
content: "\e233";
|
972 |
+
}
|
973 |
+
.glyphicon-option-horizontal:before {
|
974 |
+
content: "\e234";
|
975 |
+
}
|
976 |
+
.glyphicon-option-vertical:before {
|
977 |
+
content: "\e235";
|
978 |
+
}
|
979 |
+
.glyphicon-menu-hamburger:before {
|
980 |
+
content: "\e236";
|
981 |
+
}
|
982 |
+
.glyphicon-modal-window:before {
|
983 |
+
content: "\e237";
|
984 |
+
}
|
985 |
+
.glyphicon-oil:before {
|
986 |
+
content: "\e238";
|
987 |
+
}
|
988 |
+
.glyphicon-grain:before {
|
989 |
+
content: "\e239";
|
990 |
+
}
|
991 |
+
.glyphicon-sunglasses:before {
|
992 |
+
content: "\e240";
|
993 |
+
}
|
994 |
+
.glyphicon-text-size:before {
|
995 |
+
content: "\e241";
|
996 |
+
}
|
997 |
+
.glyphicon-text-color:before {
|
998 |
+
content: "\e242";
|
999 |
+
}
|
1000 |
+
.glyphicon-text-background:before {
|
1001 |
+
content: "\e243";
|
1002 |
+
}
|
1003 |
+
.glyphicon-object-align-top:before {
|
1004 |
+
content: "\e244";
|
1005 |
+
}
|
1006 |
+
.glyphicon-object-align-bottom:before {
|
1007 |
+
content: "\e245";
|
1008 |
+
}
|
1009 |
+
.glyphicon-object-align-horizontal:before {
|
1010 |
+
content: "\e246";
|
1011 |
+
}
|
1012 |
+
.glyphicon-object-align-left:before {
|
1013 |
+
content: "\e247";
|
1014 |
+
}
|
1015 |
+
.glyphicon-object-align-vertical:before {
|
1016 |
+
content: "\e248";
|
1017 |
+
}
|
1018 |
+
.glyphicon-object-align-right:before {
|
1019 |
+
content: "\e249";
|
1020 |
+
}
|
1021 |
+
.glyphicon-triangle-right:before {
|
1022 |
+
content: "\e250";
|
1023 |
+
}
|
1024 |
+
.glyphicon-triangle-left:before {
|
1025 |
+
content: "\e251";
|
1026 |
+
}
|
1027 |
+
.glyphicon-triangle-bottom:before {
|
1028 |
+
content: "\e252";
|
1029 |
+
}
|
1030 |
+
.glyphicon-triangle-top:before {
|
1031 |
+
content: "\e253";
|
1032 |
+
}
|
1033 |
+
.glyphicon-console:before {
|
1034 |
+
content: "\e254";
|
1035 |
+
}
|
1036 |
+
.glyphicon-superscript:before {
|
1037 |
+
content: "\e255";
|
1038 |
+
}
|
1039 |
+
.glyphicon-subscript:before {
|
1040 |
+
content: "\e256";
|
1041 |
+
}
|
1042 |
+
.glyphicon-menu-left:before {
|
1043 |
+
content: "\e257";
|
1044 |
+
}
|
1045 |
+
.glyphicon-menu-right:before {
|
1046 |
+
content: "\e258";
|
1047 |
+
}
|
1048 |
+
.glyphicon-menu-down:before {
|
1049 |
+
content: "\e259";
|
1050 |
+
}
|
1051 |
+
.glyphicon-menu-up:before {
|
1052 |
+
content: "\e260";
|
1053 |
+
}
|
1054 |
+
* {
|
1055 |
+
-webkit-box-sizing: border-box;
|
1056 |
+
-moz-box-sizing: border-box;
|
1057 |
+
box-sizing: border-box;
|
1058 |
+
}
|
1059 |
+
*:before,
|
1060 |
+
*:after {
|
1061 |
+
-webkit-box-sizing: border-box;
|
1062 |
+
-moz-box-sizing: border-box;
|
1063 |
+
box-sizing: border-box;
|
1064 |
+
}
|
1065 |
+
/*html {
|
1066 |
+
font-size: 10px;
|
1067 |
+
|
1068 |
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
1069 |
+
}
|
1070 |
+
body {
|
1071 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1072 |
+
font-size: 14px;
|
1073 |
+
line-height: 1.42857143;
|
1074 |
+
color: #333;
|
1075 |
+
background-color: #fff;
|
1076 |
+
}*/
|
1077 |
+
input,
|
1078 |
+
button,
|
1079 |
+
select,
|
1080 |
+
textarea {
|
1081 |
+
font-family: inherit;
|
1082 |
+
font-size: inherit;
|
1083 |
+
line-height: inherit;
|
1084 |
+
}
|
1085 |
+
a {
|
1086 |
+
color: #337ab7;
|
1087 |
+
text-decoration: none;
|
1088 |
+
}
|
1089 |
+
a:hover,
|
1090 |
+
a:focus {
|
1091 |
+
color: #23527c;
|
1092 |
+
text-decoration: underline;
|
1093 |
+
}
|
1094 |
+
a:focus {
|
1095 |
+
outline: 5px auto -webkit-focus-ring-color;
|
1096 |
+
outline-offset: -2px;
|
1097 |
+
}
|
1098 |
+
figure {
|
1099 |
+
margin: 0;
|
1100 |
+
}
|
1101 |
+
img {
|
1102 |
+
vertical-align: middle;
|
1103 |
+
}
|
1104 |
+
.img-responsive,
|
1105 |
+
.thumbnail > img,
|
1106 |
+
.thumbnail a > img,
|
1107 |
+
.carousel-inner > .item > img,
|
1108 |
+
.carousel-inner > .item > a > img {
|
1109 |
+
display: block;
|
1110 |
+
max-width: 100%;
|
1111 |
+
height: auto;
|
1112 |
+
}
|
1113 |
+
.img-rounded {
|
1114 |
+
border-radius: 6px;
|
1115 |
+
}
|
1116 |
+
.img-thumbnail {
|
1117 |
+
display: inline-block;
|
1118 |
+
max-width: 100%;
|
1119 |
+
height: auto;
|
1120 |
+
padding: 4px;
|
1121 |
+
line-height: 1.42857143;
|
1122 |
+
background-color: #fff;
|
1123 |
+
border: 1px solid #ddd;
|
1124 |
+
border-radius: 4px;
|
1125 |
+
-webkit-transition: all .2s ease-in-out;
|
1126 |
+
-o-transition: all .2s ease-in-out;
|
1127 |
+
transition: all .2s ease-in-out;
|
1128 |
+
}
|
1129 |
+
.img-circle {
|
1130 |
+
border-radius: 50%;
|
1131 |
+
}
|
1132 |
+
hr {
|
1133 |
+
margin-top: 15px;
|
1134 |
+
margin-bottom: 15px;
|
1135 |
+
border: 0;
|
1136 |
+
border-top: 1px solid #eee;
|
1137 |
+
}
|
1138 |
+
.sr-only {
|
1139 |
+
position: absolute;
|
1140 |
+
width: 1px;
|
1141 |
+
height: 1px;
|
1142 |
+
padding: 0;
|
1143 |
+
margin: -1px;
|
1144 |
+
overflow: hidden;
|
1145 |
+
clip: rect(0, 0, 0, 0);
|
1146 |
+
border: 0;
|
1147 |
+
}
|
1148 |
+
.sr-only-focusable:active,
|
1149 |
+
.sr-only-focusable:focus {
|
1150 |
+
position: static;
|
1151 |
+
width: auto;
|
1152 |
+
height: auto;
|
1153 |
+
margin: 0;
|
1154 |
+
overflow: visible;
|
1155 |
+
clip: auto;
|
1156 |
+
}
|
1157 |
+
[role="button"] {
|
1158 |
+
cursor: pointer;
|
1159 |
+
}
|
1160 |
+
h1,
|
1161 |
+
h2,
|
1162 |
+
h3,
|
1163 |
+
h4,
|
1164 |
+
h5,
|
1165 |
+
h6,
|
1166 |
+
.h1,
|
1167 |
+
.h2,
|
1168 |
+
.h3,
|
1169 |
+
.h4,
|
1170 |
+
.h5,
|
1171 |
+
.h6 {
|
1172 |
+
font-family: inherit;
|
1173 |
+
font-weight: 500;
|
1174 |
+
line-height: 1.1;
|
1175 |
+
color: inherit;
|
1176 |
+
}
|
1177 |
+
h1 small,
|
1178 |
+
h2 small,
|
1179 |
+
h3 small,
|
1180 |
+
h4 small,
|
1181 |
+
h5 small,
|
1182 |
+
h6 small,
|
1183 |
+
.h1 small,
|
1184 |
+
.h2 small,
|
1185 |
+
.h3 small,
|
1186 |
+
.h4 small,
|
1187 |
+
.h5 small,
|
1188 |
+
.h6 small,
|
1189 |
+
h1 .small,
|
1190 |
+
h2 .small,
|
1191 |
+
h3 .small,
|
1192 |
+
h4 .small,
|
1193 |
+
h5 .small,
|
1194 |
+
h6 .small,
|
1195 |
+
.h1 .small,
|
1196 |
+
.h2 .small,
|
1197 |
+
.h3 .small,
|
1198 |
+
.h4 .small,
|
1199 |
+
.h5 .small,
|
1200 |
+
.h6 .small {
|
1201 |
+
font-weight: normal;
|
1202 |
+
line-height: 1;
|
1203 |
+
color: #777;
|
1204 |
+
}
|
1205 |
+
h1,
|
1206 |
+
.h1,
|
1207 |
+
h2,
|
1208 |
+
.h2,
|
1209 |
+
h3,
|
1210 |
+
.h3 {
|
1211 |
+
margin-top: 20px;
|
1212 |
+
margin-bottom: 10px;
|
1213 |
+
}
|
1214 |
+
h1 small,
|
1215 |
+
.h1 small,
|
1216 |
+
h2 small,
|
1217 |
+
.h2 small,
|
1218 |
+
h3 small,
|
1219 |
+
.h3 small,
|
1220 |
+
h1 .small,
|
1221 |
+
.h1 .small,
|
1222 |
+
h2 .small,
|
1223 |
+
.h2 .small,
|
1224 |
+
h3 .small,
|
1225 |
+
.h3 .small {
|
1226 |
+
font-size: 65%;
|
1227 |
+
}
|
1228 |
+
h4,
|
1229 |
+
.h4,
|
1230 |
+
h5,
|
1231 |
+
.h5,
|
1232 |
+
h6,
|
1233 |
+
.h6 {
|
1234 |
+
margin-top: 10px;
|
1235 |
+
margin-bottom: 10px;
|
1236 |
+
}
|
1237 |
+
h4 small,
|
1238 |
+
.h4 small,
|
1239 |
+
h5 small,
|
1240 |
+
.h5 small,
|
1241 |
+
h6 small,
|
1242 |
+
.h6 small,
|
1243 |
+
h4 .small,
|
1244 |
+
.h4 .small,
|
1245 |
+
h5 .small,
|
1246 |
+
.h5 .small,
|
1247 |
+
h6 .small,
|
1248 |
+
.h6 .small {
|
1249 |
+
font-size: 75%;
|
1250 |
+
}
|
1251 |
+
h1,
|
1252 |
+
.h1 {
|
1253 |
+
font-size: 28px;
|
1254 |
+
}
|
1255 |
+
h2,
|
1256 |
+
.h2 {
|
1257 |
+
font-size: 22px;
|
1258 |
+
}
|
1259 |
+
h3,
|
1260 |
+
.h3 {
|
1261 |
+
font-size: 20px;
|
1262 |
+
}
|
1263 |
+
h4,
|
1264 |
+
.h4 {
|
1265 |
+
font-size: 18px;
|
1266 |
+
}
|
1267 |
+
h5,
|
1268 |
+
.h5 {
|
1269 |
+
font-size: 14px;
|
1270 |
+
}
|
1271 |
+
h6,
|
1272 |
+
.h6 {
|
1273 |
+
font-size: 12px;
|
1274 |
+
}
|
1275 |
+
p {
|
1276 |
+
margin: 0 0 10px;
|
1277 |
+
}
|
1278 |
+
.lead {
|
1279 |
+
margin-bottom: 20px;
|
1280 |
+
font-size: 16px;
|
1281 |
+
font-weight: 300;
|
1282 |
+
line-height: 1.4;
|
1283 |
+
}
|
1284 |
+
@media (min-width: 768px) {
|
1285 |
+
.lead {
|
1286 |
+
font-size: 21px;
|
1287 |
+
}
|
1288 |
+
}
|
1289 |
+
small,
|
1290 |
+
.small {
|
1291 |
+
font-size: 85%;
|
1292 |
+
}
|
1293 |
+
mark,
|
1294 |
+
.mark {
|
1295 |
+
padding: .2em;
|
1296 |
+
background-color: #fcf8e3;
|
1297 |
+
}
|
1298 |
+
.text-left {
|
1299 |
+
text-align: left;
|
1300 |
+
}
|
1301 |
+
.text-right {
|
1302 |
+
text-align: right;
|
1303 |
+
}
|
1304 |
+
.text-center {
|
1305 |
+
text-align: center;
|
1306 |
+
}
|
1307 |
+
.text-justify {
|
1308 |
+
text-align: justify;
|
1309 |
+
}
|
1310 |
+
.text-nowrap {
|
1311 |
+
white-space: nowrap;
|
1312 |
+
}
|
1313 |
+
.text-lowercase {
|
1314 |
+
text-transform: lowercase;
|
1315 |
+
}
|
1316 |
+
.text-uppercase {
|
1317 |
+
text-transform: uppercase;
|
1318 |
+
}
|
1319 |
+
.text-capitalize {
|
1320 |
+
text-transform: capitalize;
|
1321 |
+
}
|
1322 |
+
.text-muted {
|
1323 |
+
color: #777;
|
1324 |
+
}
|
1325 |
+
.text-primary {
|
1326 |
+
color: #337ab7;
|
1327 |
+
}
|
1328 |
+
a.text-primary:hover,
|
1329 |
+
a.text-primary:focus {
|
1330 |
+
color: #286090;
|
1331 |
+
}
|
1332 |
+
.text-success {
|
1333 |
+
color: #3c763d;
|
1334 |
+
}
|
1335 |
+
a.text-success:hover,
|
1336 |
+
a.text-success:focus {
|
1337 |
+
color: #2b542c;
|
1338 |
+
}
|
1339 |
+
.text-info {
|
1340 |
+
color: #31708f;
|
1341 |
+
}
|
1342 |
+
a.text-info:hover,
|
1343 |
+
a.text-info:focus {
|
1344 |
+
color: #245269;
|
1345 |
+
}
|
1346 |
+
.text-warning {
|
1347 |
+
color: #8a6d3b;
|
1348 |
+
}
|
1349 |
+
a.text-warning:hover,
|
1350 |
+
a.text-warning:focus {
|
1351 |
+
color: #66512c;
|
1352 |
+
}
|
1353 |
+
.text-danger {
|
1354 |
+
color: #a94442;
|
1355 |
+
}
|
1356 |
+
a.text-danger:hover,
|
1357 |
+
a.text-danger:focus {
|
1358 |
+
color: #843534;
|
1359 |
+
}
|
1360 |
+
.bg-primary {
|
1361 |
+
color: #fff;
|
1362 |
+
background-color: #337ab7;
|
1363 |
+
}
|
1364 |
+
a.bg-primary:hover,
|
1365 |
+
a.bg-primary:focus {
|
1366 |
+
background-color: #286090;
|
1367 |
+
}
|
1368 |
+
.bg-success {
|
1369 |
+
background-color: #dff0d8;
|
1370 |
+
}
|
1371 |
+
a.bg-success:hover,
|
1372 |
+
a.bg-success:focus {
|
1373 |
+
background-color: #c1e2b3;
|
1374 |
+
}
|
1375 |
+
.bg-info {
|
1376 |
+
background-color: #d9edf7;
|
1377 |
+
}
|
1378 |
+
a.bg-info:hover,
|
1379 |
+
a.bg-info:focus {
|
1380 |
+
background-color: #afd9ee;
|
1381 |
+
}
|
1382 |
+
.bg-warning {
|
1383 |
+
background-color: #fcf8e3;
|
1384 |
+
}
|
1385 |
+
a.bg-warning:hover,
|
1386 |
+
a.bg-warning:focus {
|
1387 |
+
background-color: #f7ecb5;
|
1388 |
+
}
|
1389 |
+
.bg-danger {
|
1390 |
+
background-color: #f2dede;
|
1391 |
+
}
|
1392 |
+
a.bg-danger:hover,
|
1393 |
+
a.bg-danger:focus {
|
1394 |
+
background-color: #e4b9b9;
|
1395 |
+
}
|
1396 |
+
.page-header {
|
1397 |
+
padding-bottom: 9px;
|
1398 |
+
margin: 40px 0 20px;
|
1399 |
+
border-bottom: 1px solid #eee;
|
1400 |
+
}
|
1401 |
+
ul,
|
1402 |
+
ol {
|
1403 |
+
margin-top: 0;
|
1404 |
+
margin-bottom: 10px;
|
1405 |
+
}
|
1406 |
+
ul ul,
|
1407 |
+
ol ul,
|
1408 |
+
ul ol,
|
1409 |
+
ol ol {
|
1410 |
+
margin-bottom: 0;
|
1411 |
+
}
|
1412 |
+
.list-unstyled {
|
1413 |
+
padding-left: 0;
|
1414 |
+
list-style: none;
|
1415 |
+
}
|
1416 |
+
.list-inline {
|
1417 |
+
padding-left: 0;
|
1418 |
+
margin-left: -5px;
|
1419 |
+
list-style: none;
|
1420 |
+
}
|
1421 |
+
.list-inline > li {
|
1422 |
+
display: inline-block;
|
1423 |
+
padding-right: 5px;
|
1424 |
+
padding-left: 5px;
|
1425 |
+
}
|
1426 |
+
dl {
|
1427 |
+
margin-top: 0;
|
1428 |
+
margin-bottom: 20px;
|
1429 |
+
}
|
1430 |
+
dt,
|
1431 |
+
dd {
|
1432 |
+
line-height: 1.42857143;
|
1433 |
+
}
|
1434 |
+
dt {
|
1435 |
+
font-weight: bold;
|
1436 |
+
}
|
1437 |
+
dd {
|
1438 |
+
margin-left: 0;
|
1439 |
+
}
|
1440 |
+
@media (min-width: 768px) {
|
1441 |
+
.dl-horizontal dt {
|
1442 |
+
float: left;
|
1443 |
+
width: 160px;
|
1444 |
+
overflow: hidden;
|
1445 |
+
clear: left;
|
1446 |
+
text-align: right;
|
1447 |
+
text-overflow: ellipsis;
|
1448 |
+
white-space: nowrap;
|
1449 |
+
}
|
1450 |
+
.dl-horizontal dd {
|
1451 |
+
margin-left: 180px;
|
1452 |
+
}
|
1453 |
+
}
|
1454 |
+
abbr[title],
|
1455 |
+
abbr[data-original-title] {
|
1456 |
+
cursor: help;
|
1457 |
+
border-bottom: 1px dotted #777;
|
1458 |
+
}
|
1459 |
+
.initialism {
|
1460 |
+
font-size: 90%;
|
1461 |
+
text-transform: uppercase;
|
1462 |
+
}
|
1463 |
+
blockquote {
|
1464 |
+
padding: 10px 20px;
|
1465 |
+
margin: 0 0 20px;
|
1466 |
+
font-size: 17.5px;
|
1467 |
+
border-left: 5px solid #eee;
|
1468 |
+
}
|
1469 |
+
blockquote p:last-child,
|
1470 |
+
blockquote ul:last-child,
|
1471 |
+
blockquote ol:last-child {
|
1472 |
+
margin-bottom: 0;
|
1473 |
+
}
|
1474 |
+
blockquote footer,
|
1475 |
+
blockquote small,
|
1476 |
+
blockquote .small {
|
1477 |
+
display: block;
|
1478 |
+
font-size: 80%;
|
1479 |
+
line-height: 1.42857143;
|
1480 |
+
color: #777;
|
1481 |
+
}
|
1482 |
+
blockquote footer:before,
|
1483 |
+
blockquote small:before,
|
1484 |
+
blockquote .small:before {
|
1485 |
+
content: '\2014 \00A0';
|
1486 |
+
}
|
1487 |
+
.blockquote-reverse,
|
1488 |
+
blockquote.pull-right {
|
1489 |
+
padding-right: 15px;
|
1490 |
+
padding-left: 0;
|
1491 |
+
text-align: right;
|
1492 |
+
border-right: 5px solid #eee;
|
1493 |
+
border-left: 0;
|
1494 |
+
}
|
1495 |
+
.blockquote-reverse footer:before,
|
1496 |
+
blockquote.pull-right footer:before,
|
1497 |
+
.blockquote-reverse small:before,
|
1498 |
+
blockquote.pull-right small:before,
|
1499 |
+
.blockquote-reverse .small:before,
|
1500 |
+
blockquote.pull-right .small:before {
|
1501 |
+
content: '';
|
1502 |
+
}
|
1503 |
+
.blockquote-reverse footer:after,
|
1504 |
+
blockquote.pull-right footer:after,
|
1505 |
+
.blockquote-reverse small:after,
|
1506 |
+
blockquote.pull-right small:after,
|
1507 |
+
.blockquote-reverse .small:after,
|
1508 |
+
blockquote.pull-right .small:after {
|
1509 |
+
content: '\00A0 \2014';
|
1510 |
+
}
|
1511 |
+
address {
|
1512 |
+
margin-bottom: 20px;
|
1513 |
+
font-style: normal;
|
1514 |
+
line-height: 1.42857143;
|
1515 |
+
}
|
1516 |
+
code,
|
1517 |
+
kbd,
|
1518 |
+
pre,
|
1519 |
+
samp {
|
1520 |
+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
1521 |
+
}
|
1522 |
+
code {
|
1523 |
+
padding: 2px 4px;
|
1524 |
+
font-size: 90%;
|
1525 |
+
color: #000;
|
1526 |
+
background-color: #EEEEEE;
|
1527 |
+
border-radius: 4px;
|
1528 |
+
}
|
1529 |
+
kbd {
|
1530 |
+
padding: 2px 4px;
|
1531 |
+
font-size: 90%;
|
1532 |
+
color: #fff;
|
1533 |
+
background-color: #333;
|
1534 |
+
border-radius: 3px;
|
1535 |
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1536 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1537 |
+
}
|
1538 |
+
kbd kbd {
|
1539 |
+
padding: 0;
|
1540 |
+
font-size: 100%;
|
1541 |
+
font-weight: bold;
|
1542 |
+
-webkit-box-shadow: none;
|
1543 |
+
box-shadow: none;
|
1544 |
+
}
|
1545 |
+
pre {
|
1546 |
+
display: block;
|
1547 |
+
padding: 9.5px;
|
1548 |
+
margin: 0 0 10px;
|
1549 |
+
font-size: 13px;
|
1550 |
+
line-height: 1.42857143;
|
1551 |
+
color: #333;
|
1552 |
+
word-break: break-all;
|
1553 |
+
word-wrap: break-word;
|
1554 |
+
background-color: #f5f5f5;
|
1555 |
+
border: 1px solid #ccc;
|
1556 |
+
border-radius: 4px;
|
1557 |
+
}
|
1558 |
+
pre code {
|
1559 |
+
padding: 0;
|
1560 |
+
font-size: inherit;
|
1561 |
+
color: inherit;
|
1562 |
+
white-space: pre-wrap;
|
1563 |
+
background-color: transparent;
|
1564 |
+
border-radius: 0;
|
1565 |
+
}
|
1566 |
+
.pre-scrollable {
|
1567 |
+
max-height: 340px;
|
1568 |
+
overflow-y: scroll;
|
1569 |
+
}
|
1570 |
+
.container {
|
1571 |
+
padding-right: 15px;
|
1572 |
+
padding-left: 15px;
|
1573 |
+
margin-right: auto;
|
1574 |
+
margin-left: auto;
|
1575 |
+
}
|
1576 |
+
@media (min-width: 768px) {
|
1577 |
+
.container {
|
1578 |
+
width: 750px;
|
1579 |
+
}
|
1580 |
+
}
|
1581 |
+
@media (min-width: 992px) {
|
1582 |
+
.container {
|
1583 |
+
width: 970px;
|
1584 |
+
}
|
1585 |
+
}
|
1586 |
+
@media (min-width: 1200px) {
|
1587 |
+
.container {
|
1588 |
+
width: 1170px;
|
1589 |
+
}
|
1590 |
+
}
|
1591 |
+
.container-fluid {
|
1592 |
+
padding-right: 15px;
|
1593 |
+
padding-left: 15px;
|
1594 |
+
margin-right: auto;
|
1595 |
+
margin-left: auto;
|
1596 |
+
}
|
1597 |
+
.row {
|
1598 |
+
margin-right: -15px;
|
1599 |
+
margin-left: -15px;
|
1600 |
+
}
|
1601 |
+
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
1602 |
+
position: relative;
|
1603 |
+
min-height: 1px;
|
1604 |
+
padding-right: 15px;
|
1605 |
+
padding-left: 15px;
|
1606 |
+
}
|
1607 |
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
1608 |
+
float: left;
|
1609 |
+
}
|
1610 |
+
.col-xs-12 {
|
1611 |
+
width: 100%;
|
1612 |
+
}
|
1613 |
+
.col-xs-11 {
|
1614 |
+
width: 91.66666667%;
|
1615 |
+
}
|
1616 |
+
.col-xs-10 {
|
1617 |
+
width: 83.33333333%;
|
1618 |
+
}
|
1619 |
+
.col-xs-9 {
|
1620 |
+
width: 75%;
|
1621 |
+
}
|
1622 |
+
.col-xs-8 {
|
1623 |
+
width: 66.66666667%;
|
1624 |
+
}
|
1625 |
+
.col-xs-7 {
|
1626 |
+
width: 58.33333333%;
|
1627 |
+
}
|
1628 |
+
.col-xs-6 {
|
1629 |
+
width: 50%;
|
1630 |
+
}
|
1631 |
+
.col-xs-5 {
|
1632 |
+
width: 41.66666667%;
|
1633 |
+
}
|
1634 |
+
.col-xs-4 {
|
1635 |
+
width: 33.33333333%;
|
1636 |
+
}
|
1637 |
+
.col-xs-3 {
|
1638 |
+
width: 25%;
|
1639 |
+
}
|
1640 |
+
.col-xs-2 {
|
1641 |
+
width: 16.66666667%;
|
1642 |
+
}
|
1643 |
+
.col-xs-1 {
|
1644 |
+
width: 8.33333333%;
|
1645 |
+
}
|
1646 |
+
.col-xs-pull-12 {
|
1647 |
+
right: 100%;
|
1648 |
+
}
|
1649 |
+
.col-xs-pull-11 {
|
1650 |
+
right: 91.66666667%;
|
1651 |
+
}
|
1652 |
+
.col-xs-pull-10 {
|
1653 |
+
right: 83.33333333%;
|
1654 |
+
}
|
1655 |
+
.col-xs-pull-9 {
|
1656 |
+
right: 75%;
|
1657 |
+
}
|
1658 |
+
.col-xs-pull-8 {
|
1659 |
+
right: 66.66666667%;
|
1660 |
+
}
|
1661 |
+
.col-xs-pull-7 {
|
1662 |
+
right: 58.33333333%;
|
1663 |
+
}
|
1664 |
+
.col-xs-pull-6 {
|
1665 |
+
right: 50%;
|
1666 |
+
}
|
1667 |
+
.col-xs-pull-5 {
|
1668 |
+
right: 41.66666667%;
|
1669 |
+
}
|
1670 |
+
.col-xs-pull-4 {
|
1671 |
+
right: 33.33333333%;
|
1672 |
+
}
|
1673 |
+
.col-xs-pull-3 {
|
1674 |
+
right: 25%;
|
1675 |
+
}
|
1676 |
+
.col-xs-pull-2 {
|
1677 |
+
right: 16.66666667%;
|
1678 |
+
}
|
1679 |
+
.col-xs-pull-1 {
|
1680 |
+
right: 8.33333333%;
|
1681 |
+
}
|
1682 |
+
.col-xs-pull-0 {
|
1683 |
+
right: auto;
|
1684 |
+
}
|
1685 |
+
.col-xs-push-12 {
|
1686 |
+
left: 100%;
|
1687 |
+
}
|
1688 |
+
.col-xs-push-11 {
|
1689 |
+
left: 91.66666667%;
|
1690 |
+
}
|
1691 |
+
.col-xs-push-10 {
|
1692 |
+
left: 83.33333333%;
|
1693 |
+
}
|
1694 |
+
.col-xs-push-9 {
|
1695 |
+
left: 75%;
|
1696 |
+
}
|
1697 |
+
.col-xs-push-8 {
|
1698 |
+
left: 66.66666667%;
|
1699 |
+
}
|
1700 |
+
.col-xs-push-7 {
|
1701 |
+
left: 58.33333333%;
|
1702 |
+
}
|
1703 |
+
.col-xs-push-6 {
|
1704 |
+
left: 50%;
|
1705 |
+
}
|
1706 |
+
.col-xs-push-5 {
|
1707 |
+
left: 41.66666667%;
|
1708 |
+
}
|
1709 |
+
.col-xs-push-4 {
|
1710 |
+
left: 33.33333333%;
|
1711 |
+
}
|
1712 |
+
.col-xs-push-3 {
|
1713 |
+
left: 25%;
|
1714 |
+
}
|
1715 |
+
.col-xs-push-2 {
|
1716 |
+
left: 16.66666667%;
|
1717 |
+
}
|
1718 |
+
.col-xs-push-1 {
|
1719 |
+
left: 8.33333333%;
|
1720 |
+
}
|
1721 |
+
.col-xs-push-0 {
|
1722 |
+
left: auto;
|
1723 |
+
}
|
1724 |
+
.col-xs-offset-12 {
|
1725 |
+
margin-left: 100%;
|
1726 |
+
}
|
1727 |
+
.col-xs-offset-11 {
|
1728 |
+
margin-left: 91.66666667%;
|
1729 |
+
}
|
1730 |
+
.col-xs-offset-10 {
|
1731 |
+
margin-left: 83.33333333%;
|
1732 |
+
}
|
1733 |
+
.col-xs-offset-9 {
|
1734 |
+
margin-left: 75%;
|
1735 |
+
}
|
1736 |
+
.col-xs-offset-8 {
|
1737 |
+
margin-left: 66.66666667%;
|
1738 |
+
}
|
1739 |
+
.col-xs-offset-7 {
|
1740 |
+
margin-left: 58.33333333%;
|
1741 |
+
}
|
1742 |
+
.col-xs-offset-6 {
|
1743 |
+
margin-left: 50%;
|
1744 |
+
}
|
1745 |
+
.col-xs-offset-5 {
|
1746 |
+
margin-left: 41.66666667%;
|
1747 |
+
}
|
1748 |
+
.col-xs-offset-4 {
|
1749 |
+
margin-left: 33.33333333%;
|
1750 |
+
}
|
1751 |
+
.col-xs-offset-3 {
|
1752 |
+
margin-left: 25%;
|
1753 |
+
}
|
1754 |
+
.col-xs-offset-2 {
|
1755 |
+
margin-left: 16.66666667%;
|
1756 |
+
}
|
1757 |
+
.col-xs-offset-1 {
|
1758 |
+
margin-left: 8.33333333%;
|
1759 |
+
}
|
1760 |
+
.col-xs-offset-0 {
|
1761 |
+
margin-left: 0;
|
1762 |
+
}
|
1763 |
+
@media (min-width: 768px) {
|
1764 |
+
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
1765 |
+
float: left;
|
1766 |
+
}
|
1767 |
+
.col-sm-12 {
|
1768 |
+
width: 100%;
|
1769 |
+
}
|
1770 |
+
.col-sm-11 {
|
1771 |
+
width: 91.66666667%;
|
1772 |
+
}
|
1773 |
+
.col-sm-10 {
|
1774 |
+
width: 83.33333333%;
|
1775 |
+
}
|
1776 |
+
.col-sm-9 {
|
1777 |
+
width: 75%;
|
1778 |
+
}
|
1779 |
+
.col-sm-8 {
|
1780 |
+
width: 66.66666667%;
|
1781 |
+
}
|
1782 |
+
.col-sm-7 {
|
1783 |
+
width: 58.33333333%;
|
1784 |
+
}
|
1785 |
+
.col-sm-6 {
|
1786 |
+
width: 50%;
|
1787 |
+
}
|
1788 |
+
.col-sm-5 {
|
1789 |
+
width: 41.66666667%;
|
1790 |
+
}
|
1791 |
+
.col-sm-4 {
|
1792 |
+
width: 33.33333333%;
|
1793 |
+
}
|
1794 |
+
.col-sm-3 {
|
1795 |
+
width: 25%;
|
1796 |
+
}
|
1797 |
+
.col-sm-2 {
|
1798 |
+
width: 16.66666667%;
|
1799 |
+
}
|
1800 |
+
.col-sm-1 {
|
1801 |
+
width: 8.33333333%;
|
1802 |
+
}
|
1803 |
+
.col-sm-pull-12 {
|
1804 |
+
right: 100%;
|
1805 |
+
}
|
1806 |
+
.col-sm-pull-11 {
|
1807 |
+
right: 91.66666667%;
|
1808 |
+
}
|
1809 |
+
.col-sm-pull-10 {
|
1810 |
+
right: 83.33333333%;
|
1811 |
+
}
|
1812 |
+
.col-sm-pull-9 {
|
1813 |
+
right: 75%;
|
1814 |
+
}
|
1815 |
+
.col-sm-pull-8 {
|
1816 |
+
right: 66.66666667%;
|
1817 |
+
}
|
1818 |
+
.col-sm-pull-7 {
|
1819 |
+
right: 58.33333333%;
|
1820 |
+
}
|
1821 |
+
.col-sm-pull-6 {
|
1822 |
+
right: 50%;
|
1823 |
+
}
|
1824 |
+
.col-sm-pull-5 {
|
1825 |
+
right: 41.66666667%;
|
1826 |
+
}
|
1827 |
+
.col-sm-pull-4 {
|
1828 |
+
right: 33.33333333%;
|
1829 |
+
}
|
1830 |
+
.col-sm-pull-3 {
|
1831 |
+
right: 25%;
|
1832 |
+
}
|
1833 |
+
.col-sm-pull-2 {
|
1834 |
+
right: 16.66666667%;
|
1835 |
+
}
|
1836 |
+
.col-sm-pull-1 {
|
1837 |
+
right: 8.33333333%;
|
1838 |
+
}
|
1839 |
+
.col-sm-pull-0 {
|
1840 |
+
right: auto;
|
1841 |
+
}
|
1842 |
+
.col-sm-push-12 {
|
1843 |
+
left: 100%;
|
1844 |
+
}
|
1845 |
+
.col-sm-push-11 {
|
1846 |
+
left: 91.66666667%;
|
1847 |
+
}
|
1848 |
+
.col-sm-push-10 {
|
1849 |
+
left: 83.33333333%;
|
1850 |
+
}
|
1851 |
+
.col-sm-push-9 {
|
1852 |
+
left: 75%;
|
1853 |
+
}
|
1854 |
+
.col-sm-push-8 {
|
1855 |
+
left: 66.66666667%;
|
1856 |
+
}
|
1857 |
+
.col-sm-push-7 {
|
1858 |
+
left: 58.33333333%;
|
1859 |
+
}
|
1860 |
+
.col-sm-push-6 {
|
1861 |
+
left: 50%;
|
1862 |
+
}
|
1863 |
+
.col-sm-push-5 {
|
1864 |
+
left: 41.66666667%;
|
1865 |
+
}
|
1866 |
+
.col-sm-push-4 {
|
1867 |
+
left: 33.33333333%;
|
1868 |
+
}
|
1869 |
+
.col-sm-push-3 {
|
1870 |
+
left: 25%;
|
1871 |
+
}
|
1872 |
+
.col-sm-push-2 {
|
1873 |
+
left: 16.66666667%;
|
1874 |
+
}
|
1875 |
+
.col-sm-push-1 {
|
1876 |
+
left: 8.33333333%;
|
1877 |
+
}
|
1878 |
+
.col-sm-push-0 {
|
1879 |
+
left: auto;
|
1880 |
+
}
|
1881 |
+
.col-sm-offset-12 {
|
1882 |
+
margin-left: 100%;
|
1883 |
+
}
|
1884 |
+
.col-sm-offset-11 {
|
1885 |
+
margin-left: 91.66666667%;
|
1886 |
+
}
|
1887 |
+
.col-sm-offset-10 {
|
1888 |
+
margin-left: 83.33333333%;
|
1889 |
+
}
|
1890 |
+
.col-sm-offset-9 {
|
1891 |
+
margin-left: 75%;
|
1892 |
+
}
|
1893 |
+
.col-sm-offset-8 {
|
1894 |
+
margin-left: 66.66666667%;
|
1895 |
+
}
|
1896 |
+
.col-sm-offset-7 {
|
1897 |
+
margin-left: 58.33333333%;
|
1898 |
+
}
|
1899 |
+
.col-sm-offset-6 {
|
1900 |
+
margin-left: 50%;
|
1901 |
+
}
|
1902 |
+
.col-sm-offset-5 {
|
1903 |
+
margin-left: 41.66666667%;
|
1904 |
+
}
|
1905 |
+
.col-sm-offset-4 {
|
1906 |
+
margin-left: 33.33333333%;
|
1907 |
+
}
|
1908 |
+
.col-sm-offset-3 {
|
1909 |
+
margin-left: 25%;
|
1910 |
+
}
|
1911 |
+
.col-sm-offset-2 {
|
1912 |
+
margin-left: 16.66666667%;
|
1913 |
+
}
|
1914 |
+
.col-sm-offset-1 {
|
1915 |
+
margin-left: 8.33333333%;
|
1916 |
+
}
|
1917 |
+
.col-sm-offset-0 {
|
1918 |
+
margin-left: 0;
|
1919 |
+
}
|
1920 |
+
}
|
1921 |
+
@media (min-width: 992px) {
|
1922 |
+
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
1923 |
+
float: left;
|
1924 |
+
}
|
1925 |
+
.col-md-12 {
|
1926 |
+
width: 100%;
|
1927 |
+
}
|
1928 |
+
.col-md-11 {
|
1929 |
+
width: 91.66666667%;
|
1930 |
+
}
|
1931 |
+
.col-md-10 {
|
1932 |
+
width: 83.33333333%;
|
1933 |
+
}
|
1934 |
+
.col-md-9 {
|
1935 |
+
width: 75%;
|
1936 |
+
}
|
1937 |
+
.col-md-8 {
|
1938 |
+
width: 66.66666667%;
|
1939 |
+
}
|
1940 |
+
.col-md-7 {
|
1941 |
+
width: 58.33333333%;
|
1942 |
+
}
|
1943 |
+
.col-md-6 {
|
1944 |
+
width: 50%;
|
1945 |
+
}
|
1946 |
+
.col-md-5 {
|
1947 |
+
width: 41.66666667%;
|
1948 |
+
}
|
1949 |
+
.col-md-4 {
|
1950 |
+
width: 33.33333333%;
|
1951 |
+
}
|
1952 |
+
.col-md-3 {
|
1953 |
+
width: 25%;
|
1954 |
+
}
|
1955 |
+
.col-md-2 {
|
1956 |
+
width: 16.66666667%;
|
1957 |
+
}
|
1958 |
+
.col-md-1 {
|
1959 |
+
width: 8.33333333%;
|
1960 |
+
}
|
1961 |
+
.col-md-pull-12 {
|
1962 |
+
right: 100%;
|
1963 |
+
}
|
1964 |
+
.col-md-pull-11 {
|
1965 |
+
right: 91.66666667%;
|
1966 |
+
}
|
1967 |
+
.col-md-pull-10 {
|
1968 |
+
right: 83.33333333%;
|
1969 |
+
}
|
1970 |
+
.col-md-pull-9 {
|
1971 |
+
right: 75%;
|
1972 |
+
}
|
1973 |
+
.col-md-pull-8 {
|
1974 |
+
right: 66.66666667%;
|
1975 |
+
}
|
1976 |
+
.col-md-pull-7 {
|
1977 |
+
right: 58.33333333%;
|
1978 |
+
}
|
1979 |
+
.col-md-pull-6 {
|
1980 |
+
right: 50%;
|
1981 |
+
}
|
1982 |
+
.col-md-pull-5 {
|
1983 |
+
right: 41.66666667%;
|
1984 |
+
}
|
1985 |
+
.col-md-pull-4 {
|
1986 |
+
right: 33.33333333%;
|
1987 |
+
}
|
1988 |
+
.col-md-pull-3 {
|
1989 |
+
right: 25%;
|
1990 |
+
}
|
1991 |
+
.col-md-pull-2 {
|
1992 |
+
right: 16.66666667%;
|
1993 |
+
}
|
1994 |
+
.col-md-pull-1 {
|
1995 |
+
right: 8.33333333%;
|
1996 |
+
}
|
1997 |
+
.col-md-pull-0 {
|
1998 |
+
right: auto;
|
1999 |
+
}
|
2000 |
+
.col-md-push-12 {
|
2001 |
+
left: 100%;
|
2002 |
+
}
|
2003 |
+
.col-md-push-11 {
|
2004 |
+
left: 91.66666667%;
|
2005 |
+
}
|
2006 |
+
.col-md-push-10 {
|
2007 |
+
left: 83.33333333%;
|
2008 |
+
}
|
2009 |
+
.col-md-push-9 {
|
2010 |
+
left: 75%;
|
2011 |
+
}
|
2012 |
+
.col-md-push-8 {
|
2013 |
+
left: 66.66666667%;
|
2014 |
+
}
|
2015 |
+
.col-md-push-7 {
|
2016 |
+
left: 58.33333333%;
|
2017 |
+
}
|
2018 |
+
.col-md-push-6 {
|
2019 |
+
left: 50%;
|
2020 |
+
}
|
2021 |
+
.col-md-push-5 {
|
2022 |
+
left: 41.66666667%;
|
2023 |
+
}
|
2024 |
+
.col-md-push-4 {
|
2025 |
+
left: 33.33333333%;
|
2026 |
+
}
|
2027 |
+
.col-md-push-3 {
|
2028 |
+
left: 25%;
|
2029 |
+
}
|
2030 |
+
.col-md-push-2 {
|
2031 |
+
left: 16.66666667%;
|
2032 |
+
}
|
2033 |
+
.col-md-push-1 {
|
2034 |
+
left: 8.33333333%;
|
2035 |
+
}
|
2036 |
+
.col-md-push-0 {
|
2037 |
+
left: auto;
|
2038 |
+
}
|
2039 |
+
.col-md-offset-12 {
|
2040 |
+
margin-left: 100%;
|
2041 |
+
}
|
2042 |
+
.col-md-offset-11 {
|
2043 |
+
margin-left: 91.66666667%;
|
2044 |
+
}
|
2045 |
+
.col-md-offset-10 {
|
2046 |
+
margin-left: 83.33333333%;
|
2047 |
+
}
|
2048 |
+
.col-md-offset-9 {
|
2049 |
+
margin-left: 75%;
|
2050 |
+
}
|
2051 |
+
.col-md-offset-8 {
|
2052 |
+
margin-left: 66.66666667%;
|
2053 |
+
}
|
2054 |
+
.col-md-offset-7 {
|
2055 |
+
margin-left: 58.33333333%;
|
2056 |
+
}
|
2057 |
+
.col-md-offset-6 {
|
2058 |
+
margin-left: 50%;
|
2059 |
+
}
|
2060 |
+
.col-md-offset-5 {
|
2061 |
+
margin-left: 41.66666667%;
|
2062 |
+
}
|
2063 |
+
.col-md-offset-4 {
|
2064 |
+
margin-left: 33.33333333%;
|
2065 |
+
}
|
2066 |
+
.col-md-offset-3 {
|
2067 |
+
margin-left: 25%;
|
2068 |
+
}
|
2069 |
+
.col-md-offset-2 {
|
2070 |
+
margin-left: 16.66666667%;
|
2071 |
+
}
|
2072 |
+
.col-md-offset-1 {
|
2073 |
+
margin-left: 8.33333333%;
|
2074 |
+
}
|
2075 |
+
.col-md-offset-0 {
|
2076 |
+
margin-left: 0;
|
2077 |
+
}
|
2078 |
+
}
|
2079 |
+
@media (min-width: 1200px) {
|
2080 |
+
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
2081 |
+
float: left;
|
2082 |
+
}
|
2083 |
+
.col-lg-12 {
|
2084 |
+
width: 100%;
|
2085 |
+
}
|
2086 |
+
.col-lg-11 {
|
2087 |
+
width: 91.66666667%;
|
2088 |
+
}
|
2089 |
+
.col-lg-10 {
|
2090 |
+
width: 83.33333333%;
|
2091 |
+
}
|
2092 |
+
.col-lg-9 {
|
2093 |
+
width: 75%;
|
2094 |
+
}
|
2095 |
+
.col-lg-8 {
|
2096 |
+
width: 66.66666667%;
|
2097 |
+
}
|
2098 |
+
.col-lg-7 {
|
2099 |
+
width: 58.33333333%;
|
2100 |
+
}
|
2101 |
+
.col-lg-6 {
|
2102 |
+
width: 50%;
|
2103 |
+
}
|
2104 |
+
.col-lg-5 {
|
2105 |
+
width: 41.66666667%;
|
2106 |
+
}
|
2107 |
+
.col-lg-4 {
|
2108 |
+
width: 33.33333333%;
|
2109 |
+
}
|
2110 |
+
.col-lg-3 {
|
2111 |
+
width: 25%;
|
2112 |
+
}
|
2113 |
+
.col-lg-2 {
|
2114 |
+
width: 16.66666667%;
|
2115 |
+
}
|
2116 |
+
.col-lg-1 {
|
2117 |
+
width: 8.33333333%;
|
2118 |
+
}
|
2119 |
+
.col-lg-pull-12 {
|
2120 |
+
right: 100%;
|
2121 |
+
}
|
2122 |
+
.col-lg-pull-11 {
|
2123 |
+
right: 91.66666667%;
|
2124 |
+
}
|
2125 |
+
.col-lg-pull-10 {
|
2126 |
+
right: 83.33333333%;
|
2127 |
+
}
|
2128 |
+
.col-lg-pull-9 {
|
2129 |
+
right: 75%;
|
2130 |
+
}
|
2131 |
+
.col-lg-pull-8 {
|
2132 |
+
right: 66.66666667%;
|
2133 |
+
}
|
2134 |
+
.col-lg-pull-7 {
|
2135 |
+
right: 58.33333333%;
|
2136 |
+
}
|
2137 |
+
.col-lg-pull-6 {
|
2138 |
+
right: 50%;
|
2139 |
+
}
|
2140 |
+
.col-lg-pull-5 {
|
2141 |
+
right: 41.66666667%;
|
2142 |
+
}
|
2143 |
+
.col-lg-pull-4 {
|
2144 |
+
right: 33.33333333%;
|
2145 |
+
}
|
2146 |
+
.col-lg-pull-3 {
|
2147 |
+
right: 25%;
|
2148 |
+
}
|
2149 |
+
.col-lg-pull-2 {
|
2150 |
+
right: 16.66666667%;
|
2151 |
+
}
|
2152 |
+
.col-lg-pull-1 {
|
2153 |
+
right: 8.33333333%;
|
2154 |
+
}
|
2155 |
+
.col-lg-pull-0 {
|
2156 |
+
right: auto;
|
2157 |
+
}
|
2158 |
+
.col-lg-push-12 {
|
2159 |
+
left: 100%;
|
2160 |
+
}
|
2161 |
+
.col-lg-push-11 {
|
2162 |
+
left: 91.66666667%;
|
2163 |
+
}
|
2164 |
+
.col-lg-push-10 {
|
2165 |
+
left: 83.33333333%;
|
2166 |
+
}
|
2167 |
+
.col-lg-push-9 {
|
2168 |
+
left: 75%;
|
2169 |
+
}
|
2170 |
+
.col-lg-push-8 {
|
2171 |
+
left: 66.66666667%;
|
2172 |
+
}
|
2173 |
+
.col-lg-push-7 {
|
2174 |
+
left: 58.33333333%;
|
2175 |
+
}
|
2176 |
+
.col-lg-push-6 {
|
2177 |
+
left: 50%;
|
2178 |
+
}
|
2179 |
+
.col-lg-push-5 {
|
2180 |
+
left: 41.66666667%;
|
2181 |
+
}
|
2182 |
+
.col-lg-push-4 {
|
2183 |
+
left: 33.33333333%;
|
2184 |
+
}
|
2185 |
+
.col-lg-push-3 {
|
2186 |
+
left: 25%;
|
2187 |
+
}
|
2188 |
+
.col-lg-push-2 {
|
2189 |
+
left: 16.66666667%;
|
2190 |
+
}
|
2191 |
+
.col-lg-push-1 {
|
2192 |
+
left: 8.33333333%;
|
2193 |
+
}
|
2194 |
+
.col-lg-push-0 {
|
2195 |
+
left: auto;
|
2196 |
+
}
|
2197 |
+
.col-lg-offset-12 {
|
2198 |
+
margin-left: 100%;
|
2199 |
+
}
|
2200 |
+
.col-lg-offset-11 {
|
2201 |
+
margin-left: 91.66666667%;
|
2202 |
+
}
|
2203 |
+
.col-lg-offset-10 {
|
2204 |
+
margin-left: 83.33333333%;
|
2205 |
+
}
|
2206 |
+
.col-lg-offset-9 {
|
2207 |
+
margin-left: 75%;
|
2208 |
+
}
|
2209 |
+
.col-lg-offset-8 {
|
2210 |
+
margin-left: 66.66666667%;
|
2211 |
+
}
|
2212 |
+
.col-lg-offset-7 {
|
2213 |
+
margin-left: 58.33333333%;
|
2214 |
+
}
|
2215 |
+
.col-lg-offset-6 {
|
2216 |
+
margin-left: 50%;
|
2217 |
+
}
|
2218 |
+
.col-lg-offset-5 {
|
2219 |
+
margin-left: 41.66666667%;
|
2220 |
+
}
|
2221 |
+
.col-lg-offset-4 {
|
2222 |
+
margin-left: 33.33333333%;
|
2223 |
+
}
|
2224 |
+
.col-lg-offset-3 {
|
2225 |
+
margin-left: 25%;
|
2226 |
+
}
|
2227 |
+
.col-lg-offset-2 {
|
2228 |
+
margin-left: 16.66666667%;
|
2229 |
+
}
|
2230 |
+
.col-lg-offset-1 {
|
2231 |
+
margin-left: 8.33333333%;
|
2232 |
+
}
|
2233 |
+
.col-lg-offset-0 {
|
2234 |
+
margin-left: 0;
|
2235 |
+
}
|
2236 |
+
}
|
2237 |
+
table {
|
2238 |
+
background-color: transparent;
|
2239 |
+
}
|
2240 |
+
caption {
|
2241 |
+
padding-top: 8px;
|
2242 |
+
padding-bottom: 8px;
|
2243 |
+
color: #777;
|
2244 |
+
text-align: left;
|
2245 |
+
}
|
2246 |
+
th {
|
2247 |
+
text-align: left;
|
2248 |
+
}
|
2249 |
+
.table {
|
2250 |
+
width: 100%;
|
2251 |
+
max-width: 100%;
|
2252 |
+
margin-bottom: 20px;
|
2253 |
+
}
|
2254 |
+
.table > thead > tr > th,
|
2255 |
+
.table > tbody > tr > th,
|
2256 |
+
.table > tfoot > tr > th,
|
2257 |
+
.table > thead > tr > td,
|
2258 |
+
.table > tbody > tr > td,
|
2259 |
+
.table > tfoot > tr > td {
|
2260 |
+
padding: 8px;
|
2261 |
+
line-height: 1.42857143;
|
2262 |
+
vertical-align: top;
|
2263 |
+
border-top: 1px solid #ddd;
|
2264 |
+
}
|
2265 |
+
.table > thead > tr > th {
|
2266 |
+
vertical-align: bottom;
|
2267 |
+
border-bottom: 2px solid #ddd;
|
2268 |
+
}
|
2269 |
+
.table > caption + thead > tr:first-child > th,
|
2270 |
+
.table > colgroup + thead > tr:first-child > th,
|
2271 |
+
.table > thead:first-child > tr:first-child > th,
|
2272 |
+
.table > caption + thead > tr:first-child > td,
|
2273 |
+
.table > colgroup + thead > tr:first-child > td,
|
2274 |
+
.table > thead:first-child > tr:first-child > td {
|
2275 |
+
border-top: 0;
|
2276 |
+
}
|
2277 |
+
.table > tbody + tbody {
|
2278 |
+
border-top: 2px solid #ddd;
|
2279 |
+
}
|
2280 |
+
.table .table {
|
2281 |
+
background-color: #fff;
|
2282 |
+
}
|
2283 |
+
.table-condensed > thead > tr > th,
|
2284 |
+
.table-condensed > tbody > tr > th,
|
2285 |
+
.table-condensed > tfoot > tr > th,
|
2286 |
+
.table-condensed > thead > tr > td,
|
2287 |
+
.table-condensed > tbody > tr > td,
|
2288 |
+
.table-condensed > tfoot > tr > td {
|
2289 |
+
padding: 5px;
|
2290 |
+
}
|
2291 |
+
.table-bordered {
|
2292 |
+
border: 1px solid #ddd;
|
2293 |
+
}
|
2294 |
+
.table-bordered > thead > tr > th,
|
2295 |
+
.table-bordered > tbody > tr > th,
|
2296 |
+
.table-bordered > tfoot > tr > th,
|
2297 |
+
.table-bordered > thead > tr > td,
|
2298 |
+
.table-bordered > tbody > tr > td,
|
2299 |
+
.table-bordered > tfoot > tr > td {
|
2300 |
+
border: 1px solid #ddd;
|
2301 |
+
}
|
2302 |
+
.table-bordered > thead > tr > th,
|
2303 |
+
.table-bordered > thead > tr > td {
|
2304 |
+
border-bottom-width: 2px;
|
2305 |
+
}
|
2306 |
+
.table-striped > tbody > tr:nth-of-type(odd) {
|
2307 |
+
background-color: #f9f9f9;
|
2308 |
+
}
|
2309 |
+
.table-hover > tbody > tr:hover {
|
2310 |
+
background-color: #f5f5f5;
|
2311 |
+
}
|
2312 |
+
table col[class*="col-"] {
|
2313 |
+
position: static;
|
2314 |
+
display: table-column;
|
2315 |
+
float: none;
|
2316 |
+
}
|
2317 |
+
table td[class*="col-"],
|
2318 |
+
table th[class*="col-"] {
|
2319 |
+
position: static;
|
2320 |
+
display: table-cell;
|
2321 |
+
float: none;
|
2322 |
+
}
|
2323 |
+
.table > thead > tr > td.active,
|
2324 |
+
.table > tbody > tr > td.active,
|
2325 |
+
.table > tfoot > tr > td.active,
|
2326 |
+
.table > thead > tr > th.active,
|
2327 |
+
.table > tbody > tr > th.active,
|
2328 |
+
.table > tfoot > tr > th.active,
|
2329 |
+
.table > thead > tr.active > td,
|
2330 |
+
.table > tbody > tr.active > td,
|
2331 |
+
.table > tfoot > tr.active > td,
|
2332 |
+
.table > thead > tr.active > th,
|
2333 |
+
.table > tbody > tr.active > th,
|
2334 |
+
.table > tfoot > tr.active > th {
|
2335 |
+
background-color: #f5f5f5;
|
2336 |
+
}
|
2337 |
+
.table-hover > tbody > tr > td.active:hover,
|
2338 |
+
.table-hover > tbody > tr > th.active:hover,
|
2339 |
+
.table-hover > tbody > tr.active:hover > td,
|
2340 |
+
.table-hover > tbody > tr:hover > .active,
|
2341 |
+
.table-hover > tbody > tr.active:hover > th {
|
2342 |
+
background-color: #e8e8e8;
|
2343 |
+
}
|
2344 |
+
.table > thead > tr > td.success,
|
2345 |
+
.table > tbody > tr > td.success,
|
2346 |
+
.table > tfoot > tr > td.success,
|
2347 |
+
.table > thead > tr > th.success,
|
2348 |
+
.table > tbody > tr > th.success,
|
2349 |
+
.table > tfoot > tr > th.success,
|
2350 |
+
.table > thead > tr.success > td,
|
2351 |
+
.table > tbody > tr.success > td,
|
2352 |
+
.table > tfoot > tr.success > td,
|
2353 |
+
.table > thead > tr.success > th,
|
2354 |
+
.table > tbody > tr.success > th,
|
2355 |
+
.table > tfoot > tr.success > th {
|
2356 |
+
background-color: #dff0d8;
|
2357 |
+
}
|
2358 |
+
.table-hover > tbody > tr > td.success:hover,
|
2359 |
+
.table-hover > tbody > tr > th.success:hover,
|
2360 |
+
.table-hover > tbody > tr.success:hover > td,
|
2361 |
+
.table-hover > tbody > tr:hover > .success,
|
2362 |
+
.table-hover > tbody > tr.success:hover > th {
|
2363 |
+
background-color: #d0e9c6;
|
2364 |
+
}
|
2365 |
+
.table > thead > tr > td.info,
|
2366 |
+
.table > tbody > tr > td.info,
|
2367 |
+
.table > tfoot > tr > td.info,
|
2368 |
+
.table > thead > tr > th.info,
|
2369 |
+
.table > tbody > tr > th.info,
|
2370 |
+
.table > tfoot > tr > th.info,
|
2371 |
+
.table > thead > tr.info > td,
|
2372 |
+
.table > tbody > tr.info > td,
|
2373 |
+
.table > tfoot > tr.info > td,
|
2374 |
+
.table > thead > tr.info > th,
|
2375 |
+
.table > tbody > tr.info > th,
|
2376 |
+
.table > tfoot > tr.info > th {
|
2377 |
+
background-color: #d9edf7;
|
2378 |
+
}
|
2379 |
+
.table-hover > tbody > tr > td.info:hover,
|
2380 |
+
.table-hover > tbody > tr > th.info:hover,
|
2381 |
+
.table-hover > tbody > tr.info:hover > td,
|
2382 |
+
.table-hover > tbody > tr:hover > .info,
|
2383 |
+
.table-hover > tbody > tr.info:hover > th {
|
2384 |
+
background-color: #c4e3f3;
|
2385 |
+
}
|
2386 |
+
.table > thead > tr > td.warning,
|
2387 |
+
.table > tbody > tr > td.warning,
|
2388 |
+
.table > tfoot > tr > td.warning,
|
2389 |
+
.table > thead > tr > th.warning,
|
2390 |
+
.table > tbody > tr > th.warning,
|
2391 |
+
.table > tfoot > tr > th.warning,
|
2392 |
+
.table > thead > tr.warning > td,
|
2393 |
+
.table > tbody > tr.warning > td,
|
2394 |
+
.table > tfoot > tr.warning > td,
|
2395 |
+
.table > thead > tr.warning > th,
|
2396 |
+
.table > tbody > tr.warning > th,
|
2397 |
+
.table > tfoot > tr.warning > th {
|
2398 |
+
background-color: #fcf8e3;
|
2399 |
+
}
|
2400 |
+
.table-hover > tbody > tr > td.warning:hover,
|
2401 |
+
.table-hover > tbody > tr > th.warning:hover,
|
2402 |
+
.table-hover > tbody > tr.warning:hover > td,
|
2403 |
+
.table-hover > tbody > tr:hover > .warning,
|
2404 |
+
.table-hover > tbody > tr.warning:hover > th {
|
2405 |
+
background-color: #faf2cc;
|
2406 |
+
}
|
2407 |
+
.table > thead > tr > td.danger,
|
2408 |
+
.table > tbody > tr > td.danger,
|
2409 |
+
.table > tfoot > tr > td.danger,
|
2410 |
+
.table > thead > tr > th.danger,
|
2411 |
+
.table > tbody > tr > th.danger,
|
2412 |
+
.table > tfoot > tr > th.danger,
|
2413 |
+
.table > thead > tr.danger > td,
|
2414 |
+
.table > tbody > tr.danger > td,
|
2415 |
+
.table > tfoot > tr.danger > td,
|
2416 |
+
.table > thead > tr.danger > th,
|
2417 |
+
.table > tbody > tr.danger > th,
|
2418 |
+
.table > tfoot > tr.danger > th {
|
2419 |
+
background-color: #f2dede;
|
2420 |
+
}
|
2421 |
+
.table-hover > tbody > tr > td.danger:hover,
|
2422 |
+
.table-hover > tbody > tr > th.danger:hover,
|
2423 |
+
.table-hover > tbody > tr.danger:hover > td,
|
2424 |
+
.table-hover > tbody > tr:hover > .danger,
|
2425 |
+
.table-hover > tbody > tr.danger:hover > th {
|
2426 |
+
background-color: #ebcccc;
|
2427 |
+
}
|
2428 |
+
.table-responsive {
|
2429 |
+
min-height: .01%;
|
2430 |
+
overflow-x: auto;
|
2431 |
+
}
|
2432 |
+
@media screen and (max-width: 767px) {
|
2433 |
+
.table-responsive {
|
2434 |
+
width: 100%;
|
2435 |
+
margin-bottom: 15px;
|
2436 |
+
overflow-y: hidden;
|
2437 |
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2438 |
+
border: 1px solid #ddd;
|
2439 |
+
}
|
2440 |
+
.table-responsive > .table {
|
2441 |
+
margin-bottom: 0;
|
2442 |
+
}
|
2443 |
+
.table-responsive > .table > thead > tr > th,
|
2444 |
+
.table-responsive > .table > tbody > tr > th,
|
2445 |
+
.table-responsive > .table > tfoot > tr > th,
|
2446 |
+
.table-responsive > .table > thead > tr > td,
|
2447 |
+
.table-responsive > .table > tbody > tr > td,
|
2448 |
+
.table-responsive > .table > tfoot > tr > td {
|
2449 |
+
white-space: nowrap;
|
2450 |
+
}
|
2451 |
+
.table-responsive > .table-bordered {
|
2452 |
+
border: 0;
|
2453 |
+
}
|
2454 |
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
2455 |
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
2456 |
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
2457 |
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
2458 |
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
2459 |
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
2460 |
+
border-left: 0;
|
2461 |
+
}
|
2462 |
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
2463 |
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
2464 |
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
2465 |
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
2466 |
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
2467 |
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
2468 |
+
border-right: 0;
|
2469 |
+
}
|
2470 |
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
2471 |
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
2472 |
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
2473 |
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
2474 |
+
border-bottom: 0;
|
2475 |
+
}
|
2476 |
+
}
|
2477 |
+
fieldset {
|
2478 |
+
min-width: 0;
|
2479 |
+
padding: 0;
|
2480 |
+
margin: 0;
|
2481 |
+
border: 0;
|
2482 |
+
}
|
2483 |
+
legend {
|
2484 |
+
display: block;
|
2485 |
+
width: 100%;
|
2486 |
+
padding: 0;
|
2487 |
+
margin-bottom: 20px;
|
2488 |
+
font-size: 21px;
|
2489 |
+
line-height: inherit;
|
2490 |
+
color: #333;
|
2491 |
+
border: 0;
|
2492 |
+
border-bottom: 1px solid #e5e5e5;
|
2493 |
+
}
|
2494 |
+
/*label {
|
2495 |
+
display: inline-block;
|
2496 |
+
max-width: 100%;
|
2497 |
+
margin-bottom: 5px;
|
2498 |
+
font-weight: bold;
|
2499 |
+
}*/
|
2500 |
+
input[type="search"] {
|
2501 |
+
-webkit-box-sizing: border-box;
|
2502 |
+
-moz-box-sizing: border-box;
|
2503 |
+
box-sizing: border-box;
|
2504 |
+
}
|
2505 |
+
input[type="radio"],
|
2506 |
+
input[type="checkbox"] {
|
2507 |
+
margin: 4px 0 0;
|
2508 |
+
margin-top: 1px \9;
|
2509 |
+
line-height: normal;
|
2510 |
+
}
|
2511 |
+
input[type="file"] {
|
2512 |
+
display: block;
|
2513 |
+
}
|
2514 |
+
input[type="range"] {
|
2515 |
+
display: block;
|
2516 |
+
width: 100%;
|
2517 |
+
}
|
2518 |
+
select[multiple],
|
2519 |
+
select[size] {
|
2520 |
+
height: auto;
|
2521 |
+
}
|
2522 |
+
input[type="file"]:focus,
|
2523 |
+
input[type="radio"]:focus,
|
2524 |
+
input[type="checkbox"]:focus {
|
2525 |
+
outline: 5px auto -webkit-focus-ring-color;
|
2526 |
+
outline-offset: -2px;
|
2527 |
+
}
|
2528 |
+
output {
|
2529 |
+
display: block;
|
2530 |
+
padding-top: 7px;
|
2531 |
+
font-size: 14px;
|
2532 |
+
line-height: 1.42857143;
|
2533 |
+
color: #555;
|
2534 |
+
}
|
2535 |
+
.form-control {
|
2536 |
+
display: block;
|
2537 |
+
width: 100%;
|
2538 |
+
height: 34px;
|
2539 |
+
padding: 6px 12px;
|
2540 |
+
font-size: 14px;
|
2541 |
+
line-height: 1.42857143;
|
2542 |
+
color: #555;
|
2543 |
+
background-color: #fff;
|
2544 |
+
background-image: none;
|
2545 |
+
border: 1px solid #ccc;
|
2546 |
+
border-radius: 4px;
|
2547 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2548 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2549 |
+
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2550 |
+
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2551 |
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2552 |
+
}
|
2553 |
+
.form-control:focus {
|
2554 |
+
border-color: #66afe9;
|
2555 |
+
outline: 0;
|
2556 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
2557 |
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
|
2558 |
+
}
|
2559 |
+
.form-control::-moz-placeholder {
|
2560 |
+
color: #999;
|
2561 |
+
opacity: 1;
|
2562 |
+
}
|
2563 |
+
.form-control:-ms-input-placeholder {
|
2564 |
+
color: #999;
|
2565 |
+
}
|
2566 |
+
.form-control::-webkit-input-placeholder {
|
2567 |
+
color: #999;
|
2568 |
+
}
|
2569 |
+
.form-control::-ms-expand {
|
2570 |
+
background-color: transparent;
|
2571 |
+
border: 0;
|
2572 |
+
}
|
2573 |
+
.form-control[disabled],
|
2574 |
+
.form-control[readonly],
|
2575 |
+
fieldset[disabled] .form-control {
|
2576 |
+
background-color: #eee;
|
2577 |
+
opacity: 1;
|
2578 |
+
}
|
2579 |
+
.form-control[disabled],
|
2580 |
+
fieldset[disabled] .form-control {
|
2581 |
+
cursor: not-allowed;
|
2582 |
+
}
|
2583 |
+
textarea.form-control {
|
2584 |
+
height: auto;
|
2585 |
+
}
|
2586 |
+
input[type="search"] {
|
2587 |
+
-webkit-appearance: none;
|
2588 |
+
}
|
2589 |
+
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2590 |
+
input[type="date"].form-control,
|
2591 |
+
input[type="time"].form-control,
|
2592 |
+
input[type="datetime-local"].form-control,
|
2593 |
+
input[type="month"].form-control {
|
2594 |
+
line-height: 34px;
|
2595 |
+
}
|
2596 |
+
input[type="date"].input-sm,
|
2597 |
+
input[type="time"].input-sm,
|
2598 |
+
input[type="datetime-local"].input-sm,
|
2599 |
+
input[type="month"].input-sm,
|
2600 |
+
.input-group-sm input[type="date"],
|
2601 |
+
.input-group-sm input[type="time"],
|
2602 |
+
.input-group-sm input[type="datetime-local"],
|
2603 |
+
.input-group-sm input[type="month"] {
|
2604 |
+
line-height: 30px;
|
2605 |
+
}
|
2606 |
+
input[type="date"].input-lg,
|
2607 |
+
input[type="time"].input-lg,
|
2608 |
+
input[type="datetime-local"].input-lg,
|
2609 |
+
input[type="month"].input-lg,
|
2610 |
+
.input-group-lg input[type="date"],
|
2611 |
+
.input-group-lg input[type="time"],
|
2612 |
+
.input-group-lg input[type="datetime-local"],
|
2613 |
+
.input-group-lg input[type="month"] {
|
2614 |
+
line-height: 46px;
|
2615 |
+
}
|
2616 |
+
}
|
2617 |
+
.form-group {
|
2618 |
+
margin-bottom: 15px;
|
2619 |
+
}
|
2620 |
+
.radio,
|
2621 |
+
.checkbox {
|
2622 |
+
position: relative;
|
2623 |
+
display: block;
|
2624 |
+
margin-top: 10px;
|
2625 |
+
margin-bottom: 10px;
|
2626 |
+
}
|
2627 |
+
.radio label,
|
2628 |
+
.checkbox label {
|
2629 |
+
min-height: 20px;
|
2630 |
+
padding-left: 20px;
|
2631 |
+
margin-bottom: 0;
|
2632 |
+
font-weight: normal;
|
2633 |
+
cursor: pointer;
|
2634 |
+
}
|
2635 |
+
.radio input[type="radio"],
|
2636 |
+
.radio-inline input[type="radio"],
|
2637 |
+
.checkbox input[type="checkbox"],
|
2638 |
+
.checkbox-inline input[type="checkbox"] {
|
2639 |
+
position: absolute;
|
2640 |
+
margin-top: 4px \9;
|
2641 |
+
margin-left: -20px;
|
2642 |
+
}
|
2643 |
+
.radio + .radio,
|
2644 |
+
.checkbox + .checkbox {
|
2645 |
+
margin-top: -5px;
|
2646 |
+
}
|
2647 |
+
.radio-inline,
|
2648 |
+
.checkbox-inline {
|
2649 |
+
position: relative;
|
2650 |
+
display: inline-block;
|
2651 |
+
padding-left: 20px;
|
2652 |
+
margin-bottom: 0;
|
2653 |
+
font-weight: normal;
|
2654 |
+
vertical-align: middle;
|
2655 |
+
cursor: pointer;
|
2656 |
+
}
|
2657 |
+
.radio-inline + .radio-inline,
|
2658 |
+
.checkbox-inline + .checkbox-inline {
|
2659 |
+
margin-top: 0;
|
2660 |
+
margin-left: 10px;
|
2661 |
+
}
|
2662 |
+
input[type="radio"][disabled],
|
2663 |
+
input[type="checkbox"][disabled],
|
2664 |
+
input[type="radio"].disabled,
|
2665 |
+
input[type="checkbox"].disabled,
|
2666 |
+
fieldset[disabled] input[type="radio"],
|
2667 |
+
fieldset[disabled] input[type="checkbox"] {
|
2668 |
+
cursor: not-allowed;
|
2669 |
+
}
|
2670 |
+
.radio-inline.disabled,
|
2671 |
+
.checkbox-inline.disabled,
|
2672 |
+
fieldset[disabled] .radio-inline,
|
2673 |
+
fieldset[disabled] .checkbox-inline {
|
2674 |
+
cursor: not-allowed;
|
2675 |
+
}
|
2676 |
+
.radio.disabled label,
|
2677 |
+
.checkbox.disabled label,
|
2678 |
+
fieldset[disabled] .radio label,
|
2679 |
+
fieldset[disabled] .checkbox label {
|
2680 |
+
cursor: not-allowed;
|
2681 |
+
}
|
2682 |
+
.form-control-static {
|
2683 |
+
min-height: 34px;
|
2684 |
+
padding-top: 7px;
|
2685 |
+
padding-bottom: 7px;
|
2686 |
+
margin-bottom: 0;
|
2687 |
+
}
|
2688 |
+
.form-control-static.input-lg,
|
2689 |
+
.form-control-static.input-sm {
|
2690 |
+
padding-right: 0;
|
2691 |
+
padding-left: 0;
|
2692 |
+
}
|
2693 |
+
.input-sm {
|
2694 |
+
height: 30px;
|
2695 |
+
padding: 5px 10px;
|
2696 |
+
font-size: 12px;
|
2697 |
+
line-height: 1.5;
|
2698 |
+
border-radius: 3px;
|
2699 |
+
}
|
2700 |
+
select.input-sm {
|
2701 |
+
height: 30px;
|
2702 |
+
line-height: 30px;
|
2703 |
+
}
|
2704 |
+
textarea.input-sm,
|
2705 |
+
select[multiple].input-sm {
|
2706 |
+
height: auto;
|
2707 |
+
}
|
2708 |
+
.form-group-sm .form-control {
|
2709 |
+
height: 30px;
|
2710 |
+
padding: 5px 10px;
|
2711 |
+
font-size: 12px;
|
2712 |
+
line-height: 1.5;
|
2713 |
+
border-radius: 3px;
|
2714 |
+
}
|
2715 |
+
.form-group-sm select.form-control {
|
2716 |
+
height: 30px;
|
2717 |
+
line-height: 30px;
|
2718 |
+
}
|
2719 |
+
.form-group-sm textarea.form-control,
|
2720 |
+
.form-group-sm select[multiple].form-control {
|
2721 |
+
height: auto;
|
2722 |
+
}
|
2723 |
+
.form-group-sm .form-control-static {
|
2724 |
+
height: 30px;
|
2725 |
+
min-height: 32px;
|
2726 |
+
padding: 6px 10px;
|
2727 |
+
font-size: 12px;
|
2728 |
+
line-height: 1.5;
|
2729 |
+
}
|
2730 |
+
.input-lg {
|
2731 |
+
height: 46px;
|
2732 |
+
padding: 10px 16px;
|
2733 |
+
font-size: 18px;
|
2734 |
+
line-height: 1.3333333;
|
2735 |
+
border-radius: 6px;
|
2736 |
+
}
|
2737 |
+
select.input-lg {
|
2738 |
+
height: 46px;
|
2739 |
+
line-height: 46px;
|
2740 |
+
}
|
2741 |
+
textarea.input-lg,
|
2742 |
+
select[multiple].input-lg {
|
2743 |
+
height: auto;
|
2744 |
+
}
|
2745 |
+
.form-group-lg .form-control {
|
2746 |
+
height: 46px;
|
2747 |
+
padding: 10px 16px;
|
2748 |
+
font-size: 18px;
|
2749 |
+
line-height: 1.3333333;
|
2750 |
+
border-radius: 6px;
|
2751 |
+
}
|
2752 |
+
.form-group-lg select.form-control {
|
2753 |
+
height: 46px;
|
2754 |
+
line-height: 46px;
|
2755 |
+
}
|
2756 |
+
.form-group-lg textarea.form-control,
|
2757 |
+
.form-group-lg select[multiple].form-control {
|
2758 |
+
height: auto;
|
2759 |
+
}
|
2760 |
+
.form-group-lg .form-control-static {
|
2761 |
+
height: 46px;
|
2762 |
+
min-height: 38px;
|
2763 |
+
padding: 11px 16px;
|
2764 |
+
font-size: 18px;
|
2765 |
+
line-height: 1.3333333;
|
2766 |
+
}
|
2767 |
+
.has-feedback {
|
2768 |
+
position: relative;
|
2769 |
+
}
|
2770 |
+
.has-feedback .form-control {
|
2771 |
+
padding-right: 42.5px;
|
2772 |
+
}
|
2773 |
+
.form-control-feedback {
|
2774 |
+
position: absolute;
|
2775 |
+
top: 0;
|
2776 |
+
right: 0;
|
2777 |
+
z-index: 2;
|
2778 |
+
display: block;
|
2779 |
+
width: 34px;
|
2780 |
+
height: 34px;
|
2781 |
+
line-height: 34px;
|
2782 |
+
text-align: center;
|
2783 |
+
pointer-events: none;
|
2784 |
+
}
|
2785 |
+
.input-lg + .form-control-feedback,
|
2786 |
+
.input-group-lg + .form-control-feedback,
|
2787 |
+
.form-group-lg .form-control + .form-control-feedback {
|
2788 |
+
width: 46px;
|
2789 |
+
height: 46px;
|
2790 |
+
line-height: 46px;
|
2791 |
+
}
|
2792 |
+
.input-sm + .form-control-feedback,
|
2793 |
+
.input-group-sm + .form-control-feedback,
|
2794 |
+
.form-group-sm .form-control + .form-control-feedback {
|
2795 |
+
width: 30px;
|
2796 |
+
height: 30px;
|
2797 |
+
line-height: 30px;
|
2798 |
+
}
|
2799 |
+
.has-success .help-block,
|
2800 |
+
.has-success .control-label,
|
2801 |
+
.has-success .radio,
|
2802 |
+
.has-success .checkbox,
|
2803 |
+
.has-success .radio-inline,
|
2804 |
+
.has-success .checkbox-inline,
|
2805 |
+
.has-success.radio label,
|
2806 |
+
.has-success.checkbox label,
|
2807 |
+
.has-success.radio-inline label,
|
2808 |
+
.has-success.checkbox-inline label {
|
2809 |
+
color: #3c763d;
|
2810 |
+
}
|
2811 |
+
.has-success .form-control {
|
2812 |
+
border-color: #3c763d;
|
2813 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2814 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2815 |
+
}
|
2816 |
+
.has-success .form-control:focus {
|
2817 |
+
border-color: #2b542c;
|
2818 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2819 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2820 |
+
}
|
2821 |
+
.has-success .input-group-addon {
|
2822 |
+
color: #3c763d;
|
2823 |
+
background-color: #dff0d8;
|
2824 |
+
border-color: #3c763d;
|
2825 |
+
}
|
2826 |
+
.has-success .form-control-feedback {
|
2827 |
+
color: #3c763d;
|
2828 |
+
}
|
2829 |
+
.has-warning .help-block,
|
2830 |
+
.has-warning .control-label,
|
2831 |
+
.has-warning .radio,
|
2832 |
+
.has-warning .checkbox,
|
2833 |
+
.has-warning .radio-inline,
|
2834 |
+
.has-warning .checkbox-inline,
|
2835 |
+
.has-warning.radio label,
|
2836 |
+
.has-warning.checkbox label,
|
2837 |
+
.has-warning.radio-inline label,
|
2838 |
+
.has-warning.checkbox-inline label {
|
2839 |
+
color: #8a6d3b;
|
2840 |
+
}
|
2841 |
+
.has-warning .form-control {
|
2842 |
+
border-color: #8a6d3b;
|
2843 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2844 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2845 |
+
}
|
2846 |
+
.has-warning .form-control:focus {
|
2847 |
+
border-color: #66512c;
|
2848 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2849 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2850 |
+
}
|
2851 |
+
.has-warning .input-group-addon {
|
2852 |
+
color: #8a6d3b;
|
2853 |
+
background-color: #fcf8e3;
|
2854 |
+
border-color: #8a6d3b;
|
2855 |
+
}
|
2856 |
+
.has-warning .form-control-feedback {
|
2857 |
+
color: #8a6d3b;
|
2858 |
+
}
|
2859 |
+
.has-error .help-block,
|
2860 |
+
.has-error .control-label,
|
2861 |
+
.has-error .radio,
|
2862 |
+
.has-error .checkbox,
|
2863 |
+
.has-error .radio-inline,
|
2864 |
+
.has-error .checkbox-inline,
|
2865 |
+
.has-error.radio label,
|
2866 |
+
.has-error.checkbox label,
|
2867 |
+
.has-error.radio-inline label,
|
2868 |
+
.has-error.checkbox-inline label {
|
2869 |
+
color: #a94442;
|
2870 |
+
}
|
2871 |
+
.has-error .form-control {
|
2872 |
+
border-color: #a94442;
|
2873 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2874 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2875 |
+
}
|
2876 |
+
.has-error .form-control:focus {
|
2877 |
+
border-color: #843534;
|
2878 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2879 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2880 |
+
}
|
2881 |
+
.has-error .input-group-addon {
|
2882 |
+
color: #a94442;
|
2883 |
+
background-color: #f2dede;
|
2884 |
+
border-color: #a94442;
|
2885 |
+
}
|
2886 |
+
.has-error .form-control-feedback {
|
2887 |
+
color: #a94442;
|
2888 |
+
}
|
2889 |
+
.has-feedback label ~ .form-control-feedback {
|
2890 |
+
top: 25px;
|
2891 |
+
}
|
2892 |
+
.has-feedback label.sr-only ~ .form-control-feedback {
|
2893 |
+
top: 0;
|
2894 |
+
}
|
2895 |
+
.help-block {
|
2896 |
+
display: block;
|
2897 |
+
margin-top: 5px;
|
2898 |
+
margin-bottom: 10px;
|
2899 |
+
color: #737373;
|
2900 |
+
}
|
2901 |
+
@media (min-width: 768px) {
|
2902 |
+
.form-inline .form-group {
|
2903 |
+
display: inline-block;
|
2904 |
+
margin-bottom: 0;
|
2905 |
+
vertical-align: middle;
|
2906 |
+
}
|
2907 |
+
.form-inline .form-control {
|
2908 |
+
display: inline-block;
|
2909 |
+
width: auto;
|
2910 |
+
vertical-align: middle;
|
2911 |
+
}
|
2912 |
+
.form-inline .form-control-static {
|
2913 |
+
display: inline-block;
|
2914 |
+
}
|
2915 |
+
.form-inline .input-group {
|
2916 |
+
display: inline-table;
|
2917 |
+
vertical-align: middle;
|
2918 |
+
}
|
2919 |
+
.form-inline .input-group .input-group-addon,
|
2920 |
+
.form-inline .input-group .input-group-btn,
|
2921 |
+
.form-inline .input-group .form-control {
|
2922 |
+
width: auto;
|
2923 |
+
}
|
2924 |
+
.form-inline .input-group > .form-control {
|
2925 |
+
width: 100%;
|
2926 |
+
}
|
2927 |
+
.form-inline .control-label {
|
2928 |
+
margin-bottom: 0;
|
2929 |
+
vertical-align: middle;
|
2930 |
+
}
|
2931 |
+
.form-inline .radio,
|
2932 |
+
.form-inline .checkbox {
|
2933 |
+
display: inline-block;
|
2934 |
+
margin-top: 0;
|
2935 |
+
margin-bottom: 0;
|
2936 |
+
vertical-align: middle;
|
2937 |
+
}
|
2938 |
+
.form-inline .radio label,
|
2939 |
+
.form-inline .checkbox label {
|
2940 |
+
padding-left: 0;
|
2941 |
+
}
|
2942 |
+
.form-inline .radio input[type="radio"],
|
2943 |
+
.form-inline .checkbox input[type="checkbox"] {
|
2944 |
+
position: relative;
|
2945 |
+
margin-left: 0;
|
2946 |
+
}
|
2947 |
+
.form-inline .has-feedback .form-control-feedback {
|
2948 |
+
top: 0;
|
2949 |
+
}
|
2950 |
+
}
|
2951 |
+
.form-horizontal .radio,
|
2952 |
+
.form-horizontal .checkbox,
|
2953 |
+
.form-horizontal .radio-inline,
|
2954 |
+
.form-horizontal .checkbox-inline {
|
2955 |
+
padding-top: 7px;
|
2956 |
+
margin-top: 0;
|
2957 |
+
margin-bottom: 0;
|
2958 |
+
}
|
2959 |
+
.form-horizontal .radio,
|
2960 |
+
.form-horizontal .checkbox {
|
2961 |
+
min-height: 27px;
|
2962 |
+
}
|
2963 |
+
.form-horizontal .form-group {
|
2964 |
+
margin-right: -15px;
|
2965 |
+
margin-left: -15px;
|
2966 |
+
}
|
2967 |
+
@media (min-width: 768px) {
|
2968 |
+
.form-horizontal .control-label {
|
2969 |
+
padding-top: 7px;
|
2970 |
+
margin-bottom: 0;
|
2971 |
+
text-align: right;
|
2972 |
+
}
|
2973 |
+
}
|
2974 |
+
.form-horizontal .has-feedback .form-control-feedback {
|
2975 |
+
right: 15px;
|
2976 |
+
}
|
2977 |
+
@media (min-width: 768px) {
|
2978 |
+
.form-horizontal .form-group-lg .control-label {
|
2979 |
+
padding-top: 11px;
|
2980 |
+
font-size: 18px;
|
2981 |
+
}
|
2982 |
+
}
|
2983 |
+
@media (min-width: 768px) {
|
2984 |
+
.form-horizontal .form-group-sm .control-label {
|
2985 |
+
padding-top: 6px;
|
2986 |
+
font-size: 12px;
|
2987 |
+
}
|
2988 |
+
}
|
2989 |
+
.btn {
|
2990 |
+
display: inline-block;
|
2991 |
+
padding: 6px 12px;
|
2992 |
+
margin-bottom: 0;
|
2993 |
+
font-size: 14px;
|
2994 |
+
font-weight: normal;
|
2995 |
+
line-height: 1.42857143;
|
2996 |
+
text-align: center;
|
2997 |
+
white-space: nowrap;
|
2998 |
+
vertical-align: middle;
|
2999 |
+
-ms-touch-action: manipulation;
|
3000 |
+
touch-action: manipulation;
|
3001 |
+
cursor: pointer;
|
3002 |
+
-webkit-user-select: none;
|
3003 |
+
-moz-user-select: none;
|
3004 |
+
-ms-user-select: none;
|
3005 |
+
user-select: none;
|
3006 |
+
background-image: none;
|
3007 |
+
border: 1px solid transparent;
|
3008 |
+
border-radius: 4px;
|
3009 |
+
}
|
3010 |
+
.btn:focus,
|
3011 |
+
.btn:active:focus,
|
3012 |
+
.btn.active:focus,
|
3013 |
+
.btn.focus,
|
3014 |
+
.btn:active.focus,
|
3015 |
+
.btn.active.focus {
|
3016 |
+
outline: 5px auto -webkit-focus-ring-color;
|
3017 |
+
outline-offset: -2px;
|
3018 |
+
}
|
3019 |
+
.btn:hover,
|
3020 |
+
.btn:focus,
|
3021 |
+
.btn.focus {
|
3022 |
+
color: #333;
|
3023 |
+
text-decoration: none;
|
3024 |
+
}
|
3025 |
+
.btn:active,
|
3026 |
+
.btn.active {
|
3027 |
+
background-image: none;
|
3028 |
+
outline: 0;
|
3029 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3030 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3031 |
+
}
|
3032 |
+
.btn.disabled,
|
3033 |
+
.btn[disabled],
|
3034 |
+
fieldset[disabled] .btn {
|
3035 |
+
cursor: not-allowed;
|
3036 |
+
filter: alpha(opacity=65);
|
3037 |
+
-webkit-box-shadow: none;
|
3038 |
+
box-shadow: none;
|
3039 |
+
opacity: .65;
|
3040 |
+
}
|
3041 |
+
a.btn.disabled,
|
3042 |
+
fieldset[disabled] a.btn {
|
3043 |
+
pointer-events: none;
|
3044 |
+
}
|
3045 |
+
.btn-default {
|
3046 |
+
color: #333;
|
3047 |
+
background-color: #fff;
|
3048 |
+
border-color: #ccc;
|
3049 |
+
}
|
3050 |
+
.btn-default:focus,
|
3051 |
+
.btn-default.focus {
|
3052 |
+
color: #333;
|
3053 |
+
background-color: #e6e6e6;
|
3054 |
+
border-color: #8c8c8c;
|
3055 |
+
}
|
3056 |
+
.btn-default:hover {
|
3057 |
+
color: #333;
|
3058 |
+
background-color: #e6e6e6;
|
3059 |
+
border-color: #adadad;
|
3060 |
+
}
|
3061 |
+
.btn-default:active,
|
3062 |
+
.btn-default.active,
|
3063 |
+
.open > .dropdown-toggle.btn-default {
|
3064 |
+
color: #333;
|
3065 |
+
background-color: #e6e6e6;
|
3066 |
+
border-color: #adadad;
|
3067 |
+
}
|
3068 |
+
.btn-default:active:hover,
|
3069 |
+
.btn-default.active:hover,
|
3070 |
+
.open > .dropdown-toggle.btn-default:hover,
|
3071 |
+
.btn-default:active:focus,
|
3072 |
+
.btn-default.active:focus,
|
3073 |
+
.open > .dropdown-toggle.btn-default:focus,
|
3074 |
+
.btn-default:active.focus,
|
3075 |
+
.btn-default.active.focus,
|
3076 |
+
.open > .dropdown-toggle.btn-default.focus {
|
3077 |
+
color: #333;
|
3078 |
+
background-color: #d4d4d4;
|
3079 |
+
border-color: #8c8c8c;
|
3080 |
+
}
|
3081 |
+
.btn-default:active,
|
3082 |
+
.btn-default.active,
|
3083 |
+
.open > .dropdown-toggle.btn-default {
|
3084 |
+
background-image: none;
|
3085 |
+
}
|
3086 |
+
.btn-default.disabled:hover,
|
3087 |
+
.btn-default[disabled]:hover,
|
3088 |
+
fieldset[disabled] .btn-default:hover,
|
3089 |
+
.btn-default.disabled:focus,
|
3090 |
+
.btn-default[disabled]:focus,
|
3091 |
+
fieldset[disabled] .btn-default:focus,
|
3092 |
+
.btn-default.disabled.focus,
|
3093 |
+
.btn-default[disabled].focus,
|
3094 |
+
fieldset[disabled] .btn-default.focus {
|
3095 |
+
background-color: #fff;
|
3096 |
+
border-color: #ccc;
|
3097 |
+
}
|
3098 |
+
.btn-default .badge {
|
3099 |
+
color: #fff;
|
3100 |
+
background-color: #333;
|
3101 |
+
}
|
3102 |
+
.btn-primary {
|
3103 |
+
color: #fff;
|
3104 |
+
background-color: #337ab7;
|
3105 |
+
border-color: #2e6da4;
|
3106 |
+
}
|
3107 |
+
.btn-primary:focus,
|
3108 |
+
.btn-primary.focus {
|
3109 |
+
color: #fff;
|
3110 |
+
background-color: #286090;
|
3111 |
+
border-color: #122b40;
|
3112 |
+
}
|
3113 |
+
.btn-primary:hover {
|
3114 |
+
color: #fff;
|
3115 |
+
background-color: #286090;
|
3116 |
+
border-color: #204d74;
|
3117 |
+
}
|
3118 |
+
.btn-primary:active,
|
3119 |
+
.btn-primary.active,
|
3120 |
+
.open > .dropdown-toggle.btn-primary {
|
3121 |
+
color: #fff;
|
3122 |
+
background-color: #286090;
|
3123 |
+
border-color: #204d74;
|
3124 |
+
}
|
3125 |
+
.btn-primary:active:hover,
|
3126 |
+
.btn-primary.active:hover,
|
3127 |
+
.open > .dropdown-toggle.btn-primary:hover,
|
3128 |
+
.btn-primary:active:focus,
|
3129 |
+
.btn-primary.active:focus,
|
3130 |
+
.open > .dropdown-toggle.btn-primary:focus,
|
3131 |
+
.btn-primary:active.focus,
|
3132 |
+
.btn-primary.active.focus,
|
3133 |
+
.open > .dropdown-toggle.btn-primary.focus {
|
3134 |
+
color: #fff;
|
3135 |
+
background-color: #204d74;
|
3136 |
+
border-color: #122b40;
|
3137 |
+
}
|
3138 |
+
.btn-primary:active,
|
3139 |
+
.btn-primary.active,
|
3140 |
+
.open > .dropdown-toggle.btn-primary {
|
3141 |
+
background-image: none;
|
3142 |
+
}
|
3143 |
+
.btn-primary.disabled:hover,
|
3144 |
+
.btn-primary[disabled]:hover,
|
3145 |
+
fieldset[disabled] .btn-primary:hover,
|
3146 |
+
.btn-primary.disabled:focus,
|
3147 |
+
.btn-primary[disabled]:focus,
|
3148 |
+
fieldset[disabled] .btn-primary:focus,
|
3149 |
+
.btn-primary.disabled.focus,
|
3150 |
+
.btn-primary[disabled].focus,
|
3151 |
+
fieldset[disabled] .btn-primary.focus {
|
3152 |
+
background-color: #337ab7;
|
3153 |
+
border-color: #2e6da4;
|
3154 |
+
}
|
3155 |
+
.btn-primary .badge {
|
3156 |
+
color: #337ab7;
|
3157 |
+
background-color: #fff;
|
3158 |
+
}
|
3159 |
+
.btn-success {
|
3160 |
+
color: #fff;
|
3161 |
+
background-color: #5cb85c;
|
3162 |
+
border-color: #4cae4c;
|
3163 |
+
}
|
3164 |
+
.btn-success:focus,
|
3165 |
+
.btn-success.focus {
|
3166 |
+
color: #fff;
|
3167 |
+
background-color: #449d44;
|
3168 |
+
border-color: #255625;
|
3169 |
+
}
|
3170 |
+
.btn-success:hover {
|
3171 |
+
color: #fff;
|
3172 |
+
background-color: #449d44;
|
3173 |
+
border-color: #398439;
|
3174 |
+
}
|
3175 |
+
.btn-success:active,
|
3176 |
+
.btn-success.active,
|
3177 |
+
.open > .dropdown-toggle.btn-success {
|
3178 |
+
color: #fff;
|
3179 |
+
background-color: #449d44;
|
3180 |
+
border-color: #398439;
|
3181 |
+
}
|
3182 |
+
.btn-success:active:hover,
|
3183 |
+
.btn-success.active:hover,
|
3184 |
+
.open > .dropdown-toggle.btn-success:hover,
|
3185 |
+
.btn-success:active:focus,
|
3186 |
+
.btn-success.active:focus,
|
3187 |
+
.open > .dropdown-toggle.btn-success:focus,
|
3188 |
+
.btn-success:active.focus,
|
3189 |
+
.btn-success.active.focus,
|
3190 |
+
.open > .dropdown-toggle.btn-success.focus {
|
3191 |
+
color: #fff;
|
3192 |
+
background-color: #398439;
|
3193 |
+
border-color: #255625;
|
3194 |
+
}
|
3195 |
+
.btn-success:active,
|
3196 |
+
.btn-success.active,
|
3197 |
+
.open > .dropdown-toggle.btn-success {
|
3198 |
+
background-image: none;
|
3199 |
+
}
|
3200 |
+
.btn-success.disabled:hover,
|
3201 |
+
.btn-success[disabled]:hover,
|
3202 |
+
fieldset[disabled] .btn-success:hover,
|
3203 |
+
.btn-success.disabled:focus,
|
3204 |
+
.btn-success[disabled]:focus,
|
3205 |
+
fieldset[disabled] .btn-success:focus,
|
3206 |
+
.btn-success.disabled.focus,
|
3207 |
+
.btn-success[disabled].focus,
|
3208 |
+
fieldset[disabled] .btn-success.focus {
|
3209 |
+
background-color: #5cb85c;
|
3210 |
+
border-color: #4cae4c;
|
3211 |
+
}
|
3212 |
+
.btn-success .badge {
|
3213 |
+
color: #5cb85c;
|
3214 |
+
background-color: #fff;
|
3215 |
+
}
|
3216 |
+
.btn-info {
|
3217 |
+
color: #fff;
|
3218 |
+
background-color: #5bc0de;
|
3219 |
+
border-color: #46b8da;
|
3220 |
+
}
|
3221 |
+
.btn-info:focus,
|
3222 |
+
.btn-info.focus {
|
3223 |
+
color: #fff;
|
3224 |
+
background-color: #31b0d5;
|
3225 |
+
border-color: #1b6d85;
|
3226 |
+
}
|
3227 |
+
.btn-info:hover {
|
3228 |
+
color: #fff;
|
3229 |
+
background-color: #31b0d5;
|
3230 |
+
border-color: #269abc;
|
3231 |
+
}
|
3232 |
+
.btn-info:active,
|
3233 |
+
.btn-info.active,
|
3234 |
+
.open > .dropdown-toggle.btn-info {
|
3235 |
+
color: #fff;
|
3236 |
+
background-color: #31b0d5;
|
3237 |
+
border-color: #269abc;
|
3238 |
+
}
|
3239 |
+
.btn-info:active:hover,
|
3240 |
+
.btn-info.active:hover,
|
3241 |
+
.open > .dropdown-toggle.btn-info:hover,
|
3242 |
+
.btn-info:active:focus,
|
3243 |
+
.btn-info.active:focus,
|
3244 |
+
.open > .dropdown-toggle.btn-info:focus,
|
3245 |
+
.btn-info:active.focus,
|
3246 |
+
.btn-info.active.focus,
|
3247 |
+
.open > .dropdown-toggle.btn-info.focus {
|
3248 |
+
color: #fff;
|
3249 |
+
background-color: #269abc;
|
3250 |
+
border-color: #1b6d85;
|
3251 |
+
}
|
3252 |
+
.btn-info:active,
|
3253 |
+
.btn-info.active,
|
3254 |
+
.open > .dropdown-toggle.btn-info {
|
3255 |
+
background-image: none;
|
3256 |
+
}
|
3257 |
+
.btn-info.disabled:hover,
|
3258 |
+
.btn-info[disabled]:hover,
|
3259 |
+
fieldset[disabled] .btn-info:hover,
|
3260 |
+
.btn-info.disabled:focus,
|
3261 |
+
.btn-info[disabled]:focus,
|
3262 |
+
fieldset[disabled] .btn-info:focus,
|
3263 |
+
.btn-info.disabled.focus,
|
3264 |
+
.btn-info[disabled].focus,
|
3265 |
+
fieldset[disabled] .btn-info.focus {
|
3266 |
+
background-color: #5bc0de;
|
3267 |
+
border-color: #46b8da;
|
3268 |
+
}
|
3269 |
+
.btn-info .badge {
|
3270 |
+
color: #5bc0de;
|
3271 |
+
background-color: #fff;
|
3272 |
+
}
|
3273 |
+
.btn-warning {
|
3274 |
+
color: #fff;
|
3275 |
+
background-color: #f0ad4e;
|
3276 |
+
border-color: #eea236;
|
3277 |
+
}
|
3278 |
+
.btn-warning:focus,
|
3279 |
+
.btn-warning.focus {
|
3280 |
+
color: #fff;
|
3281 |
+
background-color: #ec971f;
|
3282 |
+
border-color: #985f0d;
|
3283 |
+
}
|
3284 |
+
.btn-warning:hover {
|
3285 |
+
color: #fff;
|
3286 |
+
background-color: #ec971f;
|
3287 |
+
border-color: #d58512;
|
3288 |
+
}
|
3289 |
+
.btn-warning:active,
|
3290 |
+
.btn-warning.active,
|
3291 |
+
.open > .dropdown-toggle.btn-warning {
|
3292 |
+
color: #fff;
|
3293 |
+
background-color: #ec971f;
|
3294 |
+
border-color: #d58512;
|
3295 |
+
}
|
3296 |
+
.btn-warning:active:hover,
|
3297 |
+
.btn-warning.active:hover,
|
3298 |
+
.open > .dropdown-toggle.btn-warning:hover,
|
3299 |
+
.btn-warning:active:focus,
|
3300 |
+
.btn-warning.active:focus,
|
3301 |
+
.open > .dropdown-toggle.btn-warning:focus,
|
3302 |
+
.btn-warning:active.focus,
|
3303 |
+
.btn-warning.active.focus,
|
3304 |
+
.open > .dropdown-toggle.btn-warning.focus {
|
3305 |
+
color: #fff;
|
3306 |
+
background-color: #d58512;
|
3307 |
+
border-color: #985f0d;
|
3308 |
+
}
|
3309 |
+
.btn-warning:active,
|
3310 |
+
.btn-warning.active,
|
3311 |
+
.open > .dropdown-toggle.btn-warning {
|
3312 |
+
background-image: none;
|
3313 |
+
}
|
3314 |
+
.btn-warning.disabled:hover,
|
3315 |
+
.btn-warning[disabled]:hover,
|
3316 |
+
fieldset[disabled] .btn-warning:hover,
|
3317 |
+
.btn-warning.disabled:focus,
|
3318 |
+
.btn-warning[disabled]:focus,
|
3319 |
+
fieldset[disabled] .btn-warning:focus,
|
3320 |
+
.btn-warning.disabled.focus,
|
3321 |
+
.btn-warning[disabled].focus,
|
3322 |
+
fieldset[disabled] .btn-warning.focus {
|
3323 |
+
background-color: #f0ad4e;
|
3324 |
+
border-color: #eea236;
|
3325 |
+
}
|
3326 |
+
.btn-warning .badge {
|
3327 |
+
color: #f0ad4e;
|
3328 |
+
background-color: #fff;
|
3329 |
+
}
|
3330 |
+
.btn-danger {
|
3331 |
+
color: #fff;
|
3332 |
+
background-color: #d9534f;
|
3333 |
+
border-color: #d43f3a;
|
3334 |
+
}
|
3335 |
+
.btn-danger:focus,
|
3336 |
+
.btn-danger.focus {
|
3337 |
+
color: #fff;
|
3338 |
+
background-color: #c9302c;
|
3339 |
+
border-color: #ac2925;
|
3340 |
+
}
|
3341 |
+
.btn-danger:hover {
|
3342 |
+
color: #fff;
|
3343 |
+
background-color: #c9302c;
|
3344 |
+
border-color: #ac2925;
|
3345 |
+
}
|
3346 |
+
.btn-danger:active,
|
3347 |
+
.btn-danger.active,
|
3348 |
+
.open > .dropdown-toggle.btn-danger {
|
3349 |
+
color: #fff;
|
3350 |
+
background-color: #c9302c;
|
3351 |
+
border-color: #ac2925;
|
3352 |
+
}
|
3353 |
+
.btn-danger:active:hover,
|
3354 |
+
.btn-danger.active:hover,
|
3355 |
+
.open > .dropdown-toggle.btn-danger:hover,
|
3356 |
+
.btn-danger:active:focus,
|
3357 |
+
.btn-danger.active:focus,
|
3358 |
+
.open > .dropdown-toggle.btn-danger:focus,
|
3359 |
+
.btn-danger:active.focus,
|
3360 |
+
.btn-danger.active.focus,
|
3361 |
+
.open > .dropdown-toggle.btn-danger.focus {
|
3362 |
+
color: #fff;
|
3363 |
+
background-color: #ac2925;
|
3364 |
+
border-color: #761c19;
|
3365 |
+
}
|
3366 |
+
.btn-danger:active,
|
3367 |
+
.btn-danger.active,
|
3368 |
+
.open > .dropdown-toggle.btn-danger {
|
3369 |
+
background-image: none;
|
3370 |
+
}
|
3371 |
+
.btn-danger.disabled:hover,
|
3372 |
+
.btn-danger[disabled]:hover,
|
3373 |
+
fieldset[disabled] .btn-danger:hover,
|
3374 |
+
.btn-danger.disabled:focus,
|
3375 |
+
.btn-danger[disabled]:focus,
|
3376 |
+
fieldset[disabled] .btn-danger:focus,
|
3377 |
+
.btn-danger.disabled.focus,
|
3378 |
+
.btn-danger[disabled].focus,
|
3379 |
+
fieldset[disabled] .btn-danger.focus {
|
3380 |
+
background-color: #d9534f;
|
3381 |
+
border-color: #d43f3a;
|
3382 |
+
}
|
3383 |
+
.btn-danger .badge {
|
3384 |
+
color: #d9534f;
|
3385 |
+
background-color: #fff;
|
3386 |
+
}
|
3387 |
+
.btn-link {
|
3388 |
+
font-weight: normal;
|
3389 |
+
color: #337ab7;
|
3390 |
+
border-radius: 0;
|
3391 |
+
}
|
3392 |
+
.btn-link,
|
3393 |
+
.btn-link:active,
|
3394 |
+
.btn-link.active,
|
3395 |
+
.btn-link[disabled],
|
3396 |
+
fieldset[disabled] .btn-link {
|
3397 |
+
background-color: transparent;
|
3398 |
+
-webkit-box-shadow: none;
|
3399 |
+
box-shadow: none;
|
3400 |
+
}
|
3401 |
+
.btn-link,
|
3402 |
+
.btn-link:hover,
|
3403 |
+
.btn-link:focus,
|
3404 |
+
.btn-link:active {
|
3405 |
+
border-color: transparent;
|
3406 |
+
}
|
3407 |
+
.btn-link:hover,
|
3408 |
+
.btn-link:focus {
|
3409 |
+
color: #23527c;
|
3410 |
+
text-decoration: underline;
|
3411 |
+
background-color: transparent;
|
3412 |
+
}
|
3413 |
+
.btn-link[disabled]:hover,
|
3414 |
+
fieldset[disabled] .btn-link:hover,
|
3415 |
+
.btn-link[disabled]:focus,
|
3416 |
+
fieldset[disabled] .btn-link:focus {
|
3417 |
+
color: #777;
|
3418 |
+
text-decoration: none;
|
3419 |
+
}
|
3420 |
+
.btn-lg,
|
3421 |
+
.btn-group-lg > .btn {
|
3422 |
+
font-size: 16px;
|
3423 |
+
line-height: 1.1333333;
|
3424 |
+
border-radius: 6px;
|
3425 |
+
}
|
3426 |
+
.btn-sm,
|
3427 |
+
.btn-group-sm > .btn {
|
3428 |
+
padding: 5px 10px;
|
3429 |
+
font-size: 12px;
|
3430 |
+
line-height: 1.5;
|
3431 |
+
border-radius: 3px;
|
3432 |
+
}
|
3433 |
+
.btn-xs,
|
3434 |
+
.btn-group-xs > .btn {
|
3435 |
+
padding: 2px 4px;
|
3436 |
+
font-size: 12px;
|
3437 |
+
line-height: 1.4;
|
3438 |
+
border-radius: 3px;
|
3439 |
+
}
|
3440 |
+
.btn-block {
|
3441 |
+
display: block;
|
3442 |
+
width: 100%;
|
3443 |
+
}
|
3444 |
+
.btn-block + .btn-block {
|
3445 |
+
margin-top: 5px;
|
3446 |
+
}
|
3447 |
+
input[type="submit"].btn-block,
|
3448 |
+
input[type="reset"].btn-block,
|
3449 |
+
input[type="button"].btn-block {
|
3450 |
+
width: 100%;
|
3451 |
+
}
|
3452 |
+
.fade {
|
3453 |
+
opacity: 0;
|
3454 |
+
-webkit-transition: opacity .15s linear;
|
3455 |
+
-o-transition: opacity .15s linear;
|
3456 |
+
transition: opacity .15s linear;
|
3457 |
+
}
|
3458 |
+
.fade.in {
|
3459 |
+
opacity: 1;
|
3460 |
+
}
|
3461 |
+
.caret {
|
3462 |
+
display: inline-block;
|
3463 |
+
width: 0;
|
3464 |
+
height: 0;
|
3465 |
+
margin-left: 2px;
|
3466 |
+
vertical-align: middle;
|
3467 |
+
border-top: 4px dashed;
|
3468 |
+
border-top: 4px solid \9;
|
3469 |
+
border-right: 4px solid transparent;
|
3470 |
+
border-left: 4px solid transparent;
|
3471 |
+
}
|
3472 |
+
.dropup,
|
3473 |
+
.dropdown {
|
3474 |
+
position: relative;
|
3475 |
+
}
|
3476 |
+
.dropdown-toggle:focus {
|
3477 |
+
outline: 0;
|
3478 |
+
}
|
3479 |
+
.dropdown-menu {
|
3480 |
+
position: absolute;
|
3481 |
+
top: 100%;
|
3482 |
+
left: 0;
|
3483 |
+
z-index: 1000;
|
3484 |
+
display: none;
|
3485 |
+
float: left;
|
3486 |
+
min-width: 160px;
|
3487 |
+
padding: 5px 0;
|
3488 |
+
margin: 2px 0 0;
|
3489 |
+
font-size: 14px;
|
3490 |
+
text-align: left;
|
3491 |
+
list-style: none;
|
3492 |
+
background-color: #fff;
|
3493 |
+
-webkit-background-clip: padding-box;
|
3494 |
+
background-clip: padding-box;
|
3495 |
+
border: 1px solid #ccc;
|
3496 |
+
border: 1px solid rgba(0, 0, 0, .15);
|
3497 |
+
border-radius: 4px;
|
3498 |
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3499 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3500 |
+
}
|
3501 |
+
.dropdown-menu.pull-right {
|
3502 |
+
right: 0;
|
3503 |
+
left: auto;
|
3504 |
+
}
|
3505 |
+
.dropdown-menu .divider {
|
3506 |
+
height: 1px;
|
3507 |
+
margin: 9px 0;
|
3508 |
+
overflow: hidden;
|
3509 |
+
background-color: #e5e5e5;
|
3510 |
+
}
|
3511 |
+
.dropdown-menu > li > a {
|
3512 |
+
display: block;
|
3513 |
+
padding: 3px 20px;
|
3514 |
+
clear: both;
|
3515 |
+
font-weight: normal;
|
3516 |
+
line-height: 1.42857143;
|
3517 |
+
color: #333;
|
3518 |
+
white-space: nowrap;
|
3519 |
+
}
|
3520 |
+
.dropdown-menu > li > a:hover,
|
3521 |
+
.dropdown-menu > li > a:focus {
|
3522 |
+
color: #262626;
|
3523 |
+
text-decoration: none;
|
3524 |
+
background-color: #f5f5f5;
|
3525 |
+
}
|
3526 |
+
.dropdown-menu > .active > a,
|
3527 |
+
.dropdown-menu > .active > a:hover,
|
3528 |
+
.dropdown-menu > .active > a:focus {
|
3529 |
+
color: #fff;
|
3530 |
+
text-decoration: none;
|
3531 |
+
background-color: #337ab7;
|
3532 |
+
outline: 0;
|
3533 |
+
}
|
3534 |
+
.dropdown-menu > .disabled > a,
|
3535 |
+
.dropdown-menu > .disabled > a:hover,
|
3536 |
+
.dropdown-menu > .disabled > a:focus {
|
3537 |
+
color: #777;
|
3538 |
+
}
|
3539 |
+
.dropdown-menu > .disabled > a:hover,
|
3540 |
+
.dropdown-menu > .disabled > a:focus {
|
3541 |
+
text-decoration: none;
|
3542 |
+
cursor: not-allowed;
|
3543 |
+
background-color: transparent;
|
3544 |
+
background-image: none;
|
3545 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
3546 |
+
}
|
3547 |
+
.open > .dropdown-menu {
|
3548 |
+
display: block;
|
3549 |
+
}
|
3550 |
+
.open > a {
|
3551 |
+
outline: 0;
|
3552 |
+
}
|
3553 |
+
.dropdown-menu-right {
|
3554 |
+
right: 0;
|
3555 |
+
left: auto;
|
3556 |
+
}
|
3557 |
+
.dropdown-menu-left {
|
3558 |
+
right: auto;
|
3559 |
+
left: 0;
|
3560 |
+
}
|
3561 |
+
.dropdown-header {
|
3562 |
+
display: block;
|
3563 |
+
padding: 3px 20px;
|
3564 |
+
font-size: 12px;
|
3565 |
+
line-height: 1.42857143;
|
3566 |
+
color: #777;
|
3567 |
+
white-space: nowrap;
|
3568 |
+
}
|
3569 |
+
.dropdown-backdrop {
|
3570 |
+
position: fixed;
|
3571 |
+
top: 0;
|
3572 |
+
right: 0;
|
3573 |
+
bottom: 0;
|
3574 |
+
left: 0;
|
3575 |
+
z-index: 990;
|
3576 |
+
}
|
3577 |
+
.pull-right > .dropdown-menu {
|
3578 |
+
right: 0;
|
3579 |
+
left: auto;
|
3580 |
+
}
|
3581 |
+
.dropup .caret,
|
3582 |
+
.navbar-fixed-bottom .dropdown .caret {
|
3583 |
+
content: "";
|
3584 |
+
border-top: 0;
|
3585 |
+
border-bottom: 4px dashed;
|
3586 |
+
border-bottom: 4px solid \9;
|
3587 |
+
}
|
3588 |
+
.dropup .dropdown-menu,
|
3589 |
+
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
3590 |
+
top: auto;
|
3591 |
+
bottom: 100%;
|
3592 |
+
margin-bottom: 2px;
|
3593 |
+
}
|
3594 |
+
@media (min-width: 768px) {
|
3595 |
+
.navbar-right .dropdown-menu {
|
3596 |
+
right: 0;
|
3597 |
+
left: auto;
|
3598 |
+
}
|
3599 |
+
.navbar-right .dropdown-menu-left {
|
3600 |
+
right: auto;
|
3601 |
+
left: 0;
|
3602 |
+
}
|
3603 |
+
}
|
3604 |
+
.btn-group,
|
3605 |
+
.btn-group-vertical {
|
3606 |
+
position: relative;
|
3607 |
+
display: inline-block;
|
3608 |
+
vertical-align: middle;
|
3609 |
+
}
|
3610 |
+
.btn-group > .btn,
|
3611 |
+
.btn-group-vertical > .btn {
|
3612 |
+
position: relative;
|
3613 |
+
float: left;
|
3614 |
+
}
|
3615 |
+
.btn-group > .btn:hover,
|
3616 |
+
.btn-group-vertical > .btn:hover,
|
3617 |
+
.btn-group > .btn:focus,
|
3618 |
+
.btn-group-vertical > .btn:focus,
|
3619 |
+
.btn-group > .btn:active,
|
3620 |
+
.btn-group-vertical > .btn:active,
|
3621 |
+
.btn-group > .btn.active,
|
3622 |
+
.btn-group-vertical > .btn.active {
|
3623 |
+
z-index: 2;
|
3624 |
+
}
|
3625 |
+
.btn-group .btn + .btn,
|
3626 |
+
.btn-group .btn + .btn-group,
|
3627 |
+
.btn-group .btn-group + .btn,
|
3628 |
+
.btn-group .btn-group + .btn-group {
|
3629 |
+
margin-left: -1px;
|
3630 |
+
}
|
3631 |
+
.btn-toolbar {
|
3632 |
+
margin-left: -5px;
|
3633 |
+
}
|
3634 |
+
.btn-toolbar .btn,
|
3635 |
+
.btn-toolbar .btn-group,
|
3636 |
+
.btn-toolbar .input-group {
|
3637 |
+
float: left;
|
3638 |
+
}
|
3639 |
+
.btn-toolbar > .btn,
|
3640 |
+
.btn-toolbar > .btn-group,
|
3641 |
+
.btn-toolbar > .input-group {
|
3642 |
+
margin-left: 5px;
|
3643 |
+
}
|
3644 |
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
3645 |
+
border-radius: 0;
|
3646 |
+
}
|
3647 |
+
.btn-group > .btn:first-child {
|
3648 |
+
margin-left: 0;
|
3649 |
+
}
|
3650 |
+
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
3651 |
+
border-top-right-radius: 0;
|
3652 |
+
border-bottom-right-radius: 0;
|
3653 |
+
}
|
3654 |
+
.btn-group > .btn:last-child:not(:first-child),
|
3655 |
+
.btn-group > .dropdown-toggle:not(:first-child) {
|
3656 |
+
border-top-left-radius: 0;
|
3657 |
+
border-bottom-left-radius: 0;
|
3658 |
+
}
|
3659 |
+
.btn-group > .btn-group {
|
3660 |
+
float: left;
|
3661 |
+
}
|
3662 |
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3663 |
+
border-radius: 0;
|
3664 |
+
}
|
3665 |
+
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3666 |
+
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3667 |
+
border-top-right-radius: 0;
|
3668 |
+
border-bottom-right-radius: 0;
|
3669 |
+
}
|
3670 |
+
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3671 |
+
border-top-left-radius: 0;
|
3672 |
+
border-bottom-left-radius: 0;
|
3673 |
+
}
|
3674 |
+
.btn-group .dropdown-toggle:active,
|
3675 |
+
.btn-group.open .dropdown-toggle {
|
3676 |
+
outline: 0;
|
3677 |
+
}
|
3678 |
+
.btn-group > .btn + .dropdown-toggle {
|
3679 |
+
padding-right: 8px;
|
3680 |
+
padding-left: 8px;
|
3681 |
+
}
|
3682 |
+
.btn-group > .btn-lg + .dropdown-toggle {
|
3683 |
+
padding-right: 12px;
|
3684 |
+
padding-left: 12px;
|
3685 |
+
}
|
3686 |
+
.btn-group.open .dropdown-toggle {
|
3687 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3688 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3689 |
+
}
|
3690 |
+
.btn-group.open .dropdown-toggle.btn-link {
|
3691 |
+
-webkit-box-shadow: none;
|
3692 |
+
box-shadow: none;
|
3693 |
+
}
|
3694 |
+
.btn .caret {
|
3695 |
+
margin-left: 0;
|
3696 |
+
}
|
3697 |
+
.btn-lg .caret {
|
3698 |
+
border-width: 5px 5px 0;
|
3699 |
+
border-bottom-width: 0;
|
3700 |
+
}
|
3701 |
+
.dropup .btn-lg .caret {
|
3702 |
+
border-width: 0 5px 5px;
|
3703 |
+
}
|
3704 |
+
.btn-group-vertical > .btn,
|
3705 |
+
.btn-group-vertical > .btn-group,
|
3706 |
+
.btn-group-vertical > .btn-group > .btn {
|
3707 |
+
display: block;
|
3708 |
+
float: none;
|
3709 |
+
width: 100%;
|
3710 |
+
max-width: 100%;
|
3711 |
+
}
|
3712 |
+
.btn-group-vertical > .btn-group > .btn {
|
3713 |
+
float: none;
|
3714 |
+
}
|
3715 |
+
.btn-group-vertical > .btn + .btn,
|
3716 |
+
.btn-group-vertical > .btn + .btn-group,
|
3717 |
+
.btn-group-vertical > .btn-group + .btn,
|
3718 |
+
.btn-group-vertical > .btn-group + .btn-group {
|
3719 |
+
margin-top: -1px;
|
3720 |
+
margin-left: 0;
|
3721 |
+
}
|
3722 |
+
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
3723 |
+
border-radius: 0;
|
3724 |
+
}
|
3725 |
+
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3726 |
+
border-top-left-radius: 4px;
|
3727 |
+
border-top-right-radius: 4px;
|
3728 |
+
border-bottom-right-radius: 0;
|
3729 |
+
border-bottom-left-radius: 0;
|
3730 |
+
}
|
3731 |
+
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3732 |
+
border-top-left-radius: 0;
|
3733 |
+
border-top-right-radius: 0;
|
3734 |
+
border-bottom-right-radius: 4px;
|
3735 |
+
border-bottom-left-radius: 4px;
|
3736 |
+
}
|
3737 |
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3738 |
+
border-radius: 0;
|
3739 |
+
}
|
3740 |
+
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3741 |
+
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3742 |
+
border-bottom-right-radius: 0;
|
3743 |
+
border-bottom-left-radius: 0;
|
3744 |
+
}
|
3745 |
+
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3746 |
+
border-top-left-radius: 0;
|
3747 |
+
border-top-right-radius: 0;
|
3748 |
+
}
|
3749 |
+
.btn-group-justified {
|
3750 |
+
display: table;
|
3751 |
+
width: 100%;
|
3752 |
+
table-layout: fixed;
|
3753 |
+
border-collapse: separate;
|
3754 |
+
}
|
3755 |
+
.btn-group-justified > .btn,
|
3756 |
+
.btn-group-justified > .btn-group {
|
3757 |
+
display: table-cell;
|
3758 |
+
float: none;
|
3759 |
+
width: 1%;
|
3760 |
+
}
|
3761 |
+
.btn-group-justified > .btn-group .btn {
|
3762 |
+
width: 100%;
|
3763 |
+
}
|
3764 |
+
.btn-group-justified > .btn-group .dropdown-menu {
|
3765 |
+
left: auto;
|
3766 |
+
}
|
3767 |
+
[data-toggle="buttons"] > .btn input[type="radio"],
|
3768 |
+
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
3769 |
+
[data-toggle="buttons"] > .btn input[type="checkbox"],
|
3770 |
+
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
3771 |
+
position: absolute;
|
3772 |
+
clip: rect(0, 0, 0, 0);
|
3773 |
+
pointer-events: none;
|
3774 |
+
}
|
3775 |
+
.input-group {
|
3776 |
+
position: relative;
|
3777 |
+
display: table;
|
3778 |
+
border-collapse: separate;
|
3779 |
+
direction: ltr !important;
|
3780 |
+
}
|
3781 |
+
.input-group[class*="col-"] {
|
3782 |
+
float: none;
|
3783 |
+
padding-right: 0;
|
3784 |
+
padding-left: 0;
|
3785 |
+
}
|
3786 |
+
.input-group .form-control {
|
3787 |
+
position: relative;
|
3788 |
+
z-index: 2;
|
3789 |
+
float: left;
|
3790 |
+
width: 100%;
|
3791 |
+
margin-bottom: 0;
|
3792 |
+
}
|
3793 |
+
.input-group .form-control:focus {
|
3794 |
+
z-index: 3;
|
3795 |
+
}
|
3796 |
+
.input-group-lg > .form-control,
|
3797 |
+
.input-group-lg > .input-group-addon,
|
3798 |
+
.input-group-lg > .input-group-btn > .btn {
|
3799 |
+
height: 46px;
|
3800 |
+
padding: 10px 16px;
|
3801 |
+
font-size: 18px;
|
3802 |
+
line-height: 1.3333333;
|
3803 |
+
border-radius: 6px;
|
3804 |
+
}
|
3805 |
+
select.input-group-lg > .form-control,
|
3806 |
+
select.input-group-lg > .input-group-addon,
|
3807 |
+
select.input-group-lg > .input-group-btn > .btn {
|
3808 |
+
height: 46px;
|
3809 |
+
line-height: 46px;
|
3810 |
+
}
|
3811 |
+
textarea.input-group-lg > .form-control,
|
3812 |
+
textarea.input-group-lg > .input-group-addon,
|
3813 |
+
textarea.input-group-lg > .input-group-btn > .btn,
|
3814 |
+
select[multiple].input-group-lg > .form-control,
|
3815 |
+
select[multiple].input-group-lg > .input-group-addon,
|
3816 |
+
select[multiple].input-group-lg > .input-group-btn > .btn {
|
3817 |
+
height: auto;
|
3818 |
+
}
|
3819 |
+
.input-group-sm > .form-control,
|
3820 |
+
.input-group-sm > .input-group-addon,
|
3821 |
+
.input-group-sm > .input-group-btn > .btn {
|
3822 |
+
height: 30px;
|
3823 |
+
padding: 5px 10px;
|
3824 |
+
font-size: 12px;
|
3825 |
+
line-height: 1.5;
|
3826 |
+
border-radius: 3px;
|
3827 |
+
}
|
3828 |
+
select.input-group-sm > .form-control,
|
3829 |
+
select.input-group-sm > .input-group-addon,
|
3830 |
+
select.input-group-sm > .input-group-btn > .btn {
|
3831 |
+
height: 30px;
|
3832 |
+
line-height: 30px;
|
3833 |
+
}
|
3834 |
+
textarea.input-group-sm > .form-control,
|
3835 |
+
textarea.input-group-sm > .input-group-addon,
|
3836 |
+
textarea.input-group-sm > .input-group-btn > .btn,
|
3837 |
+
select[multiple].input-group-sm > .form-control,
|
3838 |
+
select[multiple].input-group-sm > .input-group-addon,
|
3839 |
+
select[multiple].input-group-sm > .input-group-btn > .btn {
|
3840 |
+
height: auto;
|
3841 |
+
}
|
3842 |
+
.input-group-addon,
|
3843 |
+
.input-group-btn,
|
3844 |
+
.input-group .form-control {
|
3845 |
+
display: table-cell;
|
3846 |
+
}
|
3847 |
+
.input-group-addon:not(:first-child):not(:last-child),
|
3848 |
+
.input-group-btn:not(:first-child):not(:last-child),
|
3849 |
+
.input-group .form-control:not(:first-child):not(:last-child) {
|
3850 |
+
border-radius: 0;
|
3851 |
+
}
|
3852 |
+
.input-group-addon,
|
3853 |
+
.input-group-btn {
|
3854 |
+
width: 1%;
|
3855 |
+
white-space: nowrap;
|
3856 |
+
vertical-align: middle;
|
3857 |
+
}
|
3858 |
+
.input-group-addon {
|
3859 |
+
padding: 6px 12px;
|
3860 |
+
font-size: 14px;
|
3861 |
+
font-weight: normal;
|
3862 |
+
line-height: 1;
|
3863 |
+
color: #555;
|
3864 |
+
text-align: center;
|
3865 |
+
background-color: #eee;
|
3866 |
+
border: 1px solid #ccc;
|
3867 |
+
border-radius: 4px;
|
3868 |
+
}
|
3869 |
+
.input-group-addon.input-sm {
|
3870 |
+
padding: 5px 10px;
|
3871 |
+
font-size: 12px;
|
3872 |
+
border-radius: 3px;
|
3873 |
+
}
|
3874 |
+
.input-group-addon.input-lg {
|
3875 |
+
padding: 10px 16px;
|
3876 |
+
font-size: 18px;
|
3877 |
+
border-radius: 6px;
|
3878 |
+
}
|
3879 |
+
.input-group-addon input[type="radio"],
|
3880 |
+
.input-group-addon input[type="checkbox"] {
|
3881 |
+
margin-top: 0;
|
3882 |
+
}
|
3883 |
+
.input-group .form-control:first-child,
|
3884 |
+
.input-group-addon:first-child,
|
3885 |
+
.input-group-btn:first-child > .btn,
|
3886 |
+
.input-group-btn:first-child > .btn-group > .btn,
|
3887 |
+
.input-group-btn:first-child > .dropdown-toggle,
|
3888 |
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
3889 |
+
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
3890 |
+
border-top-right-radius: 0;
|
3891 |
+
border-bottom-right-radius: 0;
|
3892 |
+
}
|
3893 |
+
.input-group-addon:first-child {
|
3894 |
+
border-right: 0;
|
3895 |
+
}
|
3896 |
+
.input-group .form-control:last-child,
|
3897 |
+
.input-group-addon:last-child,
|
3898 |
+
.input-group-btn:last-child > .btn,
|
3899 |
+
.input-group-btn:last-child > .btn-group > .btn,
|
3900 |
+
.input-group-btn:last-child > .dropdown-toggle,
|
3901 |
+
.input-group-btn:first-child > .btn:not(:first-child),
|
3902 |
+
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
3903 |
+
border-top-left-radius: 0;
|
3904 |
+
border-bottom-left-radius: 0;
|
3905 |
+
}
|
3906 |
+
.input-group-addon:last-child {
|
3907 |
+
border-left: 0;
|
3908 |
+
}
|
3909 |
+
.input-group-btn {
|
3910 |
+
position: relative;
|
3911 |
+
font-size: 0;
|
3912 |
+
white-space: nowrap;
|
3913 |
+
}
|
3914 |
+
.input-group-btn > .btn {
|
3915 |
+
position: relative;
|
3916 |
+
}
|
3917 |
+
.input-group-btn > .btn + .btn {
|
3918 |
+
margin-left: -1px;
|
3919 |
+
}
|
3920 |
+
.input-group-btn > .btn:hover,
|
3921 |
+
.input-group-btn > .btn:focus,
|
3922 |
+
.input-group-btn > .btn:active {
|
3923 |
+
z-index: 2;
|
3924 |
+
}
|
3925 |
+
.input-group-btn:first-child > .btn,
|
3926 |
+
.input-group-btn:first-child > .btn-group {
|
3927 |
+
margin-right: -1px;
|
3928 |
+
}
|
3929 |
+
.input-group-btn:last-child > .btn,
|
3930 |
+
.input-group-btn:last-child > .btn-group {
|
3931 |
+
z-index: 2;
|
3932 |
+
margin-left: -1px;
|
3933 |
+
}
|
3934 |
+
.nav {
|
3935 |
+
padding-left: 0;
|
3936 |
+
margin-bottom: 0;
|
3937 |
+
list-style: none;
|
3938 |
+
}
|
3939 |
+
.nav > li {
|
3940 |
+
position: relative;
|
3941 |
+
display: block;
|
3942 |
+
}
|
3943 |
+
.nav > li > a {
|
3944 |
+
position: relative;
|
3945 |
+
display: block;
|
3946 |
+
padding: 10px 15px;
|
3947 |
+
}
|
3948 |
+
.nav > li > a:hover,
|
3949 |
+
.nav > li > a:focus {
|
3950 |
+
text-decoration: none;
|
3951 |
+
background-color: #eee;
|
3952 |
+
}
|
3953 |
+
.nav > li.disabled > a {
|
3954 |
+
color: #777;
|
3955 |
+
}
|
3956 |
+
.nav > li.disabled > a:hover,
|
3957 |
+
.nav > li.disabled > a:focus {
|
3958 |
+
color: #777;
|
3959 |
+
text-decoration: none;
|
3960 |
+
cursor: not-allowed;
|
3961 |
+
background-color: transparent;
|
3962 |
+
}
|
3963 |
+
.nav .open > a,
|
3964 |
+
.nav .open > a:hover,
|
3965 |
+
.nav .open > a:focus {
|
3966 |
+
background-color: #eee;
|
3967 |
+
border-color: #337ab7;
|
3968 |
+
}
|
3969 |
+
.nav .nav-divider {
|
3970 |
+
height: 1px;
|
3971 |
+
margin: 9px 0;
|
3972 |
+
overflow: hidden;
|
3973 |
+
background-color: #e5e5e5;
|
3974 |
+
}
|
3975 |
+
.nav > li > a > img {
|
3976 |
+
max-width: none;
|
3977 |
+
}
|
3978 |
+
.nav-tabs {
|
3979 |
+
border-bottom: 1px solid #ddd;
|
3980 |
+
}
|
3981 |
+
.nav-tabs > li {
|
3982 |
+
float: left;
|
3983 |
+
margin-bottom: -1px;
|
3984 |
+
}
|
3985 |
+
.nav-tabs > li > a {
|
3986 |
+
margin-right: 2px;
|
3987 |
+
line-height: 1.42857143;
|
3988 |
+
border: 1px solid transparent;
|
3989 |
+
border-radius: 4px 4px 0 0;
|
3990 |
+
}
|
3991 |
+
.nav-tabs > li > a:hover {
|
3992 |
+
border-color: #eee #eee #ddd;
|
3993 |
+
}
|
3994 |
+
.nav-tabs > li.active > a,
|
3995 |
+
.nav-tabs > li.active > a:hover,
|
3996 |
+
.nav-tabs > li.active > a:focus {
|
3997 |
+
color: #555;
|
3998 |
+
cursor: default;
|
3999 |
+
background-color: #fff;
|
4000 |
+
border: 1px solid #ddd;
|
4001 |
+
border-bottom-color: transparent;
|
4002 |
+
}
|
4003 |
+
.nav-tabs.nav-justified {
|
4004 |
+
width: 100%;
|
4005 |
+
border-bottom: 0;
|
4006 |
+
}
|
4007 |
+
.nav-tabs.nav-justified > li {
|
4008 |
+
float: none;
|
4009 |
+
}
|
4010 |
+
.nav-tabs.nav-justified > li > a {
|
4011 |
+
margin-bottom: 5px;
|
4012 |
+
text-align: center;
|
4013 |
+
}
|
4014 |
+
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
4015 |
+
top: auto;
|
4016 |
+
left: auto;
|
4017 |
+
}
|
4018 |
+
@media (min-width: 768px) {
|
4019 |
+
.nav-tabs.nav-justified > li {
|
4020 |
+
display: table-cell;
|
4021 |
+
width: 1%;
|
4022 |
+
}
|
4023 |
+
.nav-tabs.nav-justified > li > a {
|
4024 |
+
margin-bottom: 0;
|
4025 |
+
}
|
4026 |
+
}
|
4027 |
+
.nav-tabs.nav-justified > li > a {
|
4028 |
+
margin-right: 0;
|
4029 |
+
border-radius: 4px;
|
4030 |
+
}
|
4031 |
+
.nav-tabs.nav-justified > .active > a,
|
4032 |
+
.nav-tabs.nav-justified > .active > a:hover,
|
4033 |
+
.nav-tabs.nav-justified > .active > a:focus {
|
4034 |
+
border: 1px solid #ddd;
|
4035 |
+
}
|
4036 |
+
@media (min-width: 768px) {
|
4037 |
+
.nav-tabs.nav-justified > li > a {
|
4038 |
+
border-bottom: 1px solid #ddd;
|
4039 |
+
border-radius: 4px 4px 0 0;
|
4040 |
+
}
|
4041 |
+
.nav-tabs.nav-justified > .active > a,
|
4042 |
+
.nav-tabs.nav-justified > .active > a:hover,
|
4043 |
+
.nav-tabs.nav-justified > .active > a:focus {
|
4044 |
+
border-bottom-color: #fff;
|
4045 |
+
}
|
4046 |
+
}
|
4047 |
+
.nav-pills > li {
|
4048 |
+
float: left;
|
4049 |
+
}
|
4050 |
+
.nav-pills > li > a {
|
4051 |
+
border-radius: 4px;
|
4052 |
+
}
|
4053 |
+
.nav-pills > li + li {
|
4054 |
+
margin-left: 2px;
|
4055 |
+
}
|
4056 |
+
.nav-pills > li.active > a,
|
4057 |
+
.nav-pills > li.active > a:hover,
|
4058 |
+
.nav-pills > li.active > a:focus {
|
4059 |
+
color: #fff;
|
4060 |
+
background-color: #337ab7;
|
4061 |
+
}
|
4062 |
+
.nav-stacked > li {
|
4063 |
+
float: none;
|
4064 |
+
}
|
4065 |
+
.nav-stacked > li + li {
|
4066 |
+
margin-top: 2px;
|
4067 |
+
margin-left: 0;
|
4068 |
+
}
|
4069 |
+
.nav-justified {
|
4070 |
+
width: 100%;
|
4071 |
+
}
|
4072 |
+
.nav-justified > li {
|
4073 |
+
float: none;
|
4074 |
+
}
|
4075 |
+
.nav-justified > li > a {
|
4076 |
+
margin-bottom: 5px;
|
4077 |
+
text-align: center;
|
4078 |
+
}
|
4079 |
+
.nav-justified > .dropdown .dropdown-menu {
|
4080 |
+
top: auto;
|
4081 |
+
left: auto;
|
4082 |
+
}
|
4083 |
+
@media (min-width: 768px) {
|
4084 |
+
.nav-justified > li {
|
4085 |
+
display: table-cell;
|
4086 |
+
width: 1%;
|
4087 |
+
}
|
4088 |
+
.nav-justified > li > a {
|
4089 |
+
margin-bottom: 0;
|
4090 |
+
}
|
4091 |
+
}
|
4092 |
+
.nav-tabs-justified {
|
4093 |
+
border-bottom: 0;
|
4094 |
+
}
|
4095 |
+
.nav-tabs-justified > li > a {
|
4096 |
+
margin-right: 0;
|
4097 |
+
border-radius: 4px;
|
4098 |
+
}
|
4099 |
+
.nav-tabs-justified > .active > a,
|
4100 |
+
.nav-tabs-justified > .active > a:hover,
|
4101 |
+
.nav-tabs-justified > .active > a:focus {
|
4102 |
+
border: 1px solid #ddd;
|
4103 |
+
}
|
4104 |
+
@media (min-width: 768px) {
|
4105 |
+
.nav-tabs-justified > li > a {
|
4106 |
+
border-bottom: 1px solid #ddd;
|
4107 |
+
border-radius: 4px 4px 0 0;
|
4108 |
+
}
|
4109 |
+
.nav-tabs-justified > .active > a,
|
4110 |
+
.nav-tabs-justified > .active > a:hover,
|
4111 |
+
.nav-tabs-justified > .active > a:focus {
|
4112 |
+
border-bottom-color: #fff;
|
4113 |
+
}
|
4114 |
+
}
|
4115 |
+
.tab-content > .tab-pane {
|
4116 |
+
display: none;
|
4117 |
+
}
|
4118 |
+
.tab-content > .active {
|
4119 |
+
display: block;
|
4120 |
+
}
|
4121 |
+
.nav-tabs .dropdown-menu {
|
4122 |
+
margin-top: -1px;
|
4123 |
+
border-top-left-radius: 0;
|
4124 |
+
border-top-right-radius: 0;
|
4125 |
+
}
|
4126 |
+
.navbar {
|
4127 |
+
position: relative;
|
4128 |
+
min-height: 50px;
|
4129 |
+
margin-bottom: 20px;
|
4130 |
+
border: 1px solid transparent;
|
4131 |
+
}
|
4132 |
+
@media (min-width: 768px) {
|
4133 |
+
.navbar {
|
4134 |
+
border-radius: 4px;
|
4135 |
+
}
|
4136 |
+
}
|
4137 |
+
@media (min-width: 768px) {
|
4138 |
+
.navbar-header {
|
4139 |
+
float: left;
|
4140 |
+
}
|
4141 |
+
}
|
4142 |
+
.navbar-collapse {
|
4143 |
+
padding-right: 15px;
|
4144 |
+
padding-left: 15px;
|
4145 |
+
overflow-x: visible;
|
4146 |
+
-webkit-overflow-scrolling: touch;
|
4147 |
+
border-top: 1px solid transparent;
|
4148 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4149 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4150 |
+
}
|
4151 |
+
.navbar-collapse.in {
|
4152 |
+
overflow-y: auto;
|
4153 |
+
}
|
4154 |
+
@media (min-width: 768px) {
|
4155 |
+
.navbar-collapse {
|
4156 |
+
width: auto;
|
4157 |
+
border-top: 0;
|
4158 |
+
-webkit-box-shadow: none;
|
4159 |
+
box-shadow: none;
|
4160 |
+
}
|
4161 |
+
.navbar-collapse.collapse {
|
4162 |
+
display: block !important;
|
4163 |
+
height: auto !important;
|
4164 |
+
padding-bottom: 0;
|
4165 |
+
overflow: visible !important;
|
4166 |
+
}
|
4167 |
+
.navbar-collapse.in {
|
4168 |
+
overflow-y: visible;
|
4169 |
+
}
|
4170 |
+
.navbar-fixed-top .navbar-collapse,
|
4171 |
+
.navbar-static-top .navbar-collapse,
|
4172 |
+
.navbar-fixed-bottom .navbar-collapse {
|
4173 |
+
padding-right: 0;
|
4174 |
+
padding-left: 0;
|
4175 |
+
}
|
4176 |
+
}
|
4177 |
+
.navbar-fixed-top .navbar-collapse,
|
4178 |
+
.navbar-fixed-bottom .navbar-collapse {
|
4179 |
+
max-height: 340px;
|
4180 |
+
}
|
4181 |
+
@media (max-device-width: 480px) and (orientation: landscape) {
|
4182 |
+
.navbar-fixed-top .navbar-collapse,
|
4183 |
+
.navbar-fixed-bottom .navbar-collapse {
|
4184 |
+
max-height: 200px;
|
4185 |
+
}
|
4186 |
+
}
|
4187 |
+
.container > .navbar-header,
|
4188 |
+
.container-fluid > .navbar-header,
|
4189 |
+
.container > .navbar-collapse,
|
4190 |
+
.container-fluid > .navbar-collapse {
|
4191 |
+
margin-right: -15px;
|
4192 |
+
margin-left: -15px;
|
4193 |
+
}
|
4194 |
+
@media (min-width: 768px) {
|
4195 |
+
.container > .navbar-header,
|
4196 |
+
.container-fluid > .navbar-header,
|
4197 |
+
.container > .navbar-collapse,
|
4198 |
+
.container-fluid > .navbar-collapse {
|
4199 |
+
margin-right: 0;
|
4200 |
+
margin-left: 0;
|
4201 |
+
}
|
4202 |
+
}
|
4203 |
+
.navbar-static-top {
|
4204 |
+
z-index: 1000;
|
4205 |
+
border-width: 0 0 1px;
|
4206 |
+
}
|
4207 |
+
@media (min-width: 768px) {
|
4208 |
+
.navbar-static-top {
|
4209 |
+
border-radius: 0;
|
4210 |
+
}
|
4211 |
+
}
|
4212 |
+
.navbar-fixed-top,
|
4213 |
+
.navbar-fixed-bottom {
|
4214 |
+
position: fixed;
|
4215 |
+
right: 0;
|
4216 |
+
left: 0;
|
4217 |
+
z-index: 1030;
|
4218 |
+
}
|
4219 |
+
@media (min-width: 768px) {
|
4220 |
+
.navbar-fixed-top,
|
4221 |
+
.navbar-fixed-bottom {
|
4222 |
+
border-radius: 0;
|
4223 |
+
}
|
4224 |
+
}
|
4225 |
+
.navbar-fixed-top {
|
4226 |
+
top: 0;
|
4227 |
+
border-width: 0 0 1px;
|
4228 |
+
}
|
4229 |
+
.navbar-fixed-bottom {
|
4230 |
+
bottom: 0;
|
4231 |
+
margin-bottom: 0;
|
4232 |
+
border-width: 1px 0 0;
|
4233 |
+
}
|
4234 |
+
.navbar-brand {
|
4235 |
+
float: left;
|
4236 |
+
height: 50px;
|
4237 |
+
padding: 15px 15px;
|
4238 |
+
font-size: 18px;
|
4239 |
+
line-height: 20px;
|
4240 |
+
}
|
4241 |
+
.navbar-brand:hover,
|
4242 |
+
.navbar-brand:focus {
|
4243 |
+
text-decoration: none;
|
4244 |
+
}
|
4245 |
+
.navbar-brand > img {
|
4246 |
+
display: block;
|
4247 |
+
}
|
4248 |
+
@media (min-width: 768px) {
|
4249 |
+
.navbar > .container .navbar-brand,
|
4250 |
+
.navbar > .container-fluid .navbar-brand {
|
4251 |
+
margin-left: -15px;
|
4252 |
+
}
|
4253 |
+
}
|
4254 |
+
.navbar-toggle {
|
4255 |
+
position: relative;
|
4256 |
+
float: right;
|
4257 |
+
padding: 9px 10px;
|
4258 |
+
margin-top: 8px;
|
4259 |
+
margin-right: 15px;
|
4260 |
+
margin-bottom: 8px;
|
4261 |
+
background-color: transparent;
|
4262 |
+
background-image: none;
|
4263 |
+
border: 1px solid transparent;
|
4264 |
+
border-radius: 4px;
|
4265 |
+
}
|
4266 |
+
.navbar-toggle:focus {
|
4267 |
+
outline: 0;
|
4268 |
+
}
|
4269 |
+
.navbar-toggle .icon-bar {
|
4270 |
+
display: block;
|
4271 |
+
width: 22px;
|
4272 |
+
height: 2px;
|
4273 |
+
border-radius: 1px;
|
4274 |
+
}
|
4275 |
+
.navbar-toggle .icon-bar + .icon-bar {
|
4276 |
+
margin-top: 4px;
|
4277 |
+
}
|
4278 |
+
@media (min-width: 768px) {
|
4279 |
+
.navbar-toggle {
|
4280 |
+
display: none;
|
4281 |
+
}
|
4282 |
+
}
|
4283 |
+
.navbar-nav {
|
4284 |
+
margin: 7.5px -15px;
|
4285 |
+
}
|
4286 |
+
.navbar-nav > li > a {
|
4287 |
+
padding-top: 10px;
|
4288 |
+
padding-bottom: 10px;
|
4289 |
+
line-height: 20px;
|
4290 |
+
}
|
4291 |
+
@media (max-width: 767px) {
|
4292 |
+
.navbar-nav .open .dropdown-menu {
|
4293 |
+
position: static;
|
4294 |
+
float: none;
|
4295 |
+
width: auto;
|
4296 |
+
margin-top: 0;
|
4297 |
+
background-color: transparent;
|
4298 |
+
border: 0;
|
4299 |
+
-webkit-box-shadow: none;
|
4300 |
+
box-shadow: none;
|
4301 |
+
}
|
4302 |
+
.navbar-nav .open .dropdown-menu > li > a,
|
4303 |
+
.navbar-nav .open .dropdown-menu .dropdown-header {
|
4304 |
+
padding: 5px 15px 5px 25px;
|
4305 |
+
}
|
4306 |
+
.navbar-nav .open .dropdown-menu > li > a {
|
4307 |
+
line-height: 20px;
|
4308 |
+
}
|
4309 |
+
.navbar-nav .open .dropdown-menu > li > a:hover,
|
4310 |
+
.navbar-nav .open .dropdown-menu > li > a:focus {
|
4311 |
+
background-image: none;
|
4312 |
+
}
|
4313 |
+
}
|
4314 |
+
@media (min-width: 768px) {
|
4315 |
+
.navbar-nav {
|
4316 |
+
float: left;
|
4317 |
+
margin: 0;
|
4318 |
+
}
|
4319 |
+
.navbar-nav > li {
|
4320 |
+
float: left;
|
4321 |
+
}
|
4322 |
+
.navbar-nav > li > a {
|
4323 |
+
padding-top: 15px;
|
4324 |
+
padding-bottom: 15px;
|
4325 |
+
}
|
4326 |
+
}
|
4327 |
+
.navbar-form {
|
4328 |
+
padding: 10px 15px;
|
4329 |
+
margin-top: 8px;
|
4330 |
+
margin-right: -15px;
|
4331 |
+
margin-bottom: 8px;
|
4332 |
+
margin-left: -15px;
|
4333 |
+
border-top: 1px solid transparent;
|
4334 |
+
border-bottom: 1px solid transparent;
|
4335 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4336 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4337 |
+
}
|
4338 |
+
@media (min-width: 768px) {
|
4339 |
+
.navbar-form .form-group {
|
4340 |
+
display: inline-block;
|
4341 |
+
margin-bottom: 0;
|
4342 |
+
vertical-align: middle;
|
4343 |
+
}
|
4344 |
+
.navbar-form .form-control {
|
4345 |
+
display: inline-block;
|
4346 |
+
width: auto;
|
4347 |
+
vertical-align: middle;
|
4348 |
+
}
|
4349 |
+
.navbar-form .form-control-static {
|
4350 |
+
display: inline-block;
|
4351 |
+
}
|
4352 |
+
.navbar-form .input-group {
|
4353 |
+
display: inline-table;
|
4354 |
+
vertical-align: middle;
|
4355 |
+
}
|
4356 |
+
.navbar-form .input-group .input-group-addon,
|
4357 |
+
.navbar-form .input-group .input-group-btn,
|
4358 |
+
.navbar-form .input-group .form-control {
|
4359 |
+
width: auto;
|
4360 |
+
}
|
4361 |
+
.navbar-form .input-group > .form-control {
|
4362 |
+
width: 100%;
|
4363 |
+
}
|
4364 |
+
.navbar-form .control-label {
|
4365 |
+
margin-bottom: 0;
|
4366 |
+
vertical-align: middle;
|
4367 |
+
}
|
4368 |
+
.navbar-form .radio,
|
4369 |
+
.navbar-form .checkbox {
|
4370 |
+
display: inline-block;
|
4371 |
+
margin-top: 0;
|
4372 |
+
margin-bottom: 0;
|
4373 |
+
vertical-align: middle;
|
4374 |
+
}
|
4375 |
+
.navbar-form .radio label,
|
4376 |
+
.navbar-form .checkbox label {
|
4377 |
+
padding-left: 0;
|
4378 |
+
}
|
4379 |
+
.navbar-form .radio input[type="radio"],
|
4380 |
+
.navbar-form .checkbox input[type="checkbox"] {
|
4381 |
+
position: relative;
|
4382 |
+
margin-left: 0;
|
4383 |
+
}
|
4384 |
+
.navbar-form .has-feedback .form-control-feedback {
|
4385 |
+
top: 0;
|
4386 |
+
}
|
4387 |
+
}
|
4388 |
+
@media (max-width: 767px) {
|
4389 |
+
.navbar-form .form-group {
|
4390 |
+
margin-bottom: 5px;
|
4391 |
+
}
|
4392 |
+
.navbar-form .form-group:last-child {
|
4393 |
+
margin-bottom: 0;
|
4394 |
+
}
|
4395 |
+
}
|
4396 |
+
@media (min-width: 768px) {
|
4397 |
+
.navbar-form {
|
4398 |
+
width: auto;
|
4399 |
+
padding-top: 0;
|
4400 |
+
padding-bottom: 0;
|
4401 |
+
margin-right: 0;
|
4402 |
+
margin-left: 0;
|
4403 |
+
border: 0;
|
4404 |
+
-webkit-box-shadow: none;
|
4405 |
+
box-shadow: none;
|
4406 |
+
}
|
4407 |
+
}
|
4408 |
+
.navbar-nav > li > .dropdown-menu {
|
4409 |
+
margin-top: 0;
|
4410 |
+
border-top-left-radius: 0;
|
4411 |
+
border-top-right-radius: 0;
|
4412 |
+
}
|
4413 |
+
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4414 |
+
margin-bottom: 0;
|
4415 |
+
border-top-left-radius: 4px;
|
4416 |
+
border-top-right-radius: 4px;
|
4417 |
+
border-bottom-right-radius: 0;
|
4418 |
+
border-bottom-left-radius: 0;
|
4419 |
+
}
|
4420 |
+
.navbar-btn {
|
4421 |
+
margin-top: 8px;
|
4422 |
+
margin-bottom: 8px;
|
4423 |
+
}
|
4424 |
+
.navbar-btn.btn-sm {
|
4425 |
+
margin-top: 10px;
|
4426 |
+
margin-bottom: 10px;
|
4427 |
+
}
|
4428 |
+
.navbar-btn.btn-xs {
|
4429 |
+
margin-top: 14px;
|
4430 |
+
margin-bottom: 14px;
|
4431 |
+
}
|
4432 |
+
.navbar-text {
|
4433 |
+
margin-top: 15px;
|
4434 |
+
margin-bottom: 15px;
|
4435 |
+
}
|
4436 |
+
@media (min-width: 768px) {
|
4437 |
+
.navbar-text {
|
4438 |
+
float: left;
|
4439 |
+
margin-right: 15px;
|
4440 |
+
margin-left: 15px;
|
4441 |
+
}
|
4442 |
+
}
|
4443 |
+
@media (min-width: 768px) {
|
4444 |
+
.navbar-left {
|
4445 |
+
float: left !important;
|
4446 |
+
}
|
4447 |
+
.navbar-right {
|
4448 |
+
float: right !important;
|
4449 |
+
margin-right: -15px;
|
4450 |
+
}
|
4451 |
+
.navbar-right ~ .navbar-right {
|
4452 |
+
margin-right: 0;
|
4453 |
+
}
|
4454 |
+
}
|
4455 |
+
.navbar-default {
|
4456 |
+
background-color: #f8f8f8;
|
4457 |
+
border-color: #e7e7e7;
|
4458 |
+
}
|
4459 |
+
.navbar-default .navbar-brand {
|
4460 |
+
color: #777;
|
4461 |
+
}
|
4462 |
+
.navbar-default .navbar-brand:hover,
|
4463 |
+
.navbar-default .navbar-brand:focus {
|
4464 |
+
color: #5e5e5e;
|
4465 |
+
background-color: transparent;
|
4466 |
+
}
|
4467 |
+
.navbar-default .navbar-text {
|
4468 |
+
color: #777;
|
4469 |
+
}
|
4470 |
+
.navbar-default .navbar-nav > li > a {
|
4471 |
+
color: #777;
|
4472 |
+
}
|
4473 |
+
.navbar-default .navbar-nav > li > a:hover,
|
4474 |
+
.navbar-default .navbar-nav > li > a:focus {
|
4475 |
+
color: #333;
|
4476 |
+
background-color: transparent;
|
4477 |
+
}
|
4478 |
+
.navbar-default .navbar-nav > .active > a,
|
4479 |
+
.navbar-default .navbar-nav > .active > a:hover,
|
4480 |
+
.navbar-default .navbar-nav > .active > a:focus {
|
4481 |
+
color: #555;
|
4482 |
+
background-color: #e7e7e7;
|
4483 |
+
}
|
4484 |
+
.navbar-default .navbar-nav > .disabled > a,
|
4485 |
+
.navbar-default .navbar-nav > .disabled > a:hover,
|
4486 |
+
.navbar-default .navbar-nav > .disabled > a:focus {
|
4487 |
+
color: #ccc;
|
4488 |
+
background-color: transparent;
|
4489 |
+
}
|
4490 |
+
.navbar-default .navbar-toggle {
|
4491 |
+
border-color: #ddd;
|
4492 |
+
}
|
4493 |
+
.navbar-default .navbar-toggle:hover,
|
4494 |
+
.navbar-default .navbar-toggle:focus {
|
4495 |
+
background-color: #ddd;
|
4496 |
+
}
|
4497 |
+
.navbar-default .navbar-toggle .icon-bar {
|
4498 |
+
background-color: #888;
|
4499 |
+
}
|
4500 |
+
.navbar-default .navbar-collapse,
|
4501 |
+
.navbar-default .navbar-form {
|
4502 |
+
border-color: #e7e7e7;
|
4503 |
+
}
|
4504 |
+
.navbar-default .navbar-nav > .open > a,
|
4505 |
+
.navbar-default .navbar-nav > .open > a:hover,
|
4506 |
+
.navbar-default .navbar-nav > .open > a:focus {
|
4507 |
+
color: #555;
|
4508 |
+
background-color: #e7e7e7;
|
4509 |
+
}
|
4510 |
+
@media (max-width: 767px) {
|
4511 |
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
4512 |
+
color: #777;
|
4513 |
+
}
|
4514 |
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
4515 |
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
4516 |
+
color: #333;
|
4517 |
+
background-color: transparent;
|
4518 |
+
}
|
4519 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
4520 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4521 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4522 |
+
color: #555;
|
4523 |
+
background-color: #e7e7e7;
|
4524 |
+
}
|
4525 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
4526 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4527 |
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4528 |
+
color: #ccc;
|
4529 |
+
background-color: transparent;
|
4530 |
+
}
|
4531 |
+
}
|
4532 |
+
.navbar-default .navbar-link {
|
4533 |
+
color: #777;
|
4534 |
+
}
|
4535 |
+
.navbar-default .navbar-link:hover {
|
4536 |
+
color: #333;
|
4537 |
+
}
|
4538 |
+
.navbar-default .btn-link {
|
4539 |
+
color: #777;
|
4540 |
+
}
|
4541 |
+
.navbar-default .btn-link:hover,
|
4542 |
+
.navbar-default .btn-link:focus {
|
4543 |
+
color: #333;
|
4544 |
+
}
|
4545 |
+
.navbar-default .btn-link[disabled]:hover,
|
4546 |
+
fieldset[disabled] .navbar-default .btn-link:hover,
|
4547 |
+
.navbar-default .btn-link[disabled]:focus,
|
4548 |
+
fieldset[disabled] .navbar-default .btn-link:focus {
|
4549 |
+
color: #ccc;
|
4550 |
+
}
|
4551 |
+
.navbar-inverse {
|
4552 |
+
background-color: #222;
|
4553 |
+
border-color: #080808;
|
4554 |
+
}
|
4555 |
+
.navbar-inverse .navbar-brand {
|
4556 |
+
color: #9d9d9d;
|
4557 |
+
}
|
4558 |
+
.navbar-inverse .navbar-brand:hover,
|
4559 |
+
.navbar-inverse .navbar-brand:focus {
|
4560 |
+
color: #fff;
|
4561 |
+
background-color: transparent;
|
4562 |
+
}
|
4563 |
+
.navbar-inverse .navbar-text {
|
4564 |
+
color: #9d9d9d;
|
4565 |
+
}
|
4566 |
+
.navbar-inverse .navbar-nav > li > a {
|
4567 |
+
color: #9d9d9d;
|
4568 |
+
}
|
4569 |
+
.navbar-inverse .navbar-nav > li > a:hover,
|
4570 |
+
.navbar-inverse .navbar-nav > li > a:focus {
|
4571 |
+
color: #fff;
|
4572 |
+
background-color: transparent;
|
4573 |
+
}
|
4574 |
+
.navbar-inverse .navbar-nav > .active > a,
|
4575 |
+
.navbar-inverse .navbar-nav > .active > a:hover,
|
4576 |
+
.navbar-inverse .navbar-nav > .active > a:focus {
|
4577 |
+
color: #fff;
|
4578 |
+
background-color: #080808;
|
4579 |
+
}
|
4580 |
+
.navbar-inverse .navbar-nav > .disabled > a,
|
4581 |
+
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
4582 |
+
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
4583 |
+
color: #444;
|
4584 |
+
background-color: transparent;
|
4585 |
+
}
|
4586 |
+
.navbar-inverse .navbar-toggle {
|
4587 |
+
border-color: #333;
|
4588 |
+
}
|
4589 |
+
.navbar-inverse .navbar-toggle:hover,
|
4590 |
+
.navbar-inverse .navbar-toggle:focus {
|
4591 |
+
background-color: #333;
|
4592 |
+
}
|
4593 |
+
.navbar-inverse .navbar-toggle .icon-bar {
|
4594 |
+
background-color: #fff;
|
4595 |
+
}
|
4596 |
+
.navbar-inverse .navbar-collapse,
|
4597 |
+
.navbar-inverse .navbar-form {
|
4598 |
+
border-color: #101010;
|
4599 |
+
}
|
4600 |
+
.navbar-inverse .navbar-nav > .open > a,
|
4601 |
+
.navbar-inverse .navbar-nav > .open > a:hover,
|
4602 |
+
.navbar-inverse .navbar-nav > .open > a:focus {
|
4603 |
+
color: #fff;
|
4604 |
+
background-color: #080808;
|
4605 |
+
}
|
4606 |
+
@media (max-width: 767px) {
|
4607 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
4608 |
+
border-color: #080808;
|
4609 |
+
}
|
4610 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
4611 |
+
background-color: #080808;
|
4612 |
+
}
|
4613 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
4614 |
+
color: #9d9d9d;
|
4615 |
+
}
|
4616 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
4617 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
4618 |
+
color: #fff;
|
4619 |
+
background-color: transparent;
|
4620 |
+
}
|
4621 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
4622 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4623 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4624 |
+
color: #fff;
|
4625 |
+
background-color: #080808;
|
4626 |
+
}
|
4627 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
4628 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4629 |
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4630 |
+
color: #444;
|
4631 |
+
background-color: transparent;
|
4632 |
+
}
|
4633 |
+
}
|
4634 |
+
.navbar-inverse .navbar-link {
|
4635 |
+
color: #9d9d9d;
|
4636 |
+
}
|
4637 |
+
.navbar-inverse .navbar-link:hover {
|
4638 |
+
color: #fff;
|
4639 |
+
}
|
4640 |
+
.navbar-inverse .btn-link {
|
4641 |
+
color: #9d9d9d;
|
4642 |
+
}
|
4643 |
+
.navbar-inverse .btn-link:hover,
|
4644 |
+
.navbar-inverse .btn-link:focus {
|
4645 |
+
color: #fff;
|
4646 |
+
}
|
4647 |
+
.navbar-inverse .btn-link[disabled]:hover,
|
4648 |
+
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
4649 |
+
.navbar-inverse .btn-link[disabled]:focus,
|
4650 |
+
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
4651 |
+
color: #444;
|
4652 |
+
}
|
4653 |
+
.breadcrumb {
|
4654 |
+
padding: 8px 15px;
|
4655 |
+
margin-bottom: 20px;
|
4656 |
+
list-style: none;
|
4657 |
+
background-color: #f5f5f5;
|
4658 |
+
border-radius: 4px;
|
4659 |
+
}
|
4660 |
+
.breadcrumb > li {
|
4661 |
+
display: inline-block;
|
4662 |
+
}
|
4663 |
+
.breadcrumb > li + li:before {
|
4664 |
+
padding: 0 5px;
|
4665 |
+
color: #ccc;
|
4666 |
+
content: "/\00a0";
|
4667 |
+
}
|
4668 |
+
.breadcrumb > .active {
|
4669 |
+
color: #777;
|
4670 |
+
}
|
4671 |
+
.pagination {
|
4672 |
+
display: inline-block;
|
4673 |
+
padding-left: 0;
|
4674 |
+
margin: 20px 0;
|
4675 |
+
border-radius: 4px;
|
4676 |
+
}
|
4677 |
+
.pagination > li {
|
4678 |
+
display: inline;
|
4679 |
+
}
|
4680 |
+
.pagination > li > a,
|
4681 |
+
.pagination > li > span {
|
4682 |
+
position: relative;
|
4683 |
+
float: left;
|
4684 |
+
padding: 6px 12px;
|
4685 |
+
margin-left: -1px;
|
4686 |
+
line-height: 1.42857143;
|
4687 |
+
color: #337ab7;
|
4688 |
+
text-decoration: none;
|
4689 |
+
background-color: #fff;
|
4690 |
+
border: 1px solid #ddd;
|
4691 |
+
}
|
4692 |
+
.pagination > li:first-child > a,
|
4693 |
+
.pagination > li:first-child > span {
|
4694 |
+
margin-left: 0;
|
4695 |
+
border-top-left-radius: 4px;
|
4696 |
+
border-bottom-left-radius: 4px;
|
4697 |
+
}
|
4698 |
+
.pagination > li:last-child > a,
|
4699 |
+
.pagination > li:last-child > span {
|
4700 |
+
border-top-right-radius: 4px;
|
4701 |
+
border-bottom-right-radius: 4px;
|
4702 |
+
}
|
4703 |
+
.pagination > li > a:hover,
|
4704 |
+
.pagination > li > span:hover,
|
4705 |
+
.pagination > li > a:focus,
|
4706 |
+
.pagination > li > span:focus {
|
4707 |
+
z-index: 2;
|
4708 |
+
color: #23527c;
|
4709 |
+
background-color: #eee;
|
4710 |
+
border-color: #ddd;
|
4711 |
+
}
|
4712 |
+
.pagination > .active > a,
|
4713 |
+
.pagination > .active > span,
|
4714 |
+
.pagination > .active > a:hover,
|
4715 |
+
.pagination > .active > span:hover,
|
4716 |
+
.pagination > .active > a:focus,
|
4717 |
+
.pagination > .active > span:focus {
|
4718 |
+
z-index: 3;
|
4719 |
+
color: #fff;
|
4720 |
+
cursor: default;
|
4721 |
+
background-color: #337ab7;
|
4722 |
+
border-color: #337ab7;
|
4723 |
+
}
|
4724 |
+
.pagination > .disabled > span,
|
4725 |
+
.pagination > .disabled > span:hover,
|
4726 |
+
.pagination > .disabled > span:focus,
|
4727 |
+
.pagination > .disabled > a,
|
4728 |
+
.pagination > .disabled > a:hover,
|
4729 |
+
.pagination > .disabled > a:focus {
|
4730 |
+
color: #777;
|
4731 |
+
cursor: not-allowed;
|
4732 |
+
background-color: #fff;
|
4733 |
+
border-color: #ddd;
|
4734 |
+
}
|
4735 |
+
.pagination-lg > li > a,
|
4736 |
+
.pagination-lg > li > span {
|
4737 |
+
padding: 10px 16px;
|
4738 |
+
font-size: 18px;
|
4739 |
+
line-height: 1.3333333;
|
4740 |
+
}
|
4741 |
+
.pagination-lg > li:first-child > a,
|
4742 |
+
.pagination-lg > li:first-child > span {
|
4743 |
+
border-top-left-radius: 6px;
|
4744 |
+
border-bottom-left-radius: 6px;
|
4745 |
+
}
|
4746 |
+
.pagination-lg > li:last-child > a,
|
4747 |
+
.pagination-lg > li:last-child > span {
|
4748 |
+
border-top-right-radius: 6px;
|
4749 |
+
border-bottom-right-radius: 6px;
|
4750 |
+
}
|
4751 |
+
.pagination-sm > li > a,
|
4752 |
+
.pagination-sm > li > span {
|
4753 |
+
padding: 5px 10px;
|
4754 |
+
font-size: 12px;
|
4755 |
+
line-height: 1.5;
|
4756 |
+
}
|
4757 |
+
.pagination-sm > li:first-child > a,
|
4758 |
+
.pagination-sm > li:first-child > span {
|
4759 |
+
border-top-left-radius: 3px;
|
4760 |
+
border-bottom-left-radius: 3px;
|
4761 |
+
}
|
4762 |
+
.pagination-sm > li:last-child > a,
|
4763 |
+
.pagination-sm > li:last-child > span {
|
4764 |
+
border-top-right-radius: 3px;
|
4765 |
+
border-bottom-right-radius: 3px;
|
4766 |
+
}
|
4767 |
+
.pager {
|
4768 |
+
padding-left: 0;
|
4769 |
+
margin: 20px 0;
|
4770 |
+
text-align: center;
|
4771 |
+
list-style: none;
|
4772 |
+
}
|
4773 |
+
.pager li {
|
4774 |
+
display: inline;
|
4775 |
+
}
|
4776 |
+
.pager li > a,
|
4777 |
+
.pager li > span {
|
4778 |
+
display: inline-block;
|
4779 |
+
padding: 5px 14px;
|
4780 |
+
background-color: #fff;
|
4781 |
+
border: 1px solid #ddd;
|
4782 |
+
border-radius: 15px;
|
4783 |
+
}
|
4784 |
+
.pager li > a:hover,
|
4785 |
+
.pager li > a:focus {
|
4786 |
+
text-decoration: none;
|
4787 |
+
background-color: #eee;
|
4788 |
+
}
|
4789 |
+
.pager .next > a,
|
4790 |
+
.pager .next > span {
|
4791 |
+
float: right;
|
4792 |
+
}
|
4793 |
+
.pager .previous > a,
|
4794 |
+
.pager .previous > span {
|
4795 |
+
float: left;
|
4796 |
+
}
|
4797 |
+
.pager .disabled > a,
|
4798 |
+
.pager .disabled > a:hover,
|
4799 |
+
.pager .disabled > a:focus,
|
4800 |
+
.pager .disabled > span {
|
4801 |
+
color: #777;
|
4802 |
+
cursor: not-allowed;
|
4803 |
+
background-color: #fff;
|
4804 |
+
}
|
4805 |
+
.label {
|
4806 |
+
display: inline;
|
4807 |
+
padding: .2em .6em .3em;
|
4808 |
+
font-size: 75%;
|
4809 |
+
font-weight: bold;
|
4810 |
+
line-height: 1;
|
4811 |
+
color: #fff;
|
4812 |
+
text-align: center;
|
4813 |
+
white-space: nowrap;
|
4814 |
+
vertical-align: baseline;
|
4815 |
+
border-radius: .25em;
|
4816 |
+
}
|
4817 |
+
a.label:hover,
|
4818 |
+
a.label:focus {
|
4819 |
+
color: #fff;
|
4820 |
+
text-decoration: none;
|
4821 |
+
cursor: pointer;
|
4822 |
+
}
|
4823 |
+
.label:empty {
|
4824 |
+
display: none;
|
4825 |
+
}
|
4826 |
+
.btn .label {
|
4827 |
+
position: relative;
|
4828 |
+
top: -1px;
|
4829 |
+
}
|
4830 |
+
.label-default {
|
4831 |
+
background-color: #777;
|
4832 |
+
}
|
4833 |
+
.label-default[href]:hover,
|
4834 |
+
.label-default[href]:focus {
|
4835 |
+
background-color: #5e5e5e;
|
4836 |
+
}
|
4837 |
+
.label-primary {
|
4838 |
+
background-color: #337ab7;
|
4839 |
+
}
|
4840 |
+
.label-primary[href]:hover,
|
4841 |
+
.label-primary[href]:focus {
|
4842 |
+
background-color: #286090;
|
4843 |
+
}
|
4844 |
+
.label-success {
|
4845 |
+
background-color: #5cb85c;
|
4846 |
+
}
|
4847 |
+
.label-success[href]:hover,
|
4848 |
+
.label-success[href]:focus {
|
4849 |
+
background-color: #449d44;
|
4850 |
+
}
|
4851 |
+
.label-info {
|
4852 |
+
background-color: #5bc0de;
|
4853 |
+
}
|
4854 |
+
.label-info[href]:hover,
|
4855 |
+
.label-info[href]:focus {
|
4856 |
+
background-color: #31b0d5;
|
4857 |
+
}
|
4858 |
+
.label-warning {
|
4859 |
+
background-color: #f0ad4e;
|
4860 |
+
}
|
4861 |
+
.label-warning[href]:hover,
|
4862 |
+
.label-warning[href]:focus {
|
4863 |
+
background-color: #ec971f;
|
4864 |
+
}
|
4865 |
+
.label-danger {
|
4866 |
+
background-color: #d9534f;
|
4867 |
+
}
|
4868 |
+
.label-danger[href]:hover,
|
4869 |
+
.label-danger[href]:focus {
|
4870 |
+
background-color: #c9302c;
|
4871 |
+
}
|
4872 |
+
.badge {
|
4873 |
+
display: inline-block;
|
4874 |
+
min-width: 10px;
|
4875 |
+
padding: 3px 7px;
|
4876 |
+
font-size: 12px;
|
4877 |
+
font-weight: bold;
|
4878 |
+
line-height: 1;
|
4879 |
+
color: #fff;
|
4880 |
+
text-align: center;
|
4881 |
+
white-space: nowrap;
|
4882 |
+
vertical-align: middle;
|
4883 |
+
background-color: #777;
|
4884 |
+
border-radius: 10px;
|
4885 |
+
}
|
4886 |
+
.badge:empty {
|
4887 |
+
display: none;
|
4888 |
+
}
|
4889 |
+
.btn .badge {
|
4890 |
+
position: relative;
|
4891 |
+
top: -1px;
|
4892 |
+
}
|
4893 |
+
.btn-xs .badge,
|
4894 |
+
.btn-group-xs > .btn .badge {
|
4895 |
+
top: 0;
|
4896 |
+
padding: 1px 5px;
|
4897 |
+
}
|
4898 |
+
a.badge:hover,
|
4899 |
+
a.badge:focus {
|
4900 |
+
color: #fff;
|
4901 |
+
text-decoration: none;
|
4902 |
+
cursor: pointer;
|
4903 |
+
}
|
4904 |
+
.list-group-item.active > .badge,
|
4905 |
+
.nav-pills > .active > a > .badge {
|
4906 |
+
color: #337ab7;
|
4907 |
+
background-color: #fff;
|
4908 |
+
}
|
4909 |
+
.list-group-item > .badge {
|
4910 |
+
float: right;
|
4911 |
+
}
|
4912 |
+
.list-group-item > .badge + .badge {
|
4913 |
+
margin-right: 5px;
|
4914 |
+
}
|
4915 |
+
.nav-pills > li > a > .badge {
|
4916 |
+
margin-left: 3px;
|
4917 |
+
}
|
4918 |
+
.jumbotron {
|
4919 |
+
padding-top: 30px;
|
4920 |
+
padding-bottom: 30px;
|
4921 |
+
margin-bottom: 30px;
|
4922 |
+
color: inherit;
|
4923 |
+
background-color: #eee;
|
4924 |
+
}
|
4925 |
+
.jumbotron h1,
|
4926 |
+
.jumbotron .h1 {
|
4927 |
+
color: inherit;
|
4928 |
+
}
|
4929 |
+
.jumbotron p {
|
4930 |
+
margin-bottom: 15px;
|
4931 |
+
font-size: 21px;
|
4932 |
+
font-weight: 200;
|
4933 |
+
}
|
4934 |
+
.jumbotron > hr {
|
4935 |
+
border-top-color: #d5d5d5;
|
4936 |
+
}
|
4937 |
+
.container .jumbotron,
|
4938 |
+
.container-fluid .jumbotron {
|
4939 |
+
padding-right: 15px;
|
4940 |
+
padding-left: 15px;
|
4941 |
+
border-radius: 6px;
|
4942 |
+
}
|
4943 |
+
.jumbotron .container {
|
4944 |
+
max-width: 100%;
|
4945 |
+
}
|
4946 |
+
@media screen and (min-width: 768px) {
|
4947 |
+
.jumbotron {
|
4948 |
+
padding-top: 48px;
|
4949 |
+
padding-bottom: 48px;
|
4950 |
+
}
|
4951 |
+
.container .jumbotron,
|
4952 |
+
.container-fluid .jumbotron {
|
4953 |
+
padding-right: 60px;
|
4954 |
+
padding-left: 60px;
|
4955 |
+
}
|
4956 |
+
.jumbotron h1,
|
4957 |
+
.jumbotron .h1 {
|
4958 |
+
font-size: 63px;
|
4959 |
+
}
|
4960 |
+
}
|
4961 |
+
.thumbnail {
|
4962 |
+
display: block;
|
4963 |
+
padding: 4px;
|
4964 |
+
margin-bottom: 20px;
|
4965 |
+
line-height: 1.42857143;
|
4966 |
+
background-color: #fff;
|
4967 |
+
border: 1px solid #ddd;
|
4968 |
+
border-radius: 4px;
|
4969 |
+
-webkit-transition: border .2s ease-in-out;
|
4970 |
+
-o-transition: border .2s ease-in-out;
|
4971 |
+
transition: border .2s ease-in-out;
|
4972 |
+
}
|
4973 |
+
.thumbnail > img,
|
4974 |
+
.thumbnail a > img {
|
4975 |
+
margin-right: auto;
|
4976 |
+
margin-left: auto;
|
4977 |
+
}
|
4978 |
+
a.thumbnail:hover,
|
4979 |
+
a.thumbnail:focus,
|
4980 |
+
a.thumbnail.active {
|
4981 |
+
border-color: #337ab7;
|
4982 |
+
}
|
4983 |
+
.thumbnail .caption {
|
4984 |
+
padding: 9px;
|
4985 |
+
color: #333;
|
4986 |
+
}
|
4987 |
+
.alert {
|
4988 |
+
padding: 15px;
|
4989 |
+
margin-bottom: 20px;
|
4990 |
+
border: 1px solid transparent;
|
4991 |
+
border-radius: 4px;
|
4992 |
+
}
|
4993 |
+
.alert h4 {
|
4994 |
+
margin-top: 0;
|
4995 |
+
color: inherit;
|
4996 |
+
}
|
4997 |
+
.alert .alert-link {
|
4998 |
+
font-weight: bold;
|
4999 |
+
}
|
5000 |
+
.alert > p,
|
5001 |
+
.alert > ul {
|
5002 |
+
margin-bottom: 0;
|
5003 |
+
}
|
5004 |
+
.alert > p + p {
|
5005 |
+
margin-top: 5px;
|
5006 |
+
}
|
5007 |
+
.alert-dismissable,
|
5008 |
+
.alert-dismissible {
|
5009 |
+
padding-right: 35px;
|
5010 |
+
}
|
5011 |
+
.alert-dismissable .close,
|
5012 |
+
.alert-dismissible .close {
|
5013 |
+
position: relative;
|
5014 |
+
top: -2px;
|
5015 |
+
right: -21px;
|
5016 |
+
color: inherit;
|
5017 |
+
}
|
5018 |
+
.alert-success {
|
5019 |
+
color: #3c763d;
|
5020 |
+
background-color: #dff0d8;
|
5021 |
+
border-color: #d6e9c6;
|
5022 |
+
}
|
5023 |
+
.alert-success hr {
|
5024 |
+
border-top-color: #c9e2b3;
|
5025 |
+
}
|
5026 |
+
.alert-success .alert-link {
|
5027 |
+
color: #2b542c;
|
5028 |
+
}
|
5029 |
+
.alert-info {
|
5030 |
+
color: #31708f;
|
5031 |
+
background-color: #d9edf7;
|
5032 |
+
border-color: #bce8f1;
|
5033 |
+
}
|
5034 |
+
.alert-info hr {
|
5035 |
+
border-top-color: #a6e1ec;
|
5036 |
+
}
|
5037 |
+
.alert-info .alert-link {
|
5038 |
+
color: #245269;
|
5039 |
+
}
|
5040 |
+
.alert-warning {
|
5041 |
+
color: #8a6d3b;
|
5042 |
+
background-color: #fcf8e3;
|
5043 |
+
border-color: #faebcc;
|
5044 |
+
}
|
5045 |
+
.alert-warning hr {
|
5046 |
+
border-top-color: #f7e1b5;
|
5047 |
+
}
|
5048 |
+
.alert-warning .alert-link {
|
5049 |
+
color: #66512c;
|
5050 |
+
}
|
5051 |
+
.alert-danger {
|
5052 |
+
color: #a94442;
|
5053 |
+
background-color: #f2dede;
|
5054 |
+
border-color: #ebccd1;
|
5055 |
+
}
|
5056 |
+
.alert-danger hr {
|
5057 |
+
border-top-color: #e4b9c0;
|
5058 |
+
}
|
5059 |
+
.alert-danger .alert-link {
|
5060 |
+
color: #843534;
|
5061 |
+
}
|
5062 |
+
@-webkit-keyframes progress-bar-stripes {
|
5063 |
+
from {
|
5064 |
+
background-position: 40px 0;
|
5065 |
+
}
|
5066 |
+
to {
|
5067 |
+
background-position: 0 0;
|
5068 |
+
}
|
5069 |
+
}
|
5070 |
+
@-o-keyframes progress-bar-stripes {
|
5071 |
+
from {
|
5072 |
+
background-position: 40px 0;
|
5073 |
+
}
|
5074 |
+
to {
|
5075 |
+
background-position: 0 0;
|
5076 |
+
}
|
5077 |
+
}
|
5078 |
+
@keyframes progress-bar-stripes {
|
5079 |
+
from {
|
5080 |
+
background-position: 40px 0;
|
5081 |
+
}
|
5082 |
+
to {
|
5083 |
+
background-position: 0 0;
|
5084 |
+
}
|
5085 |
+
}
|
5086 |
+
.progress {
|
5087 |
+
height: 20px;
|
5088 |
+
margin-bottom: 20px;
|
5089 |
+
overflow: hidden;
|
5090 |
+
background-color: #f5f5f5;
|
5091 |
+
border-radius: 4px;
|
5092 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5093 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5094 |
+
}
|
5095 |
+
.progress-bar {
|
5096 |
+
float: left;
|
5097 |
+
width: 0;
|
5098 |
+
height: 100%;
|
5099 |
+
font-size: 12px;
|
5100 |
+
line-height: 20px;
|
5101 |
+
color: #fff;
|
5102 |
+
text-align: center;
|
5103 |
+
background-color: #337ab7;
|
5104 |
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5105 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5106 |
+
-webkit-transition: width .6s ease;
|
5107 |
+
-o-transition: width .6s ease;
|
5108 |
+
transition: width .6s ease;
|
5109 |
+
}
|
5110 |
+
.progress-striped .progress-bar,
|
5111 |
+
.progress-bar-striped {
|
5112 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5113 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5114 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5115 |
+
-webkit-background-size: 40px 40px;
|
5116 |
+
background-size: 40px 40px;
|
5117 |
+
}
|
5118 |
+
.progress.active .progress-bar,
|
5119 |
+
.progress-bar.active {
|
5120 |
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
5121 |
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
5122 |
+
animation: progress-bar-stripes 2s linear infinite;
|
5123 |
+
}
|
5124 |
+
.progress-bar-success {
|
5125 |
+
background-color: #5cb85c;
|
5126 |
+
}
|
5127 |
+
.progress-striped .progress-bar-success {
|
5128 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5129 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5130 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5131 |
+
}
|
5132 |
+
.progress-bar-info {
|
5133 |
+
background-color: #5bc0de;
|
5134 |
+
}
|
5135 |
+
.progress-striped .progress-bar-info {
|
5136 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5137 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5138 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5139 |
+
}
|
5140 |
+
.progress-bar-warning {
|
5141 |
+
background-color: #f0ad4e;
|
5142 |
+
}
|
5143 |
+
.progress-striped .progress-bar-warning {
|
5144 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5145 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5146 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5147 |
+
}
|
5148 |
+
.progress-bar-danger {
|
5149 |
+
background-color: #d9534f;
|
5150 |
+
}
|
5151 |
+
.progress-striped .progress-bar-danger {
|
5152 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5153 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5154 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5155 |
+
}
|
5156 |
+
.media {
|
5157 |
+
margin-top: 15px;
|
5158 |
+
}
|
5159 |
+
.media:first-child {
|
5160 |
+
margin-top: 0;
|
5161 |
+
}
|
5162 |
+
.media,
|
5163 |
+
.media-body {
|
5164 |
+
overflow: hidden;
|
5165 |
+
zoom: 1;
|
5166 |
+
}
|
5167 |
+
.media-body {
|
5168 |
+
width: 10000px;
|
5169 |
+
}
|
5170 |
+
.media-object {
|
5171 |
+
display: block;
|
5172 |
+
}
|
5173 |
+
.media-object.img-thumbnail {
|
5174 |
+
max-width: none;
|
5175 |
+
}
|
5176 |
+
.media-right,
|
5177 |
+
.media > .pull-right {
|
5178 |
+
padding-left: 10px;
|
5179 |
+
}
|
5180 |
+
.media-left,
|
5181 |
+
.media > .pull-left {
|
5182 |
+
padding-right: 10px;
|
5183 |
+
}
|
5184 |
+
.media-left,
|
5185 |
+
.media-right,
|
5186 |
+
.media-body {
|
5187 |
+
display: table-cell;
|
5188 |
+
vertical-align: top;
|
5189 |
+
}
|
5190 |
+
.media-middle {
|
5191 |
+
vertical-align: middle;
|
5192 |
+
}
|
5193 |
+
.media-bottom {
|
5194 |
+
vertical-align: bottom;
|
5195 |
+
}
|
5196 |
+
.media-heading {
|
5197 |
+
margin-top: 0;
|
5198 |
+
margin-bottom: 5px;
|
5199 |
+
}
|
5200 |
+
.media-list {
|
5201 |
+
padding-left: 0;
|
5202 |
+
list-style: none;
|
5203 |
+
}
|
5204 |
+
.list-group {
|
5205 |
+
padding-left: 0;
|
5206 |
+
margin-bottom: 20px;
|
5207 |
+
}
|
5208 |
+
.list-group-item {
|
5209 |
+
position: relative;
|
5210 |
+
display: block;
|
5211 |
+
padding: 10px 15px;
|
5212 |
+
margin-bottom: -1px;
|
5213 |
+
background-color: #fff;
|
5214 |
+
border: 1px solid #ddd;
|
5215 |
+
}
|
5216 |
+
.list-group-item:first-child {
|
5217 |
+
border-top-left-radius: 4px;
|
5218 |
+
border-top-right-radius: 4px;
|
5219 |
+
}
|
5220 |
+
.list-group-item:last-child {
|
5221 |
+
margin-bottom: 0;
|
5222 |
+
border-bottom-right-radius: 4px;
|
5223 |
+
border-bottom-left-radius: 4px;
|
5224 |
+
}
|
5225 |
+
a.list-group-item,
|
5226 |
+
button.list-group-item {
|
5227 |
+
color: #555;
|
5228 |
+
}
|
5229 |
+
a.list-group-item .list-group-item-heading,
|
5230 |
+
button.list-group-item .list-group-item-heading {
|
5231 |
+
color: #333;
|
5232 |
+
}
|
5233 |
+
a.list-group-item:hover,
|
5234 |
+
button.list-group-item:hover,
|
5235 |
+
a.list-group-item:focus,
|
5236 |
+
button.list-group-item:focus {
|
5237 |
+
color: #555;
|
5238 |
+
text-decoration: none;
|
5239 |
+
background-color: #f5f5f5;
|
5240 |
+
}
|
5241 |
+
button.list-group-item {
|
5242 |
+
width: 100%;
|
5243 |
+
text-align: left;
|
5244 |
+
}
|
5245 |
+
.list-group-item.disabled,
|
5246 |
+
.list-group-item.disabled:hover,
|
5247 |
+
.list-group-item.disabled:focus {
|
5248 |
+
color: #777;
|
5249 |
+
cursor: not-allowed;
|
5250 |
+
background-color: #eee;
|
5251 |
+
}
|
5252 |
+
.list-group-item.disabled .list-group-item-heading,
|
5253 |
+
.list-group-item.disabled:hover .list-group-item-heading,
|
5254 |
+
.list-group-item.disabled:focus .list-group-item-heading {
|
5255 |
+
color: inherit;
|
5256 |
+
}
|
5257 |
+
.list-group-item.disabled .list-group-item-text,
|
5258 |
+
.list-group-item.disabled:hover .list-group-item-text,
|
5259 |
+
.list-group-item.disabled:focus .list-group-item-text {
|
5260 |
+
color: #777;
|
5261 |
+
}
|
5262 |
+
.list-group-item.active,
|
5263 |
+
.list-group-item.active:hover,
|
5264 |
+
.list-group-item.active:focus {
|
5265 |
+
z-index: 2;
|
5266 |
+
color: #fff;
|
5267 |
+
background-color: #337ab7;
|
5268 |
+
border-color: #337ab7;
|
5269 |
+
}
|
5270 |
+
.list-group-item.active .list-group-item-heading,
|
5271 |
+
.list-group-item.active:hover .list-group-item-heading,
|
5272 |
+
.list-group-item.active:focus .list-group-item-heading,
|
5273 |
+
.list-group-item.active .list-group-item-heading > small,
|
5274 |
+
.list-group-item.active:hover .list-group-item-heading > small,
|
5275 |
+
.list-group-item.active:focus .list-group-item-heading > small,
|
5276 |
+
.list-group-item.active .list-group-item-heading > .small,
|
5277 |
+
.list-group-item.active:hover .list-group-item-heading > .small,
|
5278 |
+
.list-group-item.active:focus .list-group-item-heading > .small {
|
5279 |
+
color: inherit;
|
5280 |
+
}
|
5281 |
+
.list-group-item.active .list-group-item-text,
|
5282 |
+
.list-group-item.active:hover .list-group-item-text,
|
5283 |
+
.list-group-item.active:focus .list-group-item-text {
|
5284 |
+
color: #c7ddef;
|
5285 |
+
}
|
5286 |
+
.list-group-item-success {
|
5287 |
+
color: #3c763d;
|
5288 |
+
background-color: #dff0d8;
|
5289 |
+
}
|
5290 |
+
a.list-group-item-success,
|
5291 |
+
button.list-group-item-success {
|
5292 |
+
color: #3c763d;
|
5293 |
+
}
|
5294 |
+
a.list-group-item-success .list-group-item-heading,
|
5295 |
+
button.list-group-item-success .list-group-item-heading {
|
5296 |
+
color: inherit;
|
5297 |
+
}
|
5298 |
+
a.list-group-item-success:hover,
|
5299 |
+
button.list-group-item-success:hover,
|
5300 |
+
a.list-group-item-success:focus,
|
5301 |
+
button.list-group-item-success:focus {
|
5302 |
+
color: #3c763d;
|
5303 |
+
background-color: #d0e9c6;
|
5304 |
+
}
|
5305 |
+
a.list-group-item-success.active,
|
5306 |
+
button.list-group-item-success.active,
|
5307 |
+
a.list-group-item-success.active:hover,
|
5308 |
+
button.list-group-item-success.active:hover,
|
5309 |
+
a.list-group-item-success.active:focus,
|
5310 |
+
button.list-group-item-success.active:focus {
|
5311 |
+
color: #fff;
|
5312 |
+
background-color: #3c763d;
|
5313 |
+
border-color: #3c763d;
|
5314 |
+
}
|
5315 |
+
.list-group-item-info {
|
5316 |
+
color: #31708f;
|
5317 |
+
background-color: #d9edf7;
|
5318 |
+
}
|
5319 |
+
a.list-group-item-info,
|
5320 |
+
button.list-group-item-info {
|
5321 |
+
color: #31708f;
|
5322 |
+
}
|
5323 |
+
a.list-group-item-info .list-group-item-heading,
|
5324 |
+
button.list-group-item-info .list-group-item-heading {
|
5325 |
+
color: inherit;
|
5326 |
+
}
|
5327 |
+
a.list-group-item-info:hover,
|
5328 |
+
button.list-group-item-info:hover,
|
5329 |
+
a.list-group-item-info:focus,
|
5330 |
+
button.list-group-item-info:focus {
|
5331 |
+
color: #31708f;
|
5332 |
+
background-color: #c4e3f3;
|
5333 |
+
}
|
5334 |
+
a.list-group-item-info.active,
|
5335 |
+
button.list-group-item-info.active,
|
5336 |
+
a.list-group-item-info.active:hover,
|
5337 |
+
button.list-group-item-info.active:hover,
|
5338 |
+
a.list-group-item-info.active:focus,
|
5339 |
+
button.list-group-item-info.active:focus {
|
5340 |
+
color: #fff;
|
5341 |
+
background-color: #31708f;
|
5342 |
+
border-color: #31708f;
|
5343 |
+
}
|
5344 |
+
.list-group-item-warning {
|
5345 |
+
color: #8a6d3b;
|
5346 |
+
background-color: #fcf8e3;
|
5347 |
+
}
|
5348 |
+
a.list-group-item-warning,
|
5349 |
+
button.list-group-item-warning {
|
5350 |
+
color: #8a6d3b;
|
5351 |
+
}
|
5352 |
+
a.list-group-item-warning .list-group-item-heading,
|
5353 |
+
button.list-group-item-warning .list-group-item-heading {
|
5354 |
+
color: inherit;
|
5355 |
+
}
|
5356 |
+
a.list-group-item-warning:hover,
|
5357 |
+
button.list-group-item-warning:hover,
|
5358 |
+
a.list-group-item-warning:focus,
|
5359 |
+
button.list-group-item-warning:focus {
|
5360 |
+
color: #8a6d3b;
|
5361 |
+
background-color: #faf2cc;
|
5362 |
+
}
|
5363 |
+
a.list-group-item-warning.active,
|
5364 |
+
button.list-group-item-warning.active,
|
5365 |
+
a.list-group-item-warning.active:hover,
|
5366 |
+
button.list-group-item-warning.active:hover,
|
5367 |
+
a.list-group-item-warning.active:focus,
|
5368 |
+
button.list-group-item-warning.active:focus {
|
5369 |
+
color: #fff;
|
5370 |
+
background-color: #8a6d3b;
|
5371 |
+
border-color: #8a6d3b;
|
5372 |
+
}
|
5373 |
+
.list-group-item-danger {
|
5374 |
+
color: #a94442;
|
5375 |
+
background-color: #f2dede;
|
5376 |
+
}
|
5377 |
+
a.list-group-item-danger,
|
5378 |
+
button.list-group-item-danger {
|
5379 |
+
color: #a94442;
|
5380 |
+
}
|
5381 |
+
a.list-group-item-danger .list-group-item-heading,
|
5382 |
+
button.list-group-item-danger .list-group-item-heading {
|
5383 |
+
color: inherit;
|
5384 |
+
}
|
5385 |
+
a.list-group-item-danger:hover,
|
5386 |
+
button.list-group-item-danger:hover,
|
5387 |
+
a.list-group-item-danger:focus,
|
5388 |
+
button.list-group-item-danger:focus {
|
5389 |
+
color: #a94442;
|
5390 |
+
background-color: #ebcccc;
|
5391 |
+
}
|
5392 |
+
a.list-group-item-danger.active,
|
5393 |
+
button.list-group-item-danger.active,
|
5394 |
+
a.list-group-item-danger.active:hover,
|
5395 |
+
button.list-group-item-danger.active:hover,
|
5396 |
+
a.list-group-item-danger.active:focus,
|
5397 |
+
button.list-group-item-danger.active:focus {
|
5398 |
+
color: #fff;
|
5399 |
+
background-color: #a94442;
|
5400 |
+
border-color: #a94442;
|
5401 |
+
}
|
5402 |
+
.list-group-item-heading {
|
5403 |
+
margin-top: 0;
|
5404 |
+
margin-bottom: 5px;
|
5405 |
+
}
|
5406 |
+
.list-group-item-text {
|
5407 |
+
margin-bottom: 0;
|
5408 |
+
line-height: 1.3;
|
5409 |
+
}
|
5410 |
+
.panel {
|
5411 |
+
margin-bottom: 20px;
|
5412 |
+
background-color: #fff;
|
5413 |
+
border: 1px solid transparent;
|
5414 |
+
border-radius: 4px;
|
5415 |
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5416 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5417 |
+
}
|
5418 |
+
.panel-body {
|
5419 |
+
padding: 15px;
|
5420 |
+
}
|
5421 |
+
.panel-heading {
|
5422 |
+
padding: 10px 15px;
|
5423 |
+
border-bottom: 1px solid transparent;
|
5424 |
+
border-top-left-radius: 3px;
|
5425 |
+
border-top-right-radius: 3px;
|
5426 |
+
}
|
5427 |
+
.panel-heading > .dropdown .dropdown-toggle {
|
5428 |
+
color: inherit;
|
5429 |
+
}
|
5430 |
+
.panel-title {
|
5431 |
+
margin-top: 0;
|
5432 |
+
margin-bottom: 0;
|
5433 |
+
font-size: 16px;
|
5434 |
+
color: inherit;
|
5435 |
+
}
|
5436 |
+
.panel-title > a,
|
5437 |
+
.panel-title > small,
|
5438 |
+
.panel-title > .small,
|
5439 |
+
.panel-title > small > a,
|
5440 |
+
.panel-title > .small > a {
|
5441 |
+
color: inherit;
|
5442 |
+
}
|
5443 |
+
.panel-footer {
|
5444 |
+
padding: 10px 15px;
|
5445 |
+
background-color: #f5f5f5;
|
5446 |
+
border-top: 1px solid #ddd;
|
5447 |
+
border-bottom-right-radius: 3px;
|
5448 |
+
border-bottom-left-radius: 3px;
|
5449 |
+
}
|
5450 |
+
.panel > .list-group,
|
5451 |
+
.panel > .panel-collapse > .list-group {
|
5452 |
+
margin-bottom: 0;
|
5453 |
+
}
|
5454 |
+
.panel > .list-group .list-group-item,
|
5455 |
+
.panel > .panel-collapse > .list-group .list-group-item {
|
5456 |
+
border-width: 1px 0;
|
5457 |
+
border-radius: 0;
|
5458 |
+
}
|
5459 |
+
.panel > .list-group:first-child .list-group-item:first-child,
|
5460 |
+
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
5461 |
+
border-top: 0;
|
5462 |
+
border-top-left-radius: 3px;
|
5463 |
+
border-top-right-radius: 3px;
|
5464 |
+
}
|
5465 |
+
.panel > .list-group:last-child .list-group-item:last-child,
|
5466 |
+
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
5467 |
+
border-bottom: 0;
|
5468 |
+
border-bottom-right-radius: 3px;
|
5469 |
+
border-bottom-left-radius: 3px;
|
5470 |
+
}
|
5471 |
+
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
5472 |
+
border-top-left-radius: 0;
|
5473 |
+
border-top-right-radius: 0;
|
5474 |
+
}
|
5475 |
+
.panel-heading + .list-group .list-group-item:first-child {
|
5476 |
+
border-top-width: 0;
|
5477 |
+
}
|
5478 |
+
.list-group + .panel-footer {
|
5479 |
+
border-top-width: 0;
|
5480 |
+
}
|
5481 |
+
.panel > .table,
|
5482 |
+
.panel > .table-responsive > .table,
|
5483 |
+
.panel > .panel-collapse > .table {
|
5484 |
+
margin-bottom: 0;
|
5485 |
+
}
|
5486 |
+
.panel > .table caption,
|
5487 |
+
.panel > .table-responsive > .table caption,
|
5488 |
+
.panel > .panel-collapse > .table caption {
|
5489 |
+
padding-right: 15px;
|
5490 |
+
padding-left: 15px;
|
5491 |
+
}
|
5492 |
+
.panel > .table:first-child,
|
5493 |
+
.panel > .table-responsive:first-child > .table:first-child {
|
5494 |
+
border-top-left-radius: 3px;
|
5495 |
+
border-top-right-radius: 3px;
|
5496 |
+
}
|
5497 |
+
.panel > .table:first-child > thead:first-child > tr:first-child,
|
5498 |
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
5499 |
+
.panel > .table:first-child > tbody:first-child > tr:first-child,
|
5500 |
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
|
5501 |
+
border-top-left-radius: 3px;
|
5502 |
+
border-top-right-radius: 3px;
|
5503 |
+
}
|
5504 |
+
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5505 |
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5506 |
+
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5507 |
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5508 |
+
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5509 |
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5510 |
+
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
5511 |
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
5512 |
+
border-top-left-radius: 3px;
|
5513 |
+
}
|
5514 |
+
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5515 |
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5516 |
+
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5517 |
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5518 |
+
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5519 |
+
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5520 |
+
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
5521 |
+
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
5522 |
+
border-top-right-radius: 3px;
|
5523 |
+
}
|
5524 |
+
.panel > .table:last-child,
|
5525 |
+
.panel > .table-responsive:last-child > .table:last-child {
|
5526 |
+
border-bottom-right-radius: 3px;
|
5527 |
+
border-bottom-left-radius: 3px;
|
5528 |
+
}
|
5529 |
+
.panel > .table:last-child > tbody:last-child > tr:last-child,
|
5530 |
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
5531 |
+
.panel > .table:last-child > tfoot:last-child > tr:last-child,
|
5532 |
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
|
5533 |
+
border-bottom-right-radius: 3px;
|
5534 |
+
border-bottom-left-radius: 3px;
|
5535 |
+
}
|
5536 |
+
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5537 |
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5538 |
+
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5539 |
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5540 |
+
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5541 |
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5542 |
+
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
5543 |
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
5544 |
+
border-bottom-left-radius: 3px;
|
5545 |
+
}
|
5546 |
+
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5547 |
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5548 |
+
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5549 |
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5550 |
+
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5551 |
+
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5552 |
+
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
5553 |
+
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
5554 |
+
border-bottom-right-radius: 3px;
|
5555 |
+
}
|
5556 |
+
.panel > .panel-body + .table,
|
5557 |
+
.panel > .panel-body + .table-responsive,
|
5558 |
+
.panel > .table + .panel-body,
|
5559 |
+
.panel > .table-responsive + .panel-body {
|
5560 |
+
border-top: 1px solid #ddd;
|
5561 |
+
}
|
5562 |
+
.panel > .table > tbody:first-child > tr:first-child th,
|
5563 |
+
.panel > .table > tbody:first-child > tr:first-child td {
|
5564 |
+
border-top: 0;
|
5565 |
+
}
|
5566 |
+
.panel > .table-bordered,
|
5567 |
+
.panel > .table-responsive > .table-bordered {
|
5568 |
+
border: 0;
|
5569 |
+
}
|
5570 |
+
.panel > .table-bordered > thead > tr > th:first-child,
|
5571 |
+
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
5572 |
+
.panel > .table-bordered > tbody > tr > th:first-child,
|
5573 |
+
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
5574 |
+
.panel > .table-bordered > tfoot > tr > th:first-child,
|
5575 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
5576 |
+
.panel > .table-bordered > thead > tr > td:first-child,
|
5577 |
+
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
|
5578 |
+
.panel > .table-bordered > tbody > tr > td:first-child,
|
5579 |
+
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
5580 |
+
.panel > .table-bordered > tfoot > tr > td:first-child,
|
5581 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
5582 |
+
border-left: 0;
|
5583 |
+
}
|
5584 |
+
.panel > .table-bordered > thead > tr > th:last-child,
|
5585 |
+
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
5586 |
+
.panel > .table-bordered > tbody > tr > th:last-child,
|
5587 |
+
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
5588 |
+
.panel > .table-bordered > tfoot > tr > th:last-child,
|
5589 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
5590 |
+
.panel > .table-bordered > thead > tr > td:last-child,
|
5591 |
+
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
|
5592 |
+
.panel > .table-bordered > tbody > tr > td:last-child,
|
5593 |
+
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
5594 |
+
.panel > .table-bordered > tfoot > tr > td:last-child,
|
5595 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
5596 |
+
border-right: 0;
|
5597 |
+
}
|
5598 |
+
.panel > .table-bordered > thead > tr:first-child > td,
|
5599 |
+
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
5600 |
+
.panel > .table-bordered > tbody > tr:first-child > td,
|
5601 |
+
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
5602 |
+
.panel > .table-bordered > thead > tr:first-child > th,
|
5603 |
+
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
5604 |
+
.panel > .table-bordered > tbody > tr:first-child > th,
|
5605 |
+
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
5606 |
+
border-bottom: 0;
|
5607 |
+
}
|
5608 |
+
.panel > .table-bordered > tbody > tr:last-child > td,
|
5609 |
+
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
5610 |
+
.panel > .table-bordered > tfoot > tr:last-child > td,
|
5611 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
5612 |
+
.panel > .table-bordered > tbody > tr:last-child > th,
|
5613 |
+
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
5614 |
+
.panel > .table-bordered > tfoot > tr:last-child > th,
|
5615 |
+
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
5616 |
+
border-bottom: 0;
|
5617 |
+
}
|
5618 |
+
.panel > .table-responsive {
|
5619 |
+
margin-bottom: 0;
|
5620 |
+
border: 0;
|
5621 |
+
}
|
5622 |
+
.panel-group {
|
5623 |
+
margin-bottom: 20px;
|
5624 |
+
}
|
5625 |
+
.panel-group .panel {
|
5626 |
+
margin-bottom: 0;
|
5627 |
+
border-radius: 4px;
|
5628 |
+
}
|
5629 |
+
.panel-group .panel + .panel {
|
5630 |
+
margin-top: 5px;
|
5631 |
+
}
|
5632 |
+
.panel-group .panel-heading {
|
5633 |
+
border-bottom: 0;
|
5634 |
+
}
|
5635 |
+
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
5636 |
+
.panel-group .panel-heading + .panel-collapse > .list-group {
|
5637 |
+
border-top: 1px solid #ddd;
|
5638 |
+
}
|
5639 |
+
.panel-group .panel-footer {
|
5640 |
+
border-top: 0;
|
5641 |
+
}
|
5642 |
+
.panel-group .panel-footer + .panel-collapse .panel-body {
|
5643 |
+
border-bottom: 1px solid #ddd;
|
5644 |
+
}
|
5645 |
+
.panel-default {
|
5646 |
+
border-color: #ddd;
|
5647 |
+
}
|
5648 |
+
.panel-default > .panel-heading {
|
5649 |
+
color: #333;
|
5650 |
+
background-color: #f5f5f5;
|
5651 |
+
border-color: #ddd;
|
5652 |
+
}
|
5653 |
+
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
5654 |
+
border-top-color: #ddd;
|
5655 |
+
}
|
5656 |
+
.panel-default > .panel-heading .badge {
|
5657 |
+
color: #f5f5f5;
|
5658 |
+
background-color: #333;
|
5659 |
+
}
|
5660 |
+
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
5661 |
+
border-bottom-color: #ddd;
|
5662 |
+
}
|
5663 |
+
.panel-primary {
|
5664 |
+
border-color: #337ab7;
|
5665 |
+
}
|
5666 |
+
.panel-primary > .panel-heading {
|
5667 |
+
color: #fff;
|
5668 |
+
background-color: #337ab7;
|
5669 |
+
border-color: #337ab7;
|
5670 |
+
}
|
5671 |
+
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
5672 |
+
border-top-color: #337ab7;
|
5673 |
+
}
|
5674 |
+
.panel-primary > .panel-heading .badge {
|
5675 |
+
color: #337ab7;
|
5676 |
+
background-color: #fff;
|
5677 |
+
}
|
5678 |
+
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
5679 |
+
border-bottom-color: #337ab7;
|
5680 |
+
}
|
5681 |
+
.panel-success {
|
5682 |
+
border-color: #d6e9c6;
|
5683 |
+
}
|
5684 |
+
.panel-success > .panel-heading {
|
5685 |
+
color: #3c763d;
|
5686 |
+
background-color: #dff0d8;
|
5687 |
+
border-color: #d6e9c6;
|
5688 |
+
}
|
5689 |
+
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
5690 |
+
border-top-color: #d6e9c6;
|
5691 |
+
}
|
5692 |
+
.panel-success > .panel-heading .badge {
|
5693 |
+
color: #dff0d8;
|
5694 |
+
background-color: #3c763d;
|
5695 |
+
}
|
5696 |
+
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
5697 |
+
border-bottom-color: #d6e9c6;
|
5698 |
+
}
|
5699 |
+
.panel-info {
|
5700 |
+
border-color: #bce8f1;
|
5701 |
+
}
|
5702 |
+
.panel-info > .panel-heading {
|
5703 |
+
color: #31708f;
|
5704 |
+
background-color: #d9edf7;
|
5705 |
+
border-color: #bce8f1;
|
5706 |
+
}
|
5707 |
+
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
5708 |
+
border-top-color: #bce8f1;
|
5709 |
+
}
|
5710 |
+
.panel-info > .panel-heading .badge {
|
5711 |
+
color: #d9edf7;
|
5712 |
+
background-color: #31708f;
|
5713 |
+
}
|
5714 |
+
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
5715 |
+
border-bottom-color: #bce8f1;
|
5716 |
+
}
|
5717 |
+
.panel-warning {
|
5718 |
+
border-color: #faebcc;
|
5719 |
+
}
|
5720 |
+
.panel-warning > .panel-heading {
|
5721 |
+
color: #8a6d3b;
|
5722 |
+
background-color: #fcf8e3;
|
5723 |
+
border-color: #faebcc;
|
5724 |
+
}
|
5725 |
+
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
5726 |
+
border-top-color: #faebcc;
|
5727 |
+
}
|
5728 |
+
.panel-warning > .panel-heading .badge {
|
5729 |
+
color: #fcf8e3;
|
5730 |
+
background-color: #8a6d3b;
|
5731 |
+
}
|
5732 |
+
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
5733 |
+
border-bottom-color: #faebcc;
|
5734 |
+
}
|
5735 |
+
.panel-danger {
|
5736 |
+
border-color: #ebccd1;
|
5737 |
+
}
|
5738 |
+
.panel-danger > .panel-heading {
|
5739 |
+
color: #a94442;
|
5740 |
+
background-color: #f2dede;
|
5741 |
+
border-color: #ebccd1;
|
5742 |
+
}
|
5743 |
+
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
5744 |
+
border-top-color: #ebccd1;
|
5745 |
+
}
|
5746 |
+
.panel-danger > .panel-heading .badge {
|
5747 |
+
color: #f2dede;
|
5748 |
+
background-color: #a94442;
|
5749 |
+
}
|
5750 |
+
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
5751 |
+
border-bottom-color: #ebccd1;
|
5752 |
+
}
|
5753 |
+
.embed-responsive {
|
5754 |
+
position: relative;
|
5755 |
+
display: block;
|
5756 |
+
height: 0;
|
5757 |
+
padding: 0;
|
5758 |
+
overflow: hidden;
|
5759 |
+
}
|
5760 |
+
.embed-responsive .embed-responsive-item,
|
5761 |
+
.embed-responsive iframe,
|
5762 |
+
.embed-responsive embed,
|
5763 |
+
.embed-responsive object,
|
5764 |
+
.embed-responsive video {
|
5765 |
+
position: absolute;
|
5766 |
+
top: 0;
|
5767 |
+
bottom: 0;
|
5768 |
+
left: 0;
|
5769 |
+
width: 100%;
|
5770 |
+
height: 100%;
|
5771 |
+
border: 0;
|
5772 |
+
}
|
5773 |
+
.embed-responsive-16by9 {
|
5774 |
+
padding-bottom: 56.25%;
|
5775 |
+
}
|
5776 |
+
.embed-responsive-4by3 {
|
5777 |
+
padding-bottom: 75%;
|
5778 |
+
}
|
5779 |
+
.well {
|
5780 |
+
min-height: 20px;
|
5781 |
+
padding: 19px;
|
5782 |
+
margin-bottom: 20px;
|
5783 |
+
background-color: #f5f5f5;
|
5784 |
+
border: 1px solid #e3e3e3;
|
5785 |
+
border-radius: 4px;
|
5786 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5787 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5788 |
+
}
|
5789 |
+
.well blockquote {
|
5790 |
+
border-color: #ddd;
|
5791 |
+
border-color: rgba(0, 0, 0, .15);
|
5792 |
+
}
|
5793 |
+
.well-lg {
|
5794 |
+
padding: 24px;
|
5795 |
+
border-radius: 6px;
|
5796 |
+
}
|
5797 |
+
.well-sm {
|
5798 |
+
padding: 9px;
|
5799 |
+
border-radius: 3px;
|
5800 |
+
}
|
5801 |
+
.close {
|
5802 |
+
float: right;
|
5803 |
+
font-size: 24px;
|
5804 |
+
font-weight: bold;
|
5805 |
+
line-height: 1;
|
5806 |
+
color: #000;
|
5807 |
+
text-shadow: 0 1px 0 #fff;
|
5808 |
+
filter: alpha(opacity=20);
|
5809 |
+
opacity: .4;
|
5810 |
+
}
|
5811 |
+
.close:hover,
|
5812 |
+
.close:focus {
|
5813 |
+
color: #000;
|
5814 |
+
text-decoration: none;
|
5815 |
+
cursor: pointer;
|
5816 |
+
filter: alpha(opacity=50);
|
5817 |
+
opacity: .5;
|
5818 |
+
}
|
5819 |
+
button.close {
|
5820 |
+
-webkit-appearance: none;
|
5821 |
+
padding: 0;
|
5822 |
+
cursor: pointer;
|
5823 |
+
background: transparent;
|
5824 |
+
border: 0;
|
5825 |
+
}
|
5826 |
+
.modal-open {
|
5827 |
+
overflow: hidden;
|
5828 |
+
overflow-y: auto;
|
5829 |
+
}
|
5830 |
+
.modal {
|
5831 |
+
position: fixed;
|
5832 |
+
top: 45px;
|
5833 |
+
right: 0;
|
5834 |
+
bottom: 0;
|
5835 |
+
left: 0;
|
5836 |
+
z-index: 1050;
|
5837 |
+
display: none;
|
5838 |
+
overflow: hidden;
|
5839 |
+
-webkit-overflow-scrolling: touch;
|
5840 |
+
outline: 0;
|
5841 |
+
}
|
5842 |
+
.modal.fade .modal-dialog {
|
5843 |
+
-webkit-transition: -webkit-transform .3s ease-out;
|
5844 |
+
-o-transition: -o-transform .3s ease-out;
|
5845 |
+
transition: transform .3s ease-out;
|
5846 |
+
-webkit-transform: translate(0, -25%);
|
5847 |
+
-ms-transform: translate(0, -25%);
|
5848 |
+
-o-transform: translate(0, -25%);
|
5849 |
+
transform: translate(0, -25%);
|
5850 |
+
}
|
5851 |
+
.modal.in .modal-dialog {
|
5852 |
+
-webkit-transform: translate(0, 0);
|
5853 |
+
-ms-transform: translate(0, 0);
|
5854 |
+
-o-transform: translate(0, 0);
|
5855 |
+
transform: translate(0, 0);
|
5856 |
+
}
|
5857 |
+
.modal-open .modal {
|
5858 |
+
overflow-x: hidden;
|
5859 |
+
overflow-y: auto;
|
5860 |
+
}
|
5861 |
+
.modal-dialog {
|
5862 |
+
position: relative;
|
5863 |
+
width: auto;
|
5864 |
+
margin: 10px;
|
5865 |
+
}
|
5866 |
+
.modal-content {
|
5867 |
+
position: relative;
|
5868 |
+
background-color: #fff;
|
5869 |
+
-webkit-background-clip: padding-box;
|
5870 |
+
background-clip: padding-box;
|
5871 |
+
border: 1px solid #999;
|
5872 |
+
border: 1px solid rgba(0, 0, 0, .2);
|
5873 |
+
border-radius: 6px;
|
5874 |
+
outline: 0;
|
5875 |
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5876 |
+
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5877 |
+
}
|
5878 |
+
.modal-backdrop {
|
5879 |
+
position: fixed;
|
5880 |
+
top: 0;
|
5881 |
+
right: 0;
|
5882 |
+
bottom: 0;
|
5883 |
+
left: 0;
|
5884 |
+
z-index: 1040;
|
5885 |
+
background-color: #000;
|
5886 |
+
}
|
5887 |
+
.modal-backdrop.fade {
|
5888 |
+
filter: alpha(opacity=0);
|
5889 |
+
opacity: 0;
|
5890 |
+
}
|
5891 |
+
.modal-backdrop.in {
|
5892 |
+
filter: alpha(opacity=50);
|
5893 |
+
opacity: .5;
|
5894 |
+
}
|
5895 |
+
.modal-header {
|
5896 |
+
padding: 15px;
|
5897 |
+
border-bottom: 1px solid #e5e5e5;
|
5898 |
+
}
|
5899 |
+
.modal-header .close {
|
5900 |
+
margin-top: -2px;
|
5901 |
+
}
|
5902 |
+
.modal-title {
|
5903 |
+
margin: 0;
|
5904 |
+
line-height: 1.42857143;
|
5905 |
+
}
|
5906 |
+
.modal-body {
|
5907 |
+
position: relative;
|
5908 |
+
padding: 15px;
|
5909 |
+
}
|
5910 |
+
.modal-footer {
|
5911 |
+
padding: 15px;
|
5912 |
+
text-align: right;
|
5913 |
+
border-top: 1px solid #e5e5e5;
|
5914 |
+
}
|
5915 |
+
.modal-footer .btn + .btn {
|
5916 |
+
margin-bottom: 0;
|
5917 |
+
margin-left: 5px;
|
5918 |
+
}
|
5919 |
+
.modal-footer .btn-group .btn + .btn {
|
5920 |
+
margin-left: -1px;
|
5921 |
+
}
|
5922 |
+
.modal-footer .btn-block + .btn-block {
|
5923 |
+
margin-left: 0;
|
5924 |
+
}
|
5925 |
+
.modal-scrollbar-measure {
|
5926 |
+
position: absolute;
|
5927 |
+
top: -9999px;
|
5928 |
+
width: 50px;
|
5929 |
+
height: 50px;
|
5930 |
+
overflow: scroll;
|
5931 |
+
}
|
5932 |
+
@media (min-width: 768px) {
|
5933 |
+
.modal-dialog {
|
5934 |
+
width: 600px;
|
5935 |
+
margin: 30px auto;
|
5936 |
+
}
|
5937 |
+
.modal-content {
|
5938 |
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5939 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5940 |
+
}
|
5941 |
+
.modal-sm {
|
5942 |
+
width: 300px;
|
5943 |
+
}
|
5944 |
+
}
|
5945 |
+
@media (min-width: 992px) {
|
5946 |
+
.modal-lg {
|
5947 |
+
width: 900px;
|
5948 |
+
}
|
5949 |
+
}
|
5950 |
+
.tooltip {
|
5951 |
+
position: absolute;
|
5952 |
+
z-index: 1070;
|
5953 |
+
display: block;
|
5954 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5955 |
+
font-size: 12px;
|
5956 |
+
font-style: normal;
|
5957 |
+
font-weight: normal;
|
5958 |
+
line-height: 1.42857143;
|
5959 |
+
text-align: left;
|
5960 |
+
text-align: start;
|
5961 |
+
text-decoration: none;
|
5962 |
+
text-shadow: none;
|
5963 |
+
text-transform: none;
|
5964 |
+
letter-spacing: normal;
|
5965 |
+
word-break: normal;
|
5966 |
+
word-spacing: normal;
|
5967 |
+
word-wrap: normal;
|
5968 |
+
white-space: normal;
|
5969 |
+
filter: alpha(opacity=0);
|
5970 |
+
opacity: 0;
|
5971 |
+
|
5972 |
+
line-break: auto;
|
5973 |
+
}
|
5974 |
+
.tooltip.in {
|
5975 |
+
filter: alpha(opacity=90);
|
5976 |
+
opacity: .9;
|
5977 |
+
}
|
5978 |
+
.tooltip.top {
|
5979 |
+
padding: 5px 0;
|
5980 |
+
margin-top: -3px;
|
5981 |
+
}
|
5982 |
+
.tooltip.right {
|
5983 |
+
padding: 0 5px;
|
5984 |
+
margin-left: 3px;
|
5985 |
+
}
|
5986 |
+
.tooltip.bottom {
|
5987 |
+
padding: 5px 0;
|
5988 |
+
margin-top: 3px;
|
5989 |
+
}
|
5990 |
+
.tooltip.left {
|
5991 |
+
padding: 0 5px;
|
5992 |
+
margin-left: -3px;
|
5993 |
+
}
|
5994 |
+
.tooltip-inner {
|
5995 |
+
max-width: 200px;
|
5996 |
+
padding: 3px 8px;
|
5997 |
+
color: #fff;
|
5998 |
+
text-align: center;
|
5999 |
+
background-color: #000;
|
6000 |
+
border-radius: 4px;
|
6001 |
+
}
|
6002 |
+
.tooltip-arrow {
|
6003 |
+
position: absolute;
|
6004 |
+
width: 0;
|
6005 |
+
height: 0;
|
6006 |
+
border-color: transparent;
|
6007 |
+
border-style: solid;
|
6008 |
+
}
|
6009 |
+
.tooltip.top .tooltip-arrow {
|
6010 |
+
bottom: 0;
|
6011 |
+
left: 50%;
|
6012 |
+
margin-left: -5px;
|
6013 |
+
border-width: 5px 5px 0;
|
6014 |
+
border-top-color: #000;
|
6015 |
+
}
|
6016 |
+
.tooltip.top-left .tooltip-arrow {
|
6017 |
+
right: 5px;
|
6018 |
+
bottom: 0;
|
6019 |
+
margin-bottom: -5px;
|
6020 |
+
border-width: 5px 5px 0;
|
6021 |
+
border-top-color: #000;
|
6022 |
+
}
|
6023 |
+
.tooltip.top-right .tooltip-arrow {
|
6024 |
+
bottom: 0;
|
6025 |
+
left: 5px;
|
6026 |
+
margin-bottom: -5px;
|
6027 |
+
border-width: 5px 5px 0;
|
6028 |
+
border-top-color: #000;
|
6029 |
+
}
|
6030 |
+
.tooltip.right .tooltip-arrow {
|
6031 |
+
top: 50%;
|
6032 |
+
left: 0;
|
6033 |
+
margin-top: -5px;
|
6034 |
+
border-width: 5px 5px 5px 0;
|
6035 |
+
border-right-color: #000;
|
6036 |
+
}
|
6037 |
+
.tooltip.left .tooltip-arrow {
|
6038 |
+
top: 50%;
|
6039 |
+
right: 0;
|
6040 |
+
margin-top: -5px;
|
6041 |
+
border-width: 5px 0 5px 5px;
|
6042 |
+
border-left-color: #000;
|
6043 |
+
}
|
6044 |
+
.tooltip.bottom .tooltip-arrow {
|
6045 |
+
top: 0;
|
6046 |
+
left: 50%;
|
6047 |
+
margin-left: -5px;
|
6048 |
+
border-width: 0 5px 5px;
|
6049 |
+
border-bottom-color: #000;
|
6050 |
+
}
|
6051 |
+
.tooltip.bottom-left .tooltip-arrow {
|
6052 |
+
top: 0;
|
6053 |
+
right: 5px;
|
6054 |
+
margin-top: -5px;
|
6055 |
+
border-width: 0 5px 5px;
|
6056 |
+
border-bottom-color: #000;
|
6057 |
+
}
|
6058 |
+
.tooltip.bottom-right .tooltip-arrow {
|
6059 |
+
top: 0;
|
6060 |
+
left: 5px;
|
6061 |
+
margin-top: -5px;
|
6062 |
+
border-width: 0 5px 5px;
|
6063 |
+
border-bottom-color: #000;
|
6064 |
+
}
|
6065 |
+
.popover {
|
6066 |
+
position: absolute;
|
6067 |
+
top: 0;
|
6068 |
+
left: 0;
|
6069 |
+
z-index: 1060;
|
6070 |
+
display: none;
|
6071 |
+
max-width: 276px;
|
6072 |
+
padding: 1px;
|
6073 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6074 |
+
font-size: 14px;
|
6075 |
+
font-style: normal;
|
6076 |
+
font-weight: normal;
|
6077 |
+
line-height: 1.42857143;
|
6078 |
+
text-align: left;
|
6079 |
+
text-align: start;
|
6080 |
+
text-decoration: none;
|
6081 |
+
text-shadow: none;
|
6082 |
+
text-transform: none;
|
6083 |
+
letter-spacing: normal;
|
6084 |
+
word-break: normal;
|
6085 |
+
word-spacing: normal;
|
6086 |
+
word-wrap: normal;
|
6087 |
+
white-space: normal;
|
6088 |
+
background-color: #fff;
|
6089 |
+
-webkit-background-clip: padding-box;
|
6090 |
+
background-clip: padding-box;
|
6091 |
+
border: 1px solid #ccc;
|
6092 |
+
border: 1px solid rgba(0, 0, 0, .2);
|
6093 |
+
border-radius: 6px;
|
6094 |
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6095 |
+
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6096 |
+
|
6097 |
+
line-break: auto;
|
6098 |
+
}
|
6099 |
+
.popover.top {
|
6100 |
+
margin-top: -10px;
|
6101 |
+
}
|
6102 |
+
.popover.right {
|
6103 |
+
margin-left: 10px;
|
6104 |
+
}
|
6105 |
+
.popover.bottom {
|
6106 |
+
margin-top: 10px;
|
6107 |
+
}
|
6108 |
+
.popover.left {
|
6109 |
+
margin-left: -10px;
|
6110 |
+
}
|
6111 |
+
.popover-title {
|
6112 |
+
padding: 8px 14px;
|
6113 |
+
margin: 0;
|
6114 |
+
font-size: 14px;
|
6115 |
+
background-color: #f7f7f7;
|
6116 |
+
border-bottom: 1px solid #ebebeb;
|
6117 |
+
border-radius: 5px 5px 0 0;
|
6118 |
+
}
|
6119 |
+
.popover-content {
|
6120 |
+
padding: 9px 14px;
|
6121 |
+
}
|
6122 |
+
.popover > .arrow,
|
6123 |
+
.popover > .arrow:after {
|
6124 |
+
position: absolute;
|
6125 |
+
display: block;
|
6126 |
+
width: 0;
|
6127 |
+
height: 0;
|
6128 |
+
border-color: transparent;
|
6129 |
+
border-style: solid;
|
6130 |
+
}
|
6131 |
+
.popover > .arrow {
|
6132 |
+
border-width: 11px;
|
6133 |
+
}
|
6134 |
+
.popover > .arrow:after {
|
6135 |
+
content: "";
|
6136 |
+
border-width: 10px;
|
6137 |
+
}
|
6138 |
+
.popover.top > .arrow {
|
6139 |
+
bottom: -11px;
|
6140 |
+
left: 50%;
|
6141 |
+
margin-left: -11px;
|
6142 |
+
border-top-color: #999;
|
6143 |
+
border-top-color: rgba(0, 0, 0, .25);
|
6144 |
+
border-bottom-width: 0;
|
6145 |
+
}
|
6146 |
+
.popover.top > .arrow:after {
|
6147 |
+
bottom: 1px;
|
6148 |
+
margin-left: -10px;
|
6149 |
+
content: " ";
|
6150 |
+
border-top-color: #fff;
|
6151 |
+
border-bottom-width: 0;
|
6152 |
+
}
|
6153 |
+
.popover.right > .arrow {
|
6154 |
+
top: 50%;
|
6155 |
+
left: -11px;
|
6156 |
+
margin-top: -11px;
|
6157 |
+
border-right-color: #999;
|
6158 |
+
border-right-color: rgba(0, 0, 0, .25);
|
6159 |
+
border-left-width: 0;
|
6160 |
+
}
|
6161 |
+
.popover.right > .arrow:after {
|
6162 |
+
bottom: -10px;
|
6163 |
+
left: 1px;
|
6164 |
+
content: " ";
|
6165 |
+
border-right-color: #fff;
|
6166 |
+
border-left-width: 0;
|
6167 |
+
}
|
6168 |
+
.popover.bottom > .arrow {
|
6169 |
+
top: -11px;
|
6170 |
+
left: 50%;
|
6171 |
+
margin-left: -11px;
|
6172 |
+
border-top-width: 0;
|
6173 |
+
border-bottom-color: #999;
|
6174 |
+
border-bottom-color: rgba(0, 0, 0, .25);
|
6175 |
+
}
|
6176 |
+
.popover.bottom > .arrow:after {
|
6177 |
+
top: 1px;
|
6178 |
+
margin-left: -10px;
|
6179 |
+
content: " ";
|
6180 |
+
border-top-width: 0;
|
6181 |
+
border-bottom-color: #fff;
|
6182 |
+
}
|
6183 |
+
.popover.left > .arrow {
|
6184 |
+
top: 50%;
|
6185 |
+
right: -11px;
|
6186 |
+
margin-top: -11px;
|
6187 |
+
border-right-width: 0;
|
6188 |
+
border-left-color: #999;
|
6189 |
+
border-left-color: rgba(0, 0, 0, .25);
|
6190 |
+
}
|
6191 |
+
.popover.left > .arrow:after {
|
6192 |
+
right: 1px;
|
6193 |
+
bottom: -10px;
|
6194 |
+
content: " ";
|
6195 |
+
border-right-width: 0;
|
6196 |
+
border-left-color: #fff;
|
6197 |
+
}
|
6198 |
+
.carousel {
|
6199 |
+
position: relative;
|
6200 |
+
}
|
6201 |
+
.carousel-inner {
|
6202 |
+
position: relative;
|
6203 |
+
width: 100%;
|
6204 |
+
overflow: hidden;
|
6205 |
+
}
|
6206 |
+
.carousel-inner > .item {
|
6207 |
+
position: relative;
|
6208 |
+
display: none;
|
6209 |
+
-webkit-transition: .6s ease-in-out left;
|
6210 |
+
-o-transition: .6s ease-in-out left;
|
6211 |
+
transition: .6s ease-in-out left;
|
6212 |
+
}
|
6213 |
+
.carousel-inner > .item > img,
|
6214 |
+
.carousel-inner > .item > a > img {
|
6215 |
+
line-height: 1;
|
6216 |
+
}
|
6217 |
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
6218 |
+
.carousel-inner > .item {
|
6219 |
+
-webkit-transition: -webkit-transform .6s ease-in-out;
|
6220 |
+
-o-transition: -o-transform .6s ease-in-out;
|
6221 |
+
transition: transform .6s ease-in-out;
|
6222 |
+
|
6223 |
+
-webkit-backface-visibility: hidden;
|
6224 |
+
backface-visibility: hidden;
|
6225 |
+
-webkit-perspective: 1000px;
|
6226 |
+
perspective: 1000px;
|
6227 |
+
}
|
6228 |
+
.carousel-inner > .item.next,
|
6229 |
+
.carousel-inner > .item.active.right {
|
6230 |
+
left: 0;
|
6231 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
6232 |
+
transform: translate3d(100%, 0, 0);
|
6233 |
+
}
|
6234 |
+
.carousel-inner > .item.prev,
|
6235 |
+
.carousel-inner > .item.active.left {
|
6236 |
+
left: 0;
|
6237 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
6238 |
+
transform: translate3d(-100%, 0, 0);
|
6239 |
+
}
|
6240 |
+
.carousel-inner > .item.next.left,
|
6241 |
+
.carousel-inner > .item.prev.right,
|
6242 |
+
.carousel-inner > .item.active {
|
6243 |
+
left: 0;
|
6244 |
+
-webkit-transform: translate3d(0, 0, 0);
|
6245 |
+
transform: translate3d(0, 0, 0);
|
6246 |
+
}
|
6247 |
+
}
|
6248 |
+
.carousel-inner > .active,
|
6249 |
+
.carousel-inner > .next,
|
6250 |
+
.carousel-inner > .prev {
|
6251 |
+
display: block;
|
6252 |
+
}
|
6253 |
+
.carousel-inner > .active {
|
6254 |
+
left: 0;
|
6255 |
+
}
|
6256 |
+
.carousel-inner > .next,
|
6257 |
+
.carousel-inner > .prev {
|
6258 |
+
position: absolute;
|
6259 |
+
top: 0;
|
6260 |
+
width: 100%;
|
6261 |
+
}
|
6262 |
+
.carousel-inner > .next {
|
6263 |
+
left: 100%;
|
6264 |
+
}
|
6265 |
+
.carousel-inner > .prev {
|
6266 |
+
left: -100%;
|
6267 |
+
}
|
6268 |
+
.carousel-inner > .next.left,
|
6269 |
+
.carousel-inner > .prev.right {
|
6270 |
+
left: 0;
|
6271 |
+
}
|
6272 |
+
.carousel-inner > .active.left {
|
6273 |
+
left: -100%;
|
6274 |
+
}
|
6275 |
+
.carousel-inner > .active.right {
|
6276 |
+
left: 100%;
|
6277 |
+
}
|
6278 |
+
.carousel-control {
|
6279 |
+
position: absolute;
|
6280 |
+
top: 0;
|
6281 |
+
bottom: 0;
|
6282 |
+
left: 0;
|
6283 |
+
width: 15%;
|
6284 |
+
font-size: 20px;
|
6285 |
+
color: #fff;
|
6286 |
+
text-align: center;
|
6287 |
+
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6288 |
+
background-color: rgba(0, 0, 0, 0);
|
6289 |
+
filter: alpha(opacity=50);
|
6290 |
+
opacity: .5;
|
6291 |
+
}
|
6292 |
+
.carousel-control.left {
|
6293 |
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6294 |
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6295 |
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
6296 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6297 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
6298 |
+
background-repeat: repeat-x;
|
6299 |
+
}
|
6300 |
+
.carousel-control.right {
|
6301 |
+
right: 0;
|
6302 |
+
left: auto;
|
6303 |
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6304 |
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6305 |
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
6306 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6307 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
6308 |
+
background-repeat: repeat-x;
|
6309 |
+
}
|
6310 |
+
.carousel-control:hover,
|
6311 |
+
.carousel-control:focus {
|
6312 |
+
color: #fff;
|
6313 |
+
text-decoration: none;
|
6314 |
+
filter: alpha(opacity=90);
|
6315 |
+
outline: 0;
|
6316 |
+
opacity: .9;
|
6317 |
+
}
|
6318 |
+
.carousel-control .icon-prev,
|
6319 |
+
.carousel-control .icon-next,
|
6320 |
+
.carousel-control .glyphicon-chevron-left,
|
6321 |
+
.carousel-control .glyphicon-chevron-right {
|
6322 |
+
position: absolute;
|
6323 |
+
top: 50%;
|
6324 |
+
z-index: 5;
|
6325 |
+
display: inline-block;
|
6326 |
+
margin-top: -10px;
|
6327 |
+
}
|
6328 |
+
.carousel-control .icon-prev,
|
6329 |
+
.carousel-control .glyphicon-chevron-left {
|
6330 |
+
left: 50%;
|
6331 |
+
margin-left: -10px;
|
6332 |
+
}
|
6333 |
+
.carousel-control .icon-next,
|
6334 |
+
.carousel-control .glyphicon-chevron-right {
|
6335 |
+
right: 50%;
|
6336 |
+
margin-right: -10px;
|
6337 |
+
}
|
6338 |
+
.carousel-control .icon-prev,
|
6339 |
+
.carousel-control .icon-next {
|
6340 |
+
width: 20px;
|
6341 |
+
height: 20px;
|
6342 |
+
font-family: serif;
|
6343 |
+
line-height: 1;
|
6344 |
+
}
|
6345 |
+
.carousel-control .icon-prev:before {
|
6346 |
+
content: '\2039';
|
6347 |
+
}
|
6348 |
+
.carousel-control .icon-next:before {
|
6349 |
+
content: '\203a';
|
6350 |
+
}
|
6351 |
+
.carousel-indicators {
|
6352 |
+
position: absolute;
|
6353 |
+
bottom: 10px;
|
6354 |
+
left: 50%;
|
6355 |
+
z-index: 15;
|
6356 |
+
width: 60%;
|
6357 |
+
padding-left: 0;
|
6358 |
+
margin-left: -30%;
|
6359 |
+
text-align: center;
|
6360 |
+
list-style: none;
|
6361 |
+
}
|
6362 |
+
.carousel-indicators li {
|
6363 |
+
display: inline-block;
|
6364 |
+
width: 10px;
|
6365 |
+
height: 10px;
|
6366 |
+
margin: 1px;
|
6367 |
+
text-indent: -999px;
|
6368 |
+
cursor: pointer;
|
6369 |
+
background-color: #000 \9;
|
6370 |
+
background-color: rgba(0, 0, 0, 0);
|
6371 |
+
border: 1px solid #fff;
|
6372 |
+
border-radius: 10px;
|
6373 |
+
}
|
6374 |
+
.carousel-indicators .active {
|
6375 |
+
width: 12px;
|
6376 |
+
height: 12px;
|
6377 |
+
margin: 0;
|
6378 |
+
background-color: #fff;
|
6379 |
+
}
|
6380 |
+
.carousel-caption {
|
6381 |
+
position: absolute;
|
6382 |
+
right: 15%;
|
6383 |
+
bottom: 20px;
|
6384 |
+
left: 15%;
|
6385 |
+
z-index: 10;
|
6386 |
+
padding-top: 20px;
|
6387 |
+
padding-bottom: 20px;
|
6388 |
+
color: #fff;
|
6389 |
+
text-align: center;
|
6390 |
+
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6391 |
+
}
|
6392 |
+
.carousel-caption .btn {
|
6393 |
+
text-shadow: none;
|
6394 |
+
}
|
6395 |
+
@media screen and (min-width: 768px) {
|
6396 |
+
.carousel-control .glyphicon-chevron-left,
|
6397 |
+
.carousel-control .glyphicon-chevron-right,
|
6398 |
+
.carousel-control .icon-prev,
|
6399 |
+
.carousel-control .icon-next {
|
6400 |
+
width: 30px;
|
6401 |
+
height: 30px;
|
6402 |
+
margin-top: -10px;
|
6403 |
+
font-size: 30px;
|
6404 |
+
}
|
6405 |
+
.carousel-control .glyphicon-chevron-left,
|
6406 |
+
.carousel-control .icon-prev {
|
6407 |
+
margin-left: -10px;
|
6408 |
+
}
|
6409 |
+
.carousel-control .glyphicon-chevron-right,
|
6410 |
+
.carousel-control .icon-next {
|
6411 |
+
margin-right: -10px;
|
6412 |
+
}
|
6413 |
+
.carousel-caption {
|
6414 |
+
right: 20%;
|
6415 |
+
left: 20%;
|
6416 |
+
padding-bottom: 30px;
|
6417 |
+
}
|
6418 |
+
.carousel-indicators {
|
6419 |
+
bottom: 20px;
|
6420 |
+
}
|
6421 |
+
}
|
6422 |
+
.clearfix:before,
|
6423 |
+
.clearfix:after,
|
6424 |
+
.dl-horizontal dd:before,
|
6425 |
+
.dl-horizontal dd:after,
|
6426 |
+
.container:before,
|
6427 |
+
.container:after,
|
6428 |
+
.container-fluid:before,
|
6429 |
+
.container-fluid:after,
|
6430 |
+
.row:before,
|
6431 |
+
.row:after,
|
6432 |
+
.form-horizontal .form-group:before,
|
6433 |
+
.form-horizontal .form-group:after,
|
6434 |
+
.btn-toolbar:before,
|
6435 |
+
.btn-toolbar:after,
|
6436 |
+
.btn-group-vertical > .btn-group:before,
|
6437 |
+
.btn-group-vertical > .btn-group:after,
|
6438 |
+
.nav:before,
|
6439 |
+
.nav:after,
|
6440 |
+
.navbar:before,
|
6441 |
+
.navbar:after,
|
6442 |
+
.navbar-header:before,
|
6443 |
+
.navbar-header:after,
|
6444 |
+
.navbar-collapse:before,
|
6445 |
+
.navbar-collapse:after,
|
6446 |
+
.pager:before,
|
6447 |
+
.pager:after,
|
6448 |
+
.panel-body:before,
|
6449 |
+
.panel-body:after,
|
6450 |
+
.modal-header:before,
|
6451 |
+
.modal-header:after,
|
6452 |
+
.modal-footer:before,
|
6453 |
+
.modal-footer:after {
|
6454 |
+
display: table;
|
6455 |
+
content: " ";
|
6456 |
+
}
|
6457 |
+
.clearfix:after,
|
6458 |
+
.dl-horizontal dd:after,
|
6459 |
+
.container:after,
|
6460 |
+
.container-fluid:after,
|
6461 |
+
.row:after,
|
6462 |
+
.form-horizontal .form-group:after,
|
6463 |
+
.btn-toolbar:after,
|
6464 |
+
.btn-group-vertical > .btn-group:after,
|
6465 |
+
.nav:after,
|
6466 |
+
.navbar:after,
|
6467 |
+
.navbar-header:after,
|
6468 |
+
.navbar-collapse:after,
|
6469 |
+
.pager:after,
|
6470 |
+
.panel-body:after,
|
6471 |
+
.modal-header:after,
|
6472 |
+
.modal-footer:after {
|
6473 |
+
clear: both;
|
6474 |
+
}
|
6475 |
+
.center-block {
|
6476 |
+
display: block;
|
6477 |
+
margin-right: auto;
|
6478 |
+
margin-left: auto;
|
6479 |
+
}
|
6480 |
+
.pull-right {
|
6481 |
+
float: right !important;
|
6482 |
+
}
|
6483 |
+
.pull-left {
|
6484 |
+
float: left !important;
|
6485 |
+
}
|
6486 |
+
.hide {
|
6487 |
+
display: none !important;
|
6488 |
+
}
|
6489 |
+
.show {
|
6490 |
+
display: block !important;
|
6491 |
+
}
|
6492 |
+
.invisible {
|
6493 |
+
visibility: hidden;
|
6494 |
+
}
|
6495 |
+
.text-hide {
|
6496 |
+
font: 0/0 a;
|
6497 |
+
color: transparent;
|
6498 |
+
text-shadow: none;
|
6499 |
+
background-color: transparent;
|
6500 |
+
border: 0;
|
6501 |
+
}
|
6502 |
+
.hidden {
|
6503 |
+
display: none !important;
|
6504 |
+
}
|
6505 |
+
.affix {
|
6506 |
+
position: fixed;
|
6507 |
+
}
|
6508 |
+
@-ms-viewport {
|
6509 |
+
width: device-width;
|
6510 |
+
}
|
6511 |
+
.visible-xs,
|
6512 |
+
.visible-sm,
|
6513 |
+
.visible-md,
|
6514 |
+
.visible-lg {
|
6515 |
+
display: none !important;
|
6516 |
+
}
|
6517 |
+
.visible-xs-block,
|
6518 |
+
.visible-xs-inline,
|
6519 |
+
.visible-xs-inline-block,
|
6520 |
+
.visible-sm-block,
|
6521 |
+
.visible-sm-inline,
|
6522 |
+
.visible-sm-inline-block,
|
6523 |
+
.visible-md-block,
|
6524 |
+
.visible-md-inline,
|
6525 |
+
.visible-md-inline-block,
|
6526 |
+
.visible-lg-block,
|
6527 |
+
.visible-lg-inline,
|
6528 |
+
.visible-lg-inline-block {
|
6529 |
+
display: none !important;
|
6530 |
+
}
|
6531 |
+
@media (max-width: 767px) {
|
6532 |
+
.visible-xs {
|
6533 |
+
display: block !important;
|
6534 |
+
}
|
6535 |
+
table.visible-xs {
|
6536 |
+
display: table !important;
|
6537 |
+
}
|
6538 |
+
tr.visible-xs {
|
6539 |
+
display: table-row !important;
|
6540 |
+
}
|
6541 |
+
th.visible-xs,
|
6542 |
+
td.visible-xs {
|
6543 |
+
display: table-cell !important;
|
6544 |
+
}
|
6545 |
+
}
|
6546 |
+
@media (max-width: 767px) {
|
6547 |
+
.visible-xs-block {
|
6548 |
+
display: block !important;
|
6549 |
+
}
|
6550 |
+
}
|
6551 |
+
@media (max-width: 767px) {
|
6552 |
+
.visible-xs-inline {
|
6553 |
+
display: inline !important;
|
6554 |
+
}
|
6555 |
+
}
|
6556 |
+
@media (max-width: 767px) {
|
6557 |
+
.visible-xs-inline-block {
|
6558 |
+
display: inline-block !important;
|
6559 |
+
}
|
6560 |
+
}
|
6561 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
6562 |
+
.visible-sm {
|
6563 |
+
display: block !important;
|
6564 |
+
}
|
6565 |
+
table.visible-sm {
|
6566 |
+
display: table !important;
|
6567 |
+
}
|
6568 |
+
tr.visible-sm {
|
6569 |
+
display: table-row !important;
|
6570 |
+
}
|
6571 |
+
th.visible-sm,
|
6572 |
+
td.visible-sm {
|
6573 |
+
display: table-cell !important;
|
6574 |
+
}
|
6575 |
+
}
|
6576 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
6577 |
+
.visible-sm-block {
|
6578 |
+
display: block !important;
|
6579 |
+
}
|
6580 |
+
}
|
6581 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
6582 |
+
.visible-sm-inline {
|
6583 |
+
display: inline !important;
|
6584 |
+
}
|
6585 |
+
}
|
6586 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
6587 |
+
.visible-sm-inline-block {
|
6588 |
+
display: inline-block !important;
|
6589 |
+
}
|
6590 |
+
}
|
6591 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
6592 |
+
.visible-md {
|
6593 |
+
display: block !important;
|
6594 |
+
}
|
6595 |
+
table.visible-md {
|
6596 |
+
display: table !important;
|
6597 |
+
}
|
6598 |
+
tr.visible-md {
|
6599 |
+
display: table-row !important;
|
6600 |
+
}
|
6601 |
+
th.visible-md,
|
6602 |
+
td.visible-md {
|
6603 |
+
display: table-cell !important;
|
6604 |
+
}
|
6605 |
+
}
|
6606 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
6607 |
+
.visible-md-block {
|
6608 |
+
display: block !important;
|
6609 |
+
}
|
6610 |
+
}
|
6611 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
6612 |
+
.visible-md-inline {
|
6613 |
+
display: inline !important;
|
6614 |
+
}
|
6615 |
+
}
|
6616 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
6617 |
+
.visible-md-inline-block {
|
6618 |
+
display: inline-block !important;
|
6619 |
+
}
|
6620 |
+
}
|
6621 |
+
@media (min-width: 1200px) {
|
6622 |
+
.visible-lg {
|
6623 |
+
display: block !important;
|
6624 |
+
}
|
6625 |
+
table.visible-lg {
|
6626 |
+
display: table !important;
|
6627 |
+
}
|
6628 |
+
tr.visible-lg {
|
6629 |
+
display: table-row !important;
|
6630 |
+
}
|
6631 |
+
th.visible-lg,
|
6632 |
+
td.visible-lg {
|
6633 |
+
display: table-cell !important;
|
6634 |
+
}
|
6635 |
+
}
|
6636 |
+
@media (min-width: 1200px) {
|
6637 |
+
.visible-lg-block {
|
6638 |
+
display: block !important;
|
6639 |
+
}
|
6640 |
+
}
|
6641 |
+
@media (min-width: 1200px) {
|
6642 |
+
.visible-lg-inline {
|
6643 |
+
display: inline !important;
|
6644 |
+
}
|
6645 |
+
}
|
6646 |
+
@media (min-width: 1200px) {
|
6647 |
+
.visible-lg-inline-block {
|
6648 |
+
display: inline-block !important;
|
6649 |
+
}
|
6650 |
+
}
|
6651 |
+
@media (max-width: 767px) {
|
6652 |
+
.hidden-xs {
|
6653 |
+
display: none !important;
|
6654 |
+
}
|
6655 |
+
}
|
6656 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
6657 |
+
.hidden-sm {
|
6658 |
+
display: none !important;
|
6659 |
+
}
|
6660 |
+
}
|
6661 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
6662 |
+
.hidden-md {
|
6663 |
+
display: none !important;
|
6664 |
+
}
|
6665 |
+
}
|
6666 |
+
@media (min-width: 1200px) {
|
6667 |
+
.hidden-lg {
|
6668 |
+
display: none !important;
|
6669 |
+
}
|
6670 |
+
}
|
6671 |
+
.visible-print {
|
6672 |
+
display: none !important;
|
6673 |
+
}
|
6674 |
+
@media print {
|
6675 |
+
.visible-print {
|
6676 |
+
display: block !important;
|
6677 |
+
}
|
6678 |
+
table.visible-print {
|
6679 |
+
display: table !important;
|
6680 |
+
}
|
6681 |
+
tr.visible-print {
|
6682 |
+
display: table-row !important;
|
6683 |
+
}
|
6684 |
+
th.visible-print,
|
6685 |
+
td.visible-print {
|
6686 |
+
display: table-cell !important;
|
6687 |
+
}
|
6688 |
+
}
|
6689 |
+
.visible-print-block {
|
6690 |
+
display: none !important;
|
6691 |
+
}
|
6692 |
+
@media print {
|
6693 |
+
.visible-print-block {
|
6694 |
+
display: block !important;
|
6695 |
+
}
|
6696 |
+
}
|
6697 |
+
.visible-print-inline {
|
6698 |
+
display: none !important;
|
6699 |
+
}
|
6700 |
+
@media print {
|
6701 |
+
.visible-print-inline {
|
6702 |
+
display: inline !important;
|
6703 |
+
}
|
6704 |
+
}
|
6705 |
+
.visible-print-inline-block {
|
6706 |
+
display: none !important;
|
6707 |
+
}
|
6708 |
+
@media print {
|
6709 |
+
.visible-print-inline-block {
|
6710 |
+
display: inline-block !important;
|
6711 |
+
}
|
6712 |
+
}
|
6713 |
+
@media print {
|
6714 |
+
.hidden-print {
|
6715 |
+
display: none !important;
|
6716 |
+
}
|
6717 |
+
}
|
6718 |
+
|
6719 |
+
#wpwrap{
|
6720 |
+
background:#eee;
|
6721 |
+
}
|
6722 |
+
|
6723 |
+
#adminmenuback {
|
6724 |
+
z-index: 0 !important;
|
6725 |
+
}
|
6726 |
+
|
6727 |
+
|
6728 |
+
.btn-success, .label-success{
|
6729 |
+
background-color: #79B232 !important;
|
6730 |
+
}
|
6731 |
+
|
6732 |
+
.btn-primary, .label-primary{
|
6733 |
+
background-color: #337ab7 !important;
|
6734 |
+
}
|
6735 |
+
|
6736 |
+
|
6737 |
+
.updated a {
|
6738 |
+
padding-bottom: 10px !important;
|
6739 |
+
}
|
6740 |
+
|
6741 |
+
p {
|
6742 |
+
margin: 0 0 2px !important;
|
6743 |
+
}
|
6744 |
+
|
6745 |
+
.margin-auto{
|
6746 |
+
margin: 0 auto;
|
6747 |
+
text-align: center;
|
6748 |
+
}
|
6749 |
+
|
6750 |
+
.list-group-item{
|
6751 |
+
padding: 8px !important;
|
6752 |
+
}
|
6753 |
+
|
6754 |
+
.glyphicon-success{
|
6755 |
+
color: #79B232;
|
6756 |
+
}
|
6757 |
+
.glyphicon-warning{
|
6758 |
+
color: #eea236;
|
6759 |
+
}
|
6760 |
+
.glyphicon-info{
|
6761 |
+
color: #337ab7;
|
6762 |
+
}
|
6763 |
+
.glyphicon-grey{
|
6764 |
+
color: #76777b;
|
6765 |
+
}
|
6766 |
+
|
6767 |
+
.glyphicon-primary{
|
6768 |
+
color: #2e6da4;
|
6769 |
+
}
|
6770 |
+
.glyphicon-danger{
|
6771 |
+
color: #a94442;
|
6772 |
+
}
|
6773 |
+
.glyphicon-lg{
|
6774 |
+
font-size: 18px;
|
6775 |
+
}
|
6776 |
+
|
6777 |
+
.btn-group-xl > .btn, .btn-xl {
|
6778 |
+
border-radius: 6px;
|
6779 |
+
font-size: 24px;
|
6780 |
+
line-height: 1.33333;
|
6781 |
+
padding: 10px 5px 5px 5px;
|
6782 |
+
}
|
6783 |
+
|
6784 |
+
/*B2S Inbox*/
|
6785 |
+
.b2s-inbox .b2s-inbox-menu ul {
|
6786 |
+
padding: 0;
|
6787 |
+
list-style: none
|
6788 |
+
}
|
6789 |
+
|
6790 |
+
.b2s-inbox .b2s-inbox-menu ul li {
|
6791 |
+
position: relative
|
6792 |
+
}
|
6793 |
+
|
6794 |
+
.b2s-inbox .b2s-inbox-menu ul li.title {
|
6795 |
+
font-size: 14px;
|
6796 |
+
color: #3d3f42;
|
6797 |
+
font-weight: 600;
|
6798 |
+
}
|
6799 |
+
|
6800 |
+
.b2s-inbox .b2s-inbox-menu ul li.title:hover {
|
6801 |
+
background: 0 0
|
6802 |
+
}
|
6803 |
+
|
6804 |
+
.b2s-inbox .b2s-inbox-menu ul li a {
|
6805 |
+
display: block;
|
6806 |
+
width: 100%;
|
6807 |
+
text-decoration: none;
|
6808 |
+
}
|
6809 |
+
|
6810 |
+
.b2s-inbox .b2s-inbox-menu ul li a i {
|
6811 |
+
margin-right: 10px
|
6812 |
+
}
|
6813 |
+
|
6814 |
+
.b2s-inbox .b2s-inbox-menu ul li a .label {
|
6815 |
+
position: absolute;
|
6816 |
+
top:0px;
|
6817 |
+
right: 2px;
|
6818 |
+
display: block;
|
6819 |
+
min-width: 18px;
|
6820 |
+
height: 18px;
|
6821 |
+
padding: 2px;
|
6822 |
+
font-size: 12px;
|
6823 |
+
}
|
6824 |
+
|
6825 |
+
|
6826 |
+
.b2s-inbox-menu .title{
|
6827 |
+
font-size: 14px;
|
6828 |
+
color: #3d3f42;
|
6829 |
+
font-weight: 600;
|
6830 |
+
}
|
6831 |
+
|
6832 |
+
/* Posts */
|
6833 |
+
|
6834 |
+
.b2s-post h3 {
|
6835 |
+
margin-top: 5px;
|
6836 |
+
}
|
6837 |
+
|
6838 |
+
@media(max-width: 400px) {
|
6839 |
+
.b2s-post h3 {
|
6840 |
+
font-size: 16px !important;
|
6841 |
+
}
|
6842 |
+
}
|
6843 |
+
|
6844 |
+
.b2s-post .list-group li {
|
6845 |
+
padding: 15px 20px 12px 20px;
|
6846 |
+
cursor: pointer;
|
6847 |
+
}
|
6848 |
+
|
6849 |
+
.b2s-post .list-group li:hover {
|
6850 |
+
background: #eee;
|
6851 |
+
}
|
6852 |
+
|
6853 |
+
.b2s-post .fa-padding .fa {
|
6854 |
+
padding-top: 5px;
|
6855 |
+
width: 1.5em;
|
6856 |
+
}
|
6857 |
+
|
6858 |
+
.b2s-post .info {
|
6859 |
+
color: #323b43;
|
6860 |
+
margin: 0px;
|
6861 |
+
}
|
6862 |
+
|
6863 |
+
.b2s-post .info a:hover {
|
6864 |
+
text-decoration: underline;
|
6865 |
+
}
|
6866 |
+
|
6867 |
+
.b2s-post .info .fa {
|
6868 |
+
width: 1.5em;
|
6869 |
+
text-align: center;
|
6870 |
+
}
|
6871 |
+
|
6872 |
+
.b2s-post .number {
|
6873 |
+
color: #777;
|
6874 |
+
}
|
6875 |
+
|
6876 |
+
.b2s-post img {
|
6877 |
+
margin: 0 auto;
|
6878 |
+
display: block;
|
6879 |
+
}
|
6880 |
+
|
6881 |
+
.b2s-post .modal-body {
|
6882 |
+
padding-bottom: 0px;
|
6883 |
+
}
|
6884 |
+
|
6885 |
+
/*B2S Banner Premium Version */
|
6886 |
+
.b2s-premium-version-banner .icon {
|
6887 |
+
float: left;
|
6888 |
+
margin: 12px 8px 8px 12px;
|
6889 |
+
}
|
6890 |
+
|
6891 |
+
.b2s-premium-version-banner .icon img {
|
6892 |
+
max-width: 60px;
|
6893 |
+
}
|
6894 |
+
|
6895 |
+
.b2s-premium-version-banner .text {
|
6896 |
+
color: #000;
|
6897 |
+
float: left;
|
6898 |
+
font-size: 18px;
|
6899 |
+
line-height: 26px;
|
6900 |
+
margin: 18px 18px 14px;
|
6901 |
+
max-width: 80%;
|
6902 |
+
width: auto;
|
6903 |
+
}
|
6904 |
+
.b2s-premium-version-banner .text span {
|
6905 |
+
font-size: 14px;
|
6906 |
+
opacity: 0.6;
|
6907 |
+
}
|
6908 |
+
.b2s-premium-version-banner .premium-button {
|
6909 |
+
margin: 18px 40px;
|
6910 |
+
}
|
6911 |
+
|
6912 |
+
|
6913 |
+
/*PRG Custom */
|
6914 |
+
.prg-logo{
|
6915 |
+
max-height: 40px;
|
6916 |
+
}
|
6917 |
+
|
6918 |
+
.prg-padding-bottom-30{
|
6919 |
+
padding-bottom:30px;
|
6920 |
+
}
|
6921 |
+
|
6922 |
+
.nav-tabs {
|
6923 |
+
border-bottom: 0 !important;
|
6924 |
+
padding-bottom: 10px;
|
6925 |
+
}
|
6926 |
+
|
6927 |
+
.nav-tabs {
|
6928 |
+
border-bottom: 0 !important;
|
6929 |
+
padding-bottom: 10px;
|
6930 |
+
}
|
6931 |
+
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
6932 |
+
background-color: #337AB7 !important;
|
6933 |
+
color: #fff;
|
6934 |
+
font-weight: 600;
|
6935 |
+
}
|
6936 |
+
|
6937 |
+
.nav-tabs > li > a {
|
6938 |
+
border-radius: 4px !important;
|
6939 |
+
}
|
6940 |
+
|
6941 |
+
.nav > li > a {
|
6942 |
+
padding: 4px 6px;
|
6943 |
+
}
|
6944 |
+
|
6945 |
+
.panel-min-height{
|
6946 |
+
min-height: 760px;
|
6947 |
+
}
|
6948 |
+
|
6949 |
+
.img-error{
|
6950 |
+
display: block;
|
6951 |
+
margin: 0 auto 35px;
|
6952 |
+
}
|
6953 |
+
|
6954 |
+
/* B2S Custom */
|
6955 |
+
.b2s-container{
|
6956 |
+
margin-top:15px;
|
6957 |
+
font-family: "Open Sans",Arial,sans-serif;
|
6958 |
+
font-weight: 500;
|
6959 |
+
}
|
6960 |
+
|
6961 |
+
.b2s-select,.b2s-input,.b2s-select-area{
|
6962 |
+
height: 30px !important;
|
6963 |
+
margin-bottom: 8px !important;
|
6964 |
+
}
|
6965 |
+
|
6966 |
+
.b2s-btn-logo{
|
6967 |
+
font-weight: 600 !important;
|
6968 |
+
font-size: 22px !important;
|
6969 |
+
line-height: 0.89999 !important;
|
6970 |
+
padding:5px 5px !important;
|
6971 |
+
color: #337ab7 !important;
|
6972 |
+
margin-top: 0px;
|
6973 |
+
text-decoration: none !important;
|
6974 |
+
}
|
6975 |
+
|
6976 |
+
.b2s-img-logo{
|
6977 |
+
min-width: 2.5em;
|
6978 |
+
}
|
6979 |
+
|
6980 |
+
.b2s-sidebar{
|
6981 |
+
max-width: 320px;
|
6982 |
+
}
|
6983 |
+
|
6984 |
+
.b2s-sidebar-version{
|
6985 |
+
font-size: 12px !important;
|
6986 |
+
white-space:nowrap;
|
6987 |
+
}
|
6988 |
+
|
6989 |
+
.b2s-sidebar-btn-licence{
|
6990 |
+
font-size: 14px !important;
|
6991 |
+
}
|
6992 |
+
|
6993 |
+
.b2s-sidebar-btn-licence{
|
6994 |
+
text-decoration: underline;
|
6995 |
+
}
|
6996 |
+
|
6997 |
+
.b2s-sidebar-licence{
|
6998 |
+
font-size: 14px !important;
|
6999 |
+
padding-top: 5px;
|
7000 |
+
font-weight: 600;
|
7001 |
+
}
|
7002 |
+
|
7003 |
+
.b2s-sidebar-licence-btn-edit{
|
7004 |
+
padding-left: 5px;
|
7005 |
+
color: #adadad;
|
7006 |
+
}
|
7007 |
+
|
7008 |
+
@media(max-width:1150px){
|
7009 |
+
.b2s-sidebar-licence-btn-edit{
|
7010 |
+
display: none;
|
7011 |
+
}
|
7012 |
+
}
|
7013 |
+
|
7014 |
+
|
7015 |
+
.b2s-sidebar-head-text{
|
7016 |
+
text-transform: uppercase;
|
7017 |
+
font-size: 14px;
|
7018 |
+
font-weight: 600;
|
7019 |
+
margin-bottom:8px;
|
7020 |
+
}
|
7021 |
+
.b2s-sidebar-menu-item{
|
7022 |
+
padding-left: 10px;
|
7023 |
+
font-weight: 400;
|
7024 |
+
font-size: 15px !important;
|
7025 |
+
line-height: 1.1333333;
|
7026 |
+
color: #337ab7 !important;
|
7027 |
+
line-height: 0.89999 !important;
|
7028 |
+
}
|
7029 |
+
|
7030 |
+
|
7031 |
+
.b2s-list-margin-left-10{
|
7032 |
+
margin-left: 10px !important;
|
7033 |
+
margin-bottom: 10px;
|
7034 |
+
}
|
7035 |
+
|
7036 |
+
.b2s-info-sm{
|
7037 |
+
font-size: 12px !important;
|
7038 |
+
}
|
7039 |
+
|
7040 |
+
h4{
|
7041 |
+
font-size: 18px;
|
7042 |
+
margin-top: 10px;
|
7043 |
+
}
|
7044 |
+
|
7045 |
+
.b2s-blog-news-title{
|
7046 |
+
font-size: 14px !important;
|
7047 |
+
margin-top: 0px !important;
|
7048 |
+
}
|
7049 |
+
|
7050 |
+
.b2s-loading-area, .prg-loading-area{
|
7051 |
+
width: 80%;
|
7052 |
+
float:left;
|
7053 |
+
text-align: center;
|
7054 |
+
}
|
7055 |
+
|
7056 |
+
.prg-loading-area{
|
7057 |
+
padding-top:25px;
|
7058 |
+
}
|
7059 |
+
|
7060 |
+
.del-padding-left {
|
7061 |
+
padding-left: 0px !important;
|
7062 |
+
}
|
7063 |
+
|
7064 |
+
.add-padding-left{
|
7065 |
+
padding: 0 15px;
|
7066 |
+
}
|
7067 |
+
|
7068 |
+
.add-margin-bottom-10{
|
7069 |
+
margin-bottom: 10px;
|
7070 |
+
}
|
7071 |
+
|
7072 |
+
.add-margin-top-10{
|
7073 |
+
margin-top: 10px;
|
7074 |
+
}
|
7075 |
+
|
7076 |
+
.del-padding-right {
|
7077 |
+
padding-right: 5px !important;
|
7078 |
+
}
|
7079 |
+
|
7080 |
+
.padding-bottom-10{
|
7081 |
+
padding-bottom: 10px;
|
7082 |
+
}
|
7083 |
+
|
7084 |
+
.padding-top-10{
|
7085 |
+
padding-top: 10px;
|
7086 |
+
}
|
7087 |
+
.vertical-middle{
|
7088 |
+
vertical-align: middle;
|
7089 |
+
}
|
7090 |
+
|
7091 |
+
.padding-left-5{
|
7092 |
+
padding-left: 5px;
|
7093 |
+
}
|
7094 |
+
|
7095 |
+
.padding-left-15{
|
7096 |
+
padding-left: 15px;
|
7097 |
+
}
|
7098 |
+
.margin-right-15{
|
7099 |
+
margin-right: 15px;
|
7100 |
+
}
|
7101 |
+
|
7102 |
+
.b2s-support-area {
|
7103 |
+
margin-bottom: 20px;
|
7104 |
+
}
|
7105 |
+
|
7106 |
+
.b2s-post-menu {
|
7107 |
+
padding-bottom: 10px;
|
7108 |
+
border-bottom: 1px solid #dedede;
|
7109 |
+
margin-bottom: 10px;
|
7110 |
+
width: 100%;
|
7111 |
+
}
|
7112 |
+
|
7113 |
+
.thumbnail-blog{
|
7114 |
+
padding: 1px;
|
7115 |
+
max-width: 84px;
|
7116 |
+
margin-right: 10px;
|
7117 |
+
}
|
7118 |
+
|
7119 |
+
@media(max-width: 549px) {
|
7120 |
+
.b2s-post-btn {
|
7121 |
+
width: 100%;
|
7122 |
+
}
|
7123 |
+
}
|
7124 |
+
|
7125 |
+
.b2s-img-network{
|
7126 |
+
width: 48px;
|
7127 |
+
margin-top: 3px;
|
7128 |
+
}
|
7129 |
+
|
7130 |
+
.post-img-10{
|
7131 |
+
margin-top: 10px;
|
7132 |
+
}
|
7133 |
+
.post-img-5{
|
7134 |
+
margin-top: 5px;
|
7135 |
+
}
|
7136 |
+
.img-width-9{
|
7137 |
+
max-width: 9%;
|
7138 |
+
}
|
7139 |
+
|
7140 |
+
.width-100{
|
7141 |
+
width: 100%;
|
7142 |
+
}
|
7143 |
+
|
7144 |
+
.error{
|
7145 |
+
border: 1px solid #FF0000 !important;
|
7146 |
+
}
|
7147 |
+
|
7148 |
+
input[type="checkbox"].error, select.error{
|
7149 |
+
border: 1px solid #cccccc !important;
|
7150 |
+
}
|
7151 |
+
|
7152 |
+
input[type="checkbox"].error + label{
|
7153 |
+
color: #FF0000;
|
7154 |
+
}
|
7155 |
+
|
7156 |
+
.b2s-loader-impulse, .prg-loader-impulse{
|
7157 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
7158 |
+
border-radius: 100%;
|
7159 |
+
margin: 0 auto;
|
7160 |
+
}
|
7161 |
+
.b2s-loader-impulse{
|
7162 |
+
background-color: #79b331;
|
7163 |
+
}
|
7164 |
+
.prg-loader-impulse{
|
7165 |
+
background-color: #FDBF45;
|
7166 |
+
}
|
7167 |
+
.b2s-loader-impulse-md,.prg-loader-impulse-md {
|
7168 |
+
height: 64px;
|
7169 |
+
width: 64px;
|
7170 |
+
}
|
7171 |
+
|
7172 |
+
.b2s-loader-impulse-sm,.prg-loader-impulse-sm {
|
7173 |
+
height: 32px;
|
7174 |
+
width: 32px;
|
7175 |
+
}
|
7176 |
+
|
7177 |
+
@keyframes sk-pulseScaleOut {
|
7178 |
+
0% {
|
7179 |
+
-webkit-transform: scale(0);
|
7180 |
+
transform: scale(0); }
|
7181 |
+
100% {
|
7182 |
+
-webkit-transform: scale(1);
|
7183 |
+
transform: scale(1);
|
7184 |
+
opacity: 0; }
|
7185 |
+
}
|
7186 |
+
|
7187 |
+
.b2s-loader-text{
|
7188 |
+
font-size: 80%;
|
7189 |
+
}
|
7190 |
+
|
7191 |
+
.clearfix{
|
7192 |
+
display: block !important;
|
7193 |
+
}
|
7194 |
+
|
7195 |
+
.b2s-color-green{
|
7196 |
+
color: #79b232;
|
7197 |
+
}
|
7198 |
+
.b2s-color-black{
|
7199 |
+
color: #444;
|
7200 |
+
}
|
7201 |
+
|
7202 |
+
.b2s-version-info{
|
7203 |
+
font-size: 12px;
|
7204 |
+
}
|
7205 |
+
|
7206 |
+
.panel-no-shadow{
|
7207 |
+
-webkit-box-shadow: none;
|
7208 |
+
-moz-box-shadow: none;
|
7209 |
+
box-shadow: none;
|
7210 |
+
|
7211 |
+
}
|
7212 |
+
.panel-no-padding{
|
7213 |
+
padding: 0px;
|
7214 |
+
}
|
7215 |
+
|
7216 |
+
.btn-circle {
|
7217 |
+
width: 30px;
|
7218 |
+
height: 30px;
|
7219 |
+
text-align: center;
|
7220 |
+
padding: 6px 0;
|
7221 |
+
font-size: 12px;
|
7222 |
+
line-height: 1.428571429;
|
7223 |
+
border-radius: 15px;
|
7224 |
+
}
|
7225 |
+
.btn-circle.btn-lg {
|
7226 |
+
width: 50px;
|
7227 |
+
height: 50px;
|
7228 |
+
padding: 10px 16px;
|
7229 |
+
font-size: 18px;
|
7230 |
+
line-height: 1.33;
|
7231 |
+
border-radius: 25px;
|
7232 |
+
}
|
7233 |
+
.btn-circle.btn-xl {
|
7234 |
+
width: 70px;
|
7235 |
+
height: 70px;
|
7236 |
+
padding: 10px 16px;
|
7237 |
+
font-size: 24px;
|
7238 |
+
line-height: 1.33;
|
7239 |
+
border-radius: 35px;
|
7240 |
+
}
|
7241 |
+
|
7242 |
+
.b2s-info-btn {
|
7243 |
+
font-size: 12px;
|
7244 |
+
text-decoration: underline;
|
7245 |
+
}
|
7246 |
+
|
7247 |
+
.b2s-btn-disabled{
|
7248 |
+
opacity: .53;
|
7249 |
+
}
|
7250 |
+
|
7251 |
+
.label-sm{
|
7252 |
+
font-size: 60%;
|
7253 |
+
}
|
7254 |
+
|
7255 |
+
.btn-label-premium {
|
7256 |
+
color: #fff !important;
|
7257 |
+
}
|
7258 |
+
.btn-label-premium-xs {
|
7259 |
+
font-size: 11px !important;
|
7260 |
+
}
|
7261 |
+
|
7262 |
+
/*#adminmenu .toplevel_page_blog2social ul li:last-child{
|
7263 |
+
background-color: #79B232;
|
7264 |
+
}
|
7265 |
+
#adminmenu .toplevel_page_blog2social ul li:last-child a{
|
7266 |
+
color: #fff !important;
|
7267 |
+
}
|
7268 |
+
#adminmenu .toplevel_page_blog2social ul li:last-child:hover a{
|
7269 |
+
text-decoration: underline;
|
7270 |
+
}*/
|
7271 |
+
|
7272 |
+
#adminmenu .toplevel_page_blog2social a[href="admin.php?page=blog2social-premium"] {
|
7273 |
+
text-decoration: none !important;
|
7274 |
+
}
|
7275 |
+
|
7276 |
+
.b2s-close{
|
7277 |
+
color:#aaa;
|
7278 |
+
float:right;
|
7279 |
+
cursor:pointer;
|
7280 |
+
font-weight: 600;
|
7281 |
+
font-size: 18px;
|
7282 |
+
}
|
7283 |
+
.b2s-notice-buttons{
|
7284 |
+
padding-top:10px;
|
7285 |
+
display: flex;
|
7286 |
+
justify-content: space-between
|
7287 |
+
}
|
7288 |
+
.b2s-notice{
|
7289 |
+
border-left: 5px solid #79B232;
|
7290 |
+
}
|
7291 |
+
|
7292 |
+
.margin-top-8{
|
7293 |
+
margin-top: -8px;
|
7294 |
+
}
|
7295 |
+
|
7296 |
+
.b2s-key-name{
|
7297 |
+
color: #79B232;
|
7298 |
+
font-weight: 700;
|
7299 |
+
}
|
7300 |
+
.b2s-disabled-div{
|
7301 |
+
opacity: 0.5;
|
7302 |
+
}
|
7303 |
+
|
7304 |
+
.b2s-glyphicon-xl{
|
7305 |
+
font-size: 50px;
|
7306 |
+
}
|
7307 |
+
.b2s-text-xl{
|
7308 |
+
font-size: 18px;
|
7309 |
+
}
|
7310 |
+
.b2s-text-bold{
|
7311 |
+
font-weight: 600;
|
7312 |
+
}
|
7313 |
+
|
7314 |
+
|
7315 |
+
/* ---------------------------------------------------
|
7316 |
+
CSS CheckBOX
|
7317 |
+
---------------------------------------------------- */
|
7318 |
+
|
7319 |
+
.checkbox.checbox-switch {
|
7320 |
+
padding-left: 0;
|
7321 |
+
}
|
7322 |
+
|
7323 |
+
.checkbox.checbox-switch label,
|
7324 |
+
.checkbox-inline.checbox-switch {
|
7325 |
+
display: inline-block;
|
7326 |
+
position: relative;
|
7327 |
+
padding-left: 0;
|
7328 |
+
}
|
7329 |
+
.checkbox.checbox-switch label input,
|
7330 |
+
.checkbox-inline.checbox-switch input {
|
7331 |
+
display: none;
|
7332 |
+
}
|
7333 |
+
.checkbox.checbox-switch label span,
|
7334 |
+
.checkbox-inline.checbox-switch span {
|
7335 |
+
width: 35px;
|
7336 |
+
border-radius: 20px;
|
7337 |
+
height: 18px;
|
7338 |
+
border: 1px solid #dbdbdb;
|
7339 |
+
background-color: rgb(255, 255, 255);
|
7340 |
+
border-color: rgb(223, 223, 223);
|
7341 |
+
box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
|
7342 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
|
7343 |
+
display: inline-block;
|
7344 |
+
vertical-align: middle;
|
7345 |
+
margin-right: 5px;
|
7346 |
+
}
|
7347 |
+
.checkbox.checbox-switch label span:before,
|
7348 |
+
.checkbox-inline.checbox-switch span:before {
|
7349 |
+
display: inline-block;
|
7350 |
+
width: 16px;
|
7351 |
+
height: 16px;
|
7352 |
+
border-radius: 50%;
|
7353 |
+
background: rgb(255,255,255);
|
7354 |
+
content: " ";
|
7355 |
+
top: 0;
|
7356 |
+
position: relative;
|
7357 |
+
left: 0;
|
7358 |
+
transition: all 0.3s ease;
|
7359 |
+
box-shadow: 0 1px 4px rgba(0,0,0,0.4);
|
7360 |
+
}
|
7361 |
+
.checkbox.checbox-switch label > input:checked + span:before,
|
7362 |
+
.checkbox-inline.checbox-switch > input:checked + span:before {
|
7363 |
+
left: 17px;
|
7364 |
+
}
|
7365 |
+
|
7366 |
+
|
7367 |
+
/* Switch Default */
|
7368 |
+
.checkbox.checbox-switch label > input:checked + span,
|
7369 |
+
.checkbox-inline.checbox-switch > input:checked + span {
|
7370 |
+
background-color: rgb(180, 182, 183);
|
7371 |
+
border-color: rgb(180, 182, 183);
|
7372 |
+
box-shadow: rgb(180, 182, 183) 0px 0px 0px 8px inset;
|
7373 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7374 |
+
}
|
7375 |
+
.checkbox.checbox-switch label > input:checked:disabled + span,
|
7376 |
+
.checkbox-inline.checbox-switch > input:checked:disabled + span {
|
7377 |
+
background-color: rgb(220, 220, 220);
|
7378 |
+
border-color: rgb(220, 220, 220);
|
7379 |
+
box-shadow: rgb(220, 220, 220) 0px 0px 0px 8px inset;
|
7380 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7381 |
+
}
|
7382 |
+
.checkbox.checbox-switch label > input:disabled + span,
|
7383 |
+
.checkbox-inline.checbox-switch > input:disabled + span {
|
7384 |
+
background-color: rgb(232,235,238);
|
7385 |
+
border-color: rgb(255,255,255);
|
7386 |
+
}
|
7387 |
+
.checkbox.checbox-switch label > input:disabled + span:before,
|
7388 |
+
.checkbox-inline.checbox-switch > input:disabled + span:before {
|
7389 |
+
background-color: rgb(248,249,250);
|
7390 |
+
border-color: rgb(243, 243, 243);
|
7391 |
+
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
7392 |
+
}
|
7393 |
+
|
7394 |
+
/* Switch Light */
|
7395 |
+
.checkbox.checbox-switch.switch-light label > input:checked + span,
|
7396 |
+
.checkbox-inline.checbox-switch.switch-light > input:checked + span {
|
7397 |
+
background-color: rgb(248,249,250);
|
7398 |
+
border-color: rgb(248,249,250);
|
7399 |
+
box-shadow: rgb(248,249,250) 0px 0px 0px 8px inset;
|
7400 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7401 |
+
}
|
7402 |
+
|
7403 |
+
/* Switch Dark */
|
7404 |
+
.checkbox.checbox-switch.switch-dark label > input:checked + span,
|
7405 |
+
.checkbox-inline.checbox-switch.switch-dark > input:checked + span {
|
7406 |
+
background-color: rgb(52,58,64);
|
7407 |
+
border-color: rgb(52,58,64);
|
7408 |
+
box-shadow: rgb(52,58,64) 0px 0px 0px 8px inset;
|
7409 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7410 |
+
}
|
7411 |
+
.checkbox.checbox-switch.switch-dark label > input:checked:disabled + span,
|
7412 |
+
.checkbox-inline.checbox-switch.switch-dark > input:checked:disabled + span {
|
7413 |
+
background-color: rgb(100, 102, 104);
|
7414 |
+
border-color: rgb(100, 102, 104);
|
7415 |
+
box-shadow: rgb(100, 102, 104) 0px 0px 0px 8px inset;
|
7416 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7417 |
+
}
|
7418 |
+
|
7419 |
+
/* Switch Success */
|
7420 |
+
.checkbox.checbox-switch.switch-success label > input:checked + span,
|
7421 |
+
.checkbox-inline.checbox-switch.switch-success > input:checked + span {
|
7422 |
+
background-color: rgb(40, 167, 69);
|
7423 |
+
border-color: rgb(40, 167, 69);
|
7424 |
+
box-shadow: rgb(40, 167, 69) 0px 0px 0px 8px inset;
|
7425 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7426 |
+
}
|
7427 |
+
.checkbox.checbox-switch.switch-success label > input:checked:disabled + span,
|
7428 |
+
.checkbox-inline.checbox-switch.switch-success > input:checked:disabled + span {
|
7429 |
+
background-color: rgb(153, 217, 168);
|
7430 |
+
border-color: rgb(153, 217, 168);
|
7431 |
+
box-shadow: rgb(153, 217, 168) 0px 0px 0px 8px inset;
|
7432 |
+
}
|
7433 |
+
|
7434 |
+
/* Switch Danger */
|
7435 |
+
.checkbox.checbox-switch.switch-danger label > input:checked + span,
|
7436 |
+
.checkbox-inline.checbox-switch.switch-danger > input:checked + span {
|
7437 |
+
background-color: rgb(200, 35, 51);
|
7438 |
+
border-color: rgb(200, 35, 51);
|
7439 |
+
box-shadow: rgb(200, 35, 51) 0px 0px 0px 8px inset;
|
7440 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7441 |
+
}
|
7442 |
+
.checkbox.checbox-switch.switch-danger label > input:checked:disabled + span,
|
7443 |
+
.checkbox-inline.checbox-switch.switch-danger > input:checked:disabled + span {
|
7444 |
+
background-color: rgb(216, 119, 129);
|
7445 |
+
border-color: rgb(216, 119, 129);
|
7446 |
+
box-shadow: rgb(216, 119, 129) 0px 0px 0px 8px inset;
|
7447 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7448 |
+
}
|
7449 |
+
|
7450 |
+
/* Switch Primary */
|
7451 |
+
.checkbox.checbox-switch.switch-primary label > input:checked + span,
|
7452 |
+
.checkbox-inline.checbox-switch.switch-primary > input:checked + span {
|
7453 |
+
background-color: rgb(0, 105, 217);
|
7454 |
+
border-color: rgb(0, 105, 217);
|
7455 |
+
box-shadow: rgb(0, 105, 217) 0px 0px 0px 8px inset;
|
7456 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7457 |
+
}
|
7458 |
+
.checkbox.checbox-switch.switch-primary label > input:checked:disabled + span,
|
7459 |
+
.checkbox-inline.checbox-switch.switch-primary > input:checked:disabled + span {
|
7460 |
+
background-color: rgb(109, 163, 221);
|
7461 |
+
border-color: rgb(109, 163, 221);
|
7462 |
+
box-shadow: rgb(109, 163, 221) 0px 0px 0px 8px inset;
|
7463 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7464 |
+
}
|
7465 |
+
|
7466 |
+
/* Switch Info */
|
7467 |
+
.checkbox.checbox-switch.switch-info label > input:checked + span,
|
7468 |
+
.checkbox-inline.checbox-switch.switch-info > input:checked + span {
|
7469 |
+
background-color: rgb(23, 162, 184);
|
7470 |
+
border-color: rgb(23, 162, 184);
|
7471 |
+
box-shadow: rgb(23, 162, 184) 0px 0px 0px 8px inset;
|
7472 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7473 |
+
}
|
7474 |
+
.checkbox.checbox-switch.switch-info label > input:checked:disabled + span,
|
7475 |
+
.checkbox-inline.checbox-switch.switch-info > input:checked:disabled + span {
|
7476 |
+
background-color: rgb(102, 192, 206);
|
7477 |
+
border-color: rgb(102, 192, 206);
|
7478 |
+
box-shadow: rgb(102, 192, 206) 0px 0px 0px 8px inset;
|
7479 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7480 |
+
}
|
7481 |
+
|
7482 |
+
/* Switch Warning */
|
7483 |
+
.checkbox.checbox-switch.switch-warning label > input:checked + span,
|
7484 |
+
.checkbox-inline.checbox-switch.switch-warning > input:checked + span {
|
7485 |
+
background-color: rgb(255, 193, 7);
|
7486 |
+
border-color: rgb(255, 193, 7);
|
7487 |
+
box-shadow: rgb(255, 193, 7) 0px 0px 0px 8px inset;
|
7488 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7489 |
+
}
|
7490 |
+
.checkbox.checbox-switch.switch-warning label > input:checked:disabled + span,
|
7491 |
+
.checkbox-inline.checbox-switch.switch-warning > input:checked:disabled + span {
|
7492 |
+
background-color: rgb(226, 195, 102);
|
7493 |
+
border-color: rgb(226, 195, 102);
|
7494 |
+
box-shadow: rgb(226, 195, 102) 0px 0px 0px 8px inset;
|
7495 |
+
transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
|
7496 |
+
}
|
7497 |
+
|
7498 |
+
/* Modal Scrollbar */
|
7499 |
+
.b2s-scroll-modal-dialog{
|
7500 |
+
overflow-y: initial !important
|
7501 |
+
}
|
7502 |
+
.b2s-scroll-modal-body{
|
7503 |
+
height: 250px;
|
7504 |
+
overflow-y: auto;
|
7505 |
+
}
|
7506 |
+
|
7507 |
+
|
7508 |
+
.b2s-scroll-modal-down {
|
7509 |
+
opacity: 1;
|
7510 |
+
-webkit-transition: all .5s ease-in 3s;
|
7511 |
+
transition: all .5s ease-in 3s;
|
7512 |
+
}
|
7513 |
+
|
7514 |
+
.b2s-scroll-modal-down {
|
7515 |
+
position: absolute;
|
7516 |
+
bottom: 50px;
|
7517 |
+
left: 50%;
|
7518 |
+
margin-left: -16px;
|
7519 |
+
display: block;
|
7520 |
+
width: 32px;
|
7521 |
+
height: 32px;
|
7522 |
+
border: 2px solid #398439;
|
7523 |
+
background-size: 14px auto;
|
7524 |
+
border-radius: 50%;
|
7525 |
+
z-index: 20000;
|
7526 |
+
-webkit-animation: bounce 2s infinite 2s;
|
7527 |
+
animation: bounce 2s infinite 2s;
|
7528 |
+
-webkit-transition: all .2s ease-in;
|
7529 |
+
transition: all .2s ease-in;
|
7530 |
+
}
|
7531 |
+
|
7532 |
+
.b2s-scroll-modal-down:before {
|
7533 |
+
position: absolute;
|
7534 |
+
top: calc(50% - 8px);
|
7535 |
+
left: calc(50% - 6px);
|
7536 |
+
transform: rotate(-45deg);
|
7537 |
+
display: block;
|
7538 |
+
width: 12px;
|
7539 |
+
height: 12px;
|
7540 |
+
content: "";
|
7541 |
+
border: 2px solid #398439;
|
7542 |
+
border-width: 0px 0 2px 2px;
|
7543 |
+
}
|
7544 |
+
|
7545 |
+
@keyframes bounce {
|
7546 |
+
0%,
|
7547 |
+
100%,
|
7548 |
+
20%,
|
7549 |
+
50%,
|
7550 |
+
80% {
|
7551 |
+
-webkit-transform: translateY(0);
|
7552 |
+
-ms-transform: translateY(0);
|
7553 |
+
transform: translateY(0);
|
7554 |
+
}
|
7555 |
+
40% {
|
7556 |
+
-webkit-transform: translateY(-10px);
|
7557 |
+
-ms-transform: translateY(-10px);
|
7558 |
+
transform: translateY(-10px);
|
7559 |
+
}
|
7560 |
+
60% {
|
7561 |
+
-webkit-transform: translateY(-5px);
|
7562 |
+
-ms-transform: translateY(-5px);
|
7563 |
+
transform: translateY(-5px);
|
7564 |
+
}
|
7565 |
+
}
|
7566 |
+
|
7567 |
+
.btn-padding{
|
7568 |
+
padding:6px 0px;
|
7569 |
+
}
|
7570 |
+
|
7571 |
+
.b2s-color-white{
|
7572 |
+
color:#fff;
|
7573 |
+
}
|
7574 |
+
|
7575 |
+
.b2s-color-grey{
|
7576 |
+
color: #72777c !important;
|
7577 |
+
}
|
7578 |
+
|
7579 |
+
.b2s-modal-info-key-area{
|
7580 |
+
width: 350px !important;
|
7581 |
+
}
|
7582 |
+
.b2s-text-underline{
|
7583 |
+
text-decoration: underline;
|
7584 |
+
}
|
7585 |
+
|
7586 |
+
.b2s-feature-img-with-24{
|
7587 |
+
max-width: 24px !important;
|
7588 |
+
}
|
7589 |
+
|
7590 |
+
.b2s-padding-bottom-5{
|
7591 |
+
padding-bottom: 5px;
|
7592 |
+
}
|
7593 |
+
|
7594 |
+
.b2s-left-border-success {
|
7595 |
+
border-left: 4px solid #79B232;
|
7596 |
+
}
|
7597 |
+
|
7598 |
+
.b2s-left-border-danger {
|
7599 |
+
border-left: 4px solid #a94442;
|
7600 |
}
|
assets/css/notice.css
CHANGED
@@ -1,46 +1,46 @@
|
|
1 |
-
.b2s-notice-premium{
|
2 |
-
background: #fff none repeat scroll 0 0;
|
3 |
-
border: 1px solid #d4d4d4;
|
4 |
-
margin: 12px 0;
|
5 |
-
overflow: hidden;
|
6 |
-
position: relative;
|
7 |
-
}
|
8 |
-
|
9 |
-
.b2s-icon{
|
10 |
-
float: left;
|
11 |
-
}
|
12 |
-
.b2s-img{
|
13 |
-
max-height: 180px;
|
14 |
-
}
|
15 |
-
|
16 |
-
.b2s-text{
|
17 |
-
color: #000;
|
18 |
-
float: left;
|
19 |
-
font-size: 15px;
|
20 |
-
line-height: 22px;
|
21 |
-
max-width: 60%;
|
22 |
-
width: auto;
|
23 |
-
}
|
24 |
-
|
25 |
-
.b2s-text > span{
|
26 |
-
font-size: 14px;
|
27 |
-
opacity: 0.7;
|
28 |
-
}
|
29 |
-
|
30 |
-
.b2s-btn-premium {
|
31 |
-
background: #79B232 none repeat scroll 0 0;
|
32 |
-
border: medium none;
|
33 |
-
border-radius: 3px;
|
34 |
-
box-shadow: none;
|
35 |
-
color: #fff;
|
36 |
-
float: right;
|
37 |
-
font-size: 14px;
|
38 |
-
font-weight: bold;
|
39 |
-
line-height: 26px;
|
40 |
-
margin: 18px 40px;
|
41 |
-
padding: 12px 29px;
|
42 |
-
text-align: center;
|
43 |
-
text-decoration: none;
|
44 |
-
text-shadow: none;
|
45 |
-
text-transform: uppercase;
|
46 |
}
|
1 |
+
.b2s-notice-premium{
|
2 |
+
background: #fff none repeat scroll 0 0;
|
3 |
+
border: 1px solid #d4d4d4;
|
4 |
+
margin: 12px 0;
|
5 |
+
overflow: hidden;
|
6 |
+
position: relative;
|
7 |
+
}
|
8 |
+
|
9 |
+
.b2s-icon{
|
10 |
+
float: left;
|
11 |
+
}
|
12 |
+
.b2s-img{
|
13 |
+
max-height: 180px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.b2s-text{
|
17 |
+
color: #000;
|
18 |
+
float: left;
|
19 |
+
font-size: 15px;
|
20 |
+
line-height: 22px;
|
21 |
+
max-width: 60%;
|
22 |
+
width: auto;
|
23 |
+
}
|
24 |
+
|
25 |
+
.b2s-text > span{
|
26 |
+
font-size: 14px;
|
27 |
+
opacity: 0.7;
|
28 |
+
}
|
29 |
+
|
30 |
+
.b2s-btn-premium {
|
31 |
+
background: #79B232 none repeat scroll 0 0;
|
32 |
+
border: medium none;
|
33 |
+
border-radius: 3px;
|
34 |
+
box-shadow: none;
|
35 |
+
color: #fff;
|
36 |
+
float: right;
|
37 |
+
font-size: 14px;
|
38 |
+
font-weight: bold;
|
39 |
+
line-height: 26px;
|
40 |
+
margin: 18px 40px;
|
41 |
+
padding: 12px 29px;
|
42 |
+
text-align: center;
|
43 |
+
text-decoration: none;
|
44 |
+
text-shadow: none;
|
45 |
+
text-transform: uppercase;
|
46 |
}
|
assets/css/prg/login.css
CHANGED
@@ -1,26 +1,26 @@
|
|
1 |
-
.login-form {
|
2 |
-
margin-top: 60px;
|
3 |
-
}
|
4 |
-
|
5 |
-
form {
|
6 |
-
padding: 10px;
|
7 |
-
}
|
8 |
-
form a img {
|
9 |
-
display: block;
|
10 |
-
margin: 0 auto;
|
11 |
-
margin-bottom: 35px;
|
12 |
-
}
|
13 |
-
form input,
|
14 |
-
form button {
|
15 |
-
font-size: 18px;
|
16 |
-
margin: 16px 0;
|
17 |
-
}
|
18 |
-
form > div {
|
19 |
-
text-align: center;
|
20 |
-
}
|
21 |
-
|
22 |
-
.form-info {
|
23 |
-
text-align: center;
|
24 |
-
margin-top: 1em;
|
25 |
-
margin-bottom: 20px;
|
26 |
-
}
|
1 |
+
.login-form {
|
2 |
+
margin-top: 60px;
|
3 |
+
}
|
4 |
+
|
5 |
+
form {
|
6 |
+
padding: 10px;
|
7 |
+
}
|
8 |
+
form a img {
|
9 |
+
display: block;
|
10 |
+
margin: 0 auto;
|
11 |
+
margin-bottom: 35px;
|
12 |
+
}
|
13 |
+
form input,
|
14 |
+
form button {
|
15 |
+
font-size: 18px;
|
16 |
+
margin: 16px 0;
|
17 |
+
}
|
18 |
+
form > div {
|
19 |
+
text-align: center;
|
20 |
+
}
|
21 |
+
|
22 |
+
.form-info {
|
23 |
+
text-align: center;
|
24 |
+
margin-top: 1em;
|
25 |
+
margin-bottom: 20px;
|
26 |
+
}
|
assets/css/prg/post.css
CHANGED
@@ -1,29 +1,29 @@
|
|
1 |
-
.form-inline {
|
2 |
-
width: 100%;
|
3 |
-
margin-bottom: 20px;
|
4 |
-
}
|
5 |
-
.form-inline .form-group {
|
6 |
-
margin-left: 2px;
|
7 |
-
}
|
8 |
-
@media(max-width: 549px) {
|
9 |
-
.form-inline button, .form-inline a {
|
10 |
-
width: 100%;
|
11 |
-
margin-bottom: 10px;
|
12 |
-
}
|
13 |
-
}
|
14 |
-
@media(max-width: 767px) {
|
15 |
-
.form-inline {
|
16 |
-
display: none;
|
17 |
-
}
|
18 |
-
.filterHide {
|
19 |
-
display: none;
|
20 |
-
}
|
21 |
-
.form-inline button ,.form-inline a {
|
22 |
-
width: 49%;
|
23 |
-
margin-bottom: 10px;
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
#prgLogoutBtn{
|
28 |
-
margin-top: 5px;
|
29 |
}
|
1 |
+
.form-inline {
|
2 |
+
width: 100%;
|
3 |
+
margin-bottom: 20px;
|
4 |
+
}
|
5 |
+
.form-inline .form-group {
|
6 |
+
margin-left: 2px;
|
7 |
+
}
|
8 |
+
@media(max-width: 549px) {
|
9 |
+
.form-inline button, .form-inline a {
|
10 |
+
width: 100%;
|
11 |
+
margin-bottom: 10px;
|
12 |
+
}
|
13 |
+
}
|
14 |
+
@media(max-width: 767px) {
|
15 |
+
.form-inline {
|
16 |
+
display: none;
|
17 |
+
}
|
18 |
+
.filterHide {
|
19 |
+
display: none;
|
20 |
+
}
|
21 |
+
.form-inline button ,.form-inline a {
|
22 |
+
width: 49%;
|
23 |
+
margin-bottom: 10px;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
|
27 |
+
#prgLogoutBtn{
|
28 |
+
margin-top: 5px;
|
29 |
}
|
assets/css/prg/ship.css
CHANGED
@@ -1,36 +1,36 @@
|
|
1 |
-
.prg-image-item{
|
2 |
-
background-color: #fff;
|
3 |
-
border: 1px solid #ddd;
|
4 |
-
display: block;
|
5 |
-
float: left;
|
6 |
-
height: 180px;
|
7 |
-
line-height: 1.42857;
|
8 |
-
margin-bottom: 5px;
|
9 |
-
margin-left: 5px;
|
10 |
-
overflow: hidden;
|
11 |
-
padding: 4px;
|
12 |
-
|
13 |
-
transition: border 0.2s ease-in-out 0s;
|
14 |
-
width: 185px;
|
15 |
-
}
|
16 |
-
.img-thumbnail{
|
17 |
-
display: block !important;
|
18 |
-
height: auto;
|
19 |
-
margin-left: auto;
|
20 |
-
margin-right: auto;
|
21 |
-
max-height: 100%;
|
22 |
-
}
|
23 |
-
|
24 |
-
.prg-image-item-thumb{
|
25 |
-
height: 150px;
|
26 |
-
}
|
27 |
-
.prg-image-item-thumb label{
|
28 |
-
display: inline;
|
29 |
-
}
|
30 |
-
.prg-image-item-caption{
|
31 |
-
color: #333;
|
32 |
-
|
33 |
-
}
|
34 |
-
#prgLogoutBtn{
|
35 |
-
margin-top: 5px;
|
36 |
}
|
1 |
+
.prg-image-item{
|
2 |
+
background-color: #fff;
|
3 |
+
border: 1px solid #ddd;
|
4 |
+
display: block;
|
5 |
+
float: left;
|
6 |
+
height: 180px;
|
7 |
+
line-height: 1.42857;
|
8 |
+
margin-bottom: 5px;
|
9 |
+
margin-left: 5px;
|
10 |
+
overflow: hidden;
|
11 |
+
padding: 4px;
|
12 |
+
|
13 |
+
transition: border 0.2s ease-in-out 0s;
|
14 |
+
width: 185px;
|
15 |
+
}
|
16 |
+
.img-thumbnail{
|
17 |
+
display: block !important;
|
18 |
+
height: auto;
|
19 |
+
margin-left: auto;
|
20 |
+
margin-right: auto;
|
21 |
+
max-height: 100%;
|
22 |
+
}
|
23 |
+
|
24 |
+
.prg-image-item-thumb{
|
25 |
+
height: 150px;
|
26 |
+
}
|
27 |
+
.prg-image-item-thumb label{
|
28 |
+
display: inline;
|
29 |
+
}
|
30 |
+
.prg-image-item-caption{
|
31 |
+
color: #333;
|
32 |
+
|
33 |
+
}
|
34 |
+
#prgLogoutBtn{
|
35 |
+
margin-top: 5px;
|
36 |
}
|
assets/fonts/glyphicons-halflings-regular.svg
CHANGED
@@ -1,288 +1,288 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata></metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
|
7 |
-
<font-face units-per-em="1200" ascent="960" descent="-240" />
|
8 |
-
<missing-glyph horiz-adv-x="500" />
|
9 |
-
<glyph horiz-adv-x="0" />
|
10 |
-
<glyph horiz-adv-x="400" />
|
11 |
-
<glyph unicode=" " />
|
12 |
-
<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
|
13 |
-
<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
|
14 |
-
<glyph unicode=" " />
|
15 |
-
<glyph unicode="¥" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
|
16 |
-
<glyph unicode=" " horiz-adv-x="650" />
|
17 |
-
<glyph unicode=" " horiz-adv-x="1300" />
|
18 |
-
<glyph unicode=" " horiz-adv-x="650" />
|
19 |
-
<glyph unicode=" " horiz-adv-x="1300" />
|
20 |
-
<glyph unicode=" " horiz-adv-x="433" />
|
21 |
-
<glyph unicode=" " horiz-adv-x="325" />
|
22 |
-
<glyph unicode=" " horiz-adv-x="216" />
|
23 |
-
<glyph unicode=" " horiz-adv-x="216" />
|
24 |
-
<glyph unicode=" " horiz-adv-x="162" />
|
25 |
-
<glyph unicode=" " horiz-adv-x="260" />
|
26 |
-
<glyph unicode=" " horiz-adv-x="72" />
|
27 |
-
<glyph unicode=" " horiz-adv-x="260" />
|
28 |
-
<glyph unicode=" " horiz-adv-x="325" />
|
29 |
-
<glyph unicode="€" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
|
30 |
-
<glyph unicode="₽" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
|
31 |
-
<glyph unicode="−" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
32 |
-
<glyph unicode="⌛" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
|
33 |
-
<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" />
|
34 |
-
<glyph unicode="☁" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
|
35 |
-
<glyph unicode="⛺" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
|
36 |
-
<glyph unicode="✉" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
|
37 |
-
<glyph unicode="✏" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
|
38 |
-
<glyph unicode="" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
|
39 |
-
<glyph unicode="" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
|
40 |
-
<glyph unicode="" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
|
41 |
-
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
|
42 |
-
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
|
43 |
-
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
|
44 |
-
<glyph unicode="" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
|
45 |
-
<glyph unicode="" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
|
46 |
-
<glyph unicode="" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
47 |
-
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
|
48 |
-
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
49 |
-
<glyph unicode="" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
|
50 |
-
<glyph unicode="" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
|
51 |
-
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
|
52 |
-
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
53 |
-
<glyph unicode="" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
|
54 |
-
<glyph unicode="" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
|
55 |
-
<glyph unicode="" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
|
56 |
-
<glyph unicode="" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
|
57 |
-
<glyph unicode="" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
|
58 |
-
<glyph unicode="" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
|
59 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
|
60 |
-
<glyph unicode="" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
|
61 |
-
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
|
62 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
|
63 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
|
64 |
-
<glyph unicode="" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
|
65 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
66 |
-
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
|
67 |
-
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
|
68 |
-
<glyph unicode="" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
|
69 |
-
<glyph unicode="" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
|
70 |
-
<glyph unicode="" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
|
71 |
-
<glyph unicode="" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
|
72 |
-
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
|
73 |
-
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
|
74 |
-
<glyph unicode="" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
|
75 |
-
<glyph unicode="" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
|
76 |
-
<glyph unicode="" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
|
77 |
-
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
78 |
-
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
79 |
-
<glyph unicode="" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
|
80 |
-
<glyph unicode="" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
|
81 |
-
<glyph unicode="" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
|
82 |
-
<glyph unicode="" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
|
83 |
-
<glyph unicode="" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
|
84 |
-
<glyph unicode="" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
|
85 |
-
<glyph unicode="" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
|
86 |
-
<glyph unicode="" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
|
87 |
-
<glyph unicode="" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
|
88 |
-
<glyph unicode="" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
89 |
-
<glyph unicode="" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
90 |
-
<glyph unicode="" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
91 |
-
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
92 |
-
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
93 |
-
<glyph unicode="" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
94 |
-
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
95 |
-
<glyph unicode="" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
|
96 |
-
<glyph unicode="" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
|
97 |
-
<glyph unicode="" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
|
98 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
|
99 |
-
<glyph unicode="" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
|
100 |
-
<glyph unicode="" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
|
101 |
-
<glyph unicode="" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
|
102 |
-
<glyph unicode="" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
|
103 |
-
<glyph unicode="" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
|
104 |
-
<glyph unicode="" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
105 |
-
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
106 |
-
<glyph unicode="" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
|
107 |
-
<glyph unicode="" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
|
108 |
-
<glyph unicode="" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
|
109 |
-
<glyph unicode="" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
|
110 |
-
<glyph unicode="" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
|
111 |
-
<glyph unicode="" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
|
112 |
-
<glyph unicode="" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
|
113 |
-
<glyph unicode="" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
114 |
-
<glyph unicode="" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
|
115 |
-
<glyph unicode="" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
|
116 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
|
117 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
|
118 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
|
119 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
|
120 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
121 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
122 |
-
<glyph unicode="" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
|
123 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
|
124 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
|
125 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
|
126 |
-
<glyph unicode="" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
|
127 |
-
<glyph unicode="" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
|
128 |
-
<glyph unicode="" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
|
129 |
-
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
|
130 |
-
<glyph unicode="" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
|
131 |
-
<glyph unicode="" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
|
132 |
-
<glyph unicode="" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
|
133 |
-
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
134 |
-
<glyph unicode="" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
|
135 |
-
<glyph unicode="" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
|
136 |
-
<glyph unicode="" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
|
137 |
-
<glyph unicode="" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
138 |
-
<glyph unicode="" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
139 |
-
<glyph unicode="" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
|
140 |
-
<glyph unicode="" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
|
141 |
-
<glyph unicode="" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
|
142 |
-
<glyph unicode="" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
|
143 |
-
<glyph unicode="" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
|
144 |
-
<glyph unicode="" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
|
145 |
-
<glyph unicode="" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
|
146 |
-
<glyph unicode="" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
|
147 |
-
<glyph unicode="" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
148 |
-
<glyph unicode="" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
|
149 |
-
<glyph unicode="" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
|
150 |
-
<glyph unicode="" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
|
151 |
-
<glyph unicode="" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
152 |
-
<glyph unicode="" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
|
153 |
-
<glyph unicode="" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
|
154 |
-
<glyph unicode="" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
|
155 |
-
<glyph unicode="" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
|
156 |
-
<glyph unicode="" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
|
157 |
-
<glyph unicode="" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
|
158 |
-
<glyph unicode="" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
|
159 |
-
<glyph unicode="" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
|
160 |
-
<glyph unicode="" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
|
161 |
-
<glyph unicode="" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
162 |
-
<glyph unicode="" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
|
163 |
-
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
|
164 |
-
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
|
165 |
-
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
|
166 |
-
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
167 |
-
<glyph unicode="" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
|
168 |
-
<glyph unicode="" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
|
169 |
-
<glyph unicode="" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
|
170 |
-
<glyph unicode="" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
|
171 |
-
<glyph unicode="" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
|
172 |
-
<glyph unicode="" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
|
173 |
-
<glyph unicode="" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
|
174 |
-
<glyph unicode="" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
|
175 |
-
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
|
176 |
-
<glyph unicode="" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
|
177 |
-
<glyph unicode="" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
|
178 |
-
<glyph unicode="" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
|
179 |
-
<glyph unicode="" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
|
180 |
-
<glyph unicode="" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
|
181 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
182 |
-
<glyph unicode="" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
|
183 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
|
184 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
|
185 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
|
186 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
|
187 |
-
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
|
188 |
-
<glyph unicode="" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
|
189 |
-
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
190 |
-
<glyph unicode="" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
|
191 |
-
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
|
192 |
-
<glyph unicode="" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
193 |
-
<glyph unicode="" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
|
194 |
-
<glyph unicode="" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
195 |
-
<glyph unicode="" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
|
196 |
-
<glyph unicode="" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
|
197 |
-
<glyph unicode="" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
198 |
-
<glyph unicode="" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
199 |
-
<glyph unicode="" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
|
200 |
-
<glyph unicode="" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
201 |
-
<glyph unicode="" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
202 |
-
<glyph unicode="" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
|
203 |
-
<glyph unicode="" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
|
204 |
-
<glyph unicode="" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
|
205 |
-
<glyph unicode="" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
|
206 |
-
<glyph unicode="" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
|
207 |
-
<glyph unicode="" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
|
208 |
-
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
|
209 |
-
<glyph unicode="" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
|
210 |
-
<glyph unicode="" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
|
211 |
-
<glyph unicode="" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
|
212 |
-
<glyph unicode="" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
|
213 |
-
<glyph unicode="" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
|
214 |
-
<glyph unicode="" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
|
215 |
-
<glyph unicode="" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
216 |
-
<glyph unicode="" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
|
217 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
218 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
219 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
|
220 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
|
221 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
|
222 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
|
223 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
|
224 |
-
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
|
225 |
-
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
|
226 |
-
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
|
227 |
-
<glyph unicode="" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
|
228 |
-
<glyph unicode="" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
|
229 |
-
<glyph unicode="" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
|
230 |
-
<glyph unicode="" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
|
231 |
-
<glyph unicode="" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
|
232 |
-
<glyph unicode="" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
|
233 |
-
<glyph unicode="" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
|
234 |
-
<glyph unicode="" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
|
235 |
-
<glyph unicode="" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
|
236 |
-
<glyph unicode="" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
|
237 |
-
<glyph unicode="" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
|
238 |
-
<glyph unicode="" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
239 |
-
<glyph unicode="" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
240 |
-
<glyph unicode="" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
241 |
-
<glyph unicode="" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
242 |
-
<glyph unicode="" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
243 |
-
<glyph unicode="" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
244 |
-
<glyph unicode="" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
|
245 |
-
<glyph unicode="" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
|
246 |
-
<glyph unicode="" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
|
247 |
-
<glyph unicode="" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
|
248 |
-
<glyph unicode="" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
|
249 |
-
<glyph unicode="" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
|
250 |
-
<glyph unicode="" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
|
251 |
-
<glyph unicode="" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
|
252 |
-
<glyph unicode="" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
|
253 |
-
<glyph unicode="" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
|
254 |
-
<glyph unicode="" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
255 |
-
<glyph unicode="" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
256 |
-
<glyph unicode="" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
|
257 |
-
<glyph unicode="" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
258 |
-
<glyph unicode="" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
259 |
-
<glyph unicode="" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
260 |
-
<glyph unicode="" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
|
261 |
-
<glyph unicode="" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
|
262 |
-
<glyph unicode="" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
|
263 |
-
<glyph unicode="" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
|
264 |
-
<glyph unicode="" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
|
265 |
-
<glyph unicode="" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
|
266 |
-
<glyph unicode="" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
|
267 |
-
<glyph unicode="" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
|
268 |
-
<glyph unicode="" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
|
269 |
-
<glyph unicode="" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
|
270 |
-
<glyph unicode="" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
271 |
-
<glyph unicode="" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
|
272 |
-
<glyph unicode="" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
273 |
-
<glyph unicode="" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
|
274 |
-
<glyph unicode="" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
|
275 |
-
<glyph unicode="" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
|
276 |
-
<glyph unicode="" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
|
277 |
-
<glyph unicode="" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
|
278 |
-
<glyph unicode="" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
|
279 |
-
<glyph unicode="" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
|
280 |
-
<glyph unicode="" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
|
281 |
-
<glyph unicode="" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
|
282 |
-
<glyph unicode="" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
|
283 |
-
<glyph unicode="" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
|
284 |
-
<glyph unicode="" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
|
285 |
-
<glyph unicode="🔑" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
|
286 |
-
<glyph unicode="🚪" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
|
287 |
-
</font>
|
288 |
</defs></svg>
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata></metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
|
7 |
+
<font-face units-per-em="1200" ascent="960" descent="-240" />
|
8 |
+
<missing-glyph horiz-adv-x="500" />
|
9 |
+
<glyph horiz-adv-x="0" />
|
10 |
+
<glyph horiz-adv-x="400" />
|
11 |
+
<glyph unicode=" " />
|
12 |
+
<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
|
13 |
+
<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
|
14 |
+
<glyph unicode=" " />
|
15 |
+
<glyph unicode="¥" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
|
16 |
+
<glyph unicode=" " horiz-adv-x="650" />
|
17 |
+
<glyph unicode=" " horiz-adv-x="1300" />
|
18 |
+
<glyph unicode=" " horiz-adv-x="650" />
|
19 |
+
<glyph unicode=" " horiz-adv-x="1300" />
|
20 |
+
<glyph unicode=" " horiz-adv-x="433" />
|
21 |
+
<glyph unicode=" " horiz-adv-x="325" />
|
22 |
+
<glyph unicode=" " horiz-adv-x="216" />
|
23 |
+
<glyph unicode=" " horiz-adv-x="216" />
|
24 |
+
<glyph unicode=" " horiz-adv-x="162" />
|
25 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
26 |
+
<glyph unicode=" " horiz-adv-x="72" />
|
27 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
28 |
+
<glyph unicode=" " horiz-adv-x="325" />
|
29 |
+
<glyph unicode="€" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
|
30 |
+
<glyph unicode="₽" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
|
31 |
+
<glyph unicode="−" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
32 |
+
<glyph unicode="⌛" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
|
33 |
+
<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" />
|
34 |
+
<glyph unicode="☁" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
|
35 |
+
<glyph unicode="⛺" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
|
36 |
+
<glyph unicode="✉" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
|
37 |
+
<glyph unicode="✏" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
|
38 |
+
<glyph unicode="" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
|
39 |
+
<glyph unicode="" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
|
40 |
+
<glyph unicode="" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
|
41 |
+
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
|
42 |
+
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
|
43 |
+
<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
|
44 |
+
<glyph unicode="" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
|
45 |
+
<glyph unicode="" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
|
46 |
+
<glyph unicode="" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
47 |
+
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
|
48 |
+
<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
|
49 |
+
<glyph unicode="" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
|
50 |
+
<glyph unicode="" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
|
51 |
+
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
|
52 |
+
<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
53 |
+
<glyph unicode="" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
|
54 |
+
<glyph unicode="" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
|
55 |
+
<glyph unicode="" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
|
56 |
+
<glyph unicode="" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
|
57 |
+
<glyph unicode="" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
|
58 |
+
<glyph unicode="" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
|
59 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
|
60 |
+
<glyph unicode="" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
|
61 |
+
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
|
62 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
|
63 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
|
64 |
+
<glyph unicode="" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
|
65 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
66 |
+
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
|
67 |
+
<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
|
68 |
+
<glyph unicode="" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
|
69 |
+
<glyph unicode="" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
|
70 |
+
<glyph unicode="" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
|
71 |
+
<glyph unicode="" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
|
72 |
+
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
|
73 |
+
<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
|
74 |
+
<glyph unicode="" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
|
75 |
+
<glyph unicode="" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
|
76 |
+
<glyph unicode="" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
|
77 |
+
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
78 |
+
<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
|
79 |
+
<glyph unicode="" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
|
80 |
+
<glyph unicode="" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
|
81 |
+
<glyph unicode="" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
|
82 |
+
<glyph unicode="" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
|
83 |
+
<glyph unicode="" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
|
84 |
+
<glyph unicode="" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
|
85 |
+
<glyph unicode="" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
|
86 |
+
<glyph unicode="" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
|
87 |
+
<glyph unicode="" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
|
88 |
+
<glyph unicode="" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
89 |
+
<glyph unicode="" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
90 |
+
<glyph unicode="" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
91 |
+
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
92 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
93 |
+
<glyph unicode="" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
94 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
95 |
+
<glyph unicode="" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
|
96 |
+
<glyph unicode="" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
|
97 |
+
<glyph unicode="" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
|
98 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
|
99 |
+
<glyph unicode="" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
|
100 |
+
<glyph unicode="" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
|
101 |
+
<glyph unicode="" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
|
102 |
+
<glyph unicode="" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
|
103 |
+
<glyph unicode="" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
|
104 |
+
<glyph unicode="" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
105 |
+
<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
|
106 |
+
<glyph unicode="" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
|
107 |
+
<glyph unicode="" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
|
108 |
+
<glyph unicode="" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
|
109 |
+
<glyph unicode="" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
|
110 |
+
<glyph unicode="" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
|
111 |
+
<glyph unicode="" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
|
112 |
+
<glyph unicode="" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
|
113 |
+
<glyph unicode="" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
114 |
+
<glyph unicode="" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
|
115 |
+
<glyph unicode="" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
|
116 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
|
117 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
|
118 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
|
119 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
|
120 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
121 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
122 |
+
<glyph unicode="" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
|
123 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
|
124 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
|
125 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
|
126 |
+
<glyph unicode="" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
|
127 |
+
<glyph unicode="" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
|
128 |
+
<glyph unicode="" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
|
129 |
+
<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
|
130 |
+
<glyph unicode="" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
|
131 |
+
<glyph unicode="" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
|
132 |
+
<glyph unicode="" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
|
133 |
+
<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
|
134 |
+
<glyph unicode="" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
|
135 |
+
<glyph unicode="" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
|
136 |
+
<glyph unicode="" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
|
137 |
+
<glyph unicode="" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
138 |
+
<glyph unicode="" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
|
139 |
+
<glyph unicode="" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
|
140 |
+
<glyph unicode="" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
|
141 |
+
<glyph unicode="" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
|
142 |
+
<glyph unicode="" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
|
143 |
+
<glyph unicode="" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
|
144 |
+
<glyph unicode="" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
|
145 |
+
<glyph unicode="" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
|
146 |
+
<glyph unicode="" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
|
147 |
+
<glyph unicode="" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
148 |
+
<glyph unicode="" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
|
149 |
+
<glyph unicode="" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
|
150 |
+
<glyph unicode="" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
|
151 |
+
<glyph unicode="" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
152 |
+
<glyph unicode="" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
|
153 |
+
<glyph unicode="" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
|
154 |
+
<glyph unicode="" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
|
155 |
+
<glyph unicode="" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
|
156 |
+
<glyph unicode="" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
|
157 |
+
<glyph unicode="" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
|
158 |
+
<glyph unicode="" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
|
159 |
+
<glyph unicode="" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
|
160 |
+
<glyph unicode="" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
|
161 |
+
<glyph unicode="" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
|
162 |
+
<glyph unicode="" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
|
163 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
|
164 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
|
165 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
|
166 |
+
<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
|
167 |
+
<glyph unicode="" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
|
168 |
+
<glyph unicode="" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
|
169 |
+
<glyph unicode="" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
|
170 |
+
<glyph unicode="" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
|
171 |
+
<glyph unicode="" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
|
172 |
+
<glyph unicode="" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
|
173 |
+
<glyph unicode="" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
|
174 |
+
<glyph unicode="" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
|
175 |
+
<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
|
176 |
+
<glyph unicode="" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
|
177 |
+
<glyph unicode="" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
|
178 |
+
<glyph unicode="" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
|
179 |
+
<glyph unicode="" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
|
180 |
+
<glyph unicode="" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
|
181 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
|
182 |
+
<glyph unicode="" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
|
183 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
|
184 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
|
185 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
|
186 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
|
187 |
+
<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
|
188 |
+
<glyph unicode="" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
|
189 |
+
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
|
190 |
+
<glyph unicode="" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
|
191 |
+
<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
|
192 |
+
<glyph unicode="" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
193 |
+
<glyph unicode="" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
|
194 |
+
<glyph unicode="" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
|
195 |
+
<glyph unicode="" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
|
196 |
+
<glyph unicode="" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
|
197 |
+
<glyph unicode="" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
198 |
+
<glyph unicode="" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
|
199 |
+
<glyph unicode="" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
|
200 |
+
<glyph unicode="" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
201 |
+
<glyph unicode="" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
|
202 |
+
<glyph unicode="" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
|
203 |
+
<glyph unicode="" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
|
204 |
+
<glyph unicode="" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
|
205 |
+
<glyph unicode="" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
|
206 |
+
<glyph unicode="" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
|
207 |
+
<glyph unicode="" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
|
208 |
+
<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
|
209 |
+
<glyph unicode="" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
|
210 |
+
<glyph unicode="" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
|
211 |
+
<glyph unicode="" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
|
212 |
+
<glyph unicode="" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
|
213 |
+
<glyph unicode="" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
|
214 |
+
<glyph unicode="" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
|
215 |
+
<glyph unicode="" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
216 |
+
<glyph unicode="" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
|
217 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
218 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
|
219 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
|
220 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
|
221 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
|
222 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
|
223 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
|
224 |
+
<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
|
225 |
+
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
|
226 |
+
<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
|
227 |
+
<glyph unicode="" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
|
228 |
+
<glyph unicode="" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
|
229 |
+
<glyph unicode="" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
|
230 |
+
<glyph unicode="" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
|
231 |
+
<glyph unicode="" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
|
232 |
+
<glyph unicode="" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
|
233 |
+
<glyph unicode="" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
|
234 |
+
<glyph unicode="" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
|
235 |
+
<glyph unicode="" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
|
236 |
+
<glyph unicode="" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
|
237 |
+
<glyph unicode="" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
|
238 |
+
<glyph unicode="" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
239 |
+
<glyph unicode="" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
240 |
+
<glyph unicode="" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
241 |
+
<glyph unicode="" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
242 |
+
<glyph unicode="" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
243 |
+
<glyph unicode="" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
|
244 |
+
<glyph unicode="" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
|
245 |
+
<glyph unicode="" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
|
246 |
+
<glyph unicode="" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
|
247 |
+
<glyph unicode="" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
|
248 |
+
<glyph unicode="" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
|
249 |
+
<glyph unicode="" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
|
250 |
+
<glyph unicode="" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
|
251 |
+
<glyph unicode="" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
|
252 |
+
<glyph unicode="" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
|
253 |
+
<glyph unicode="" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
|
254 |
+
<glyph unicode="" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
255 |
+
<glyph unicode="" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
|
256 |
+
<glyph unicode="" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
|
257 |
+
<glyph unicode="" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
258 |
+
<glyph unicode="" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
259 |
+
<glyph unicode="" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
|
260 |
+
<glyph unicode="" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
|
261 |
+
<glyph unicode="" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
|
262 |
+
<glyph unicode="" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
|
263 |
+
<glyph unicode="" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
|
264 |
+
<glyph unicode="" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
|
265 |
+
<glyph unicode="" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
|
266 |
+
<glyph unicode="" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
|
267 |
+
<glyph unicode="" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
|
268 |
+
<glyph unicode="" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
|
269 |
+
<glyph unicode="" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
|
270 |
+
<glyph unicode="" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
271 |
+
<glyph unicode="" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
|
272 |
+
<glyph unicode="" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
|
273 |
+
<glyph unicode="" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
|
274 |
+
<glyph unicode="" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
|
275 |
+
<glyph unicode="" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
|
276 |
+
<glyph unicode="" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
|
277 |
+
<glyph unicode="" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
|
278 |
+
<glyph unicode="" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
|
279 |
+
<glyph unicode="" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
|
280 |
+
<glyph unicode="" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
|
281 |
+
<glyph unicode="" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
|
282 |
+
<glyph unicode="" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
|
283 |
+
<glyph unicode="" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
|
284 |
+
<glyph unicode="" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
|
285 |
+
<glyph unicode="🔑" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
|
286 |
+
<glyph unicode="🚪" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
|
287 |
+
</font>
|
288 |
</defs></svg>
|
assets/js/b2s/calendar.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
jQuery.noConflict();
|
2 |
|
3 |
var curSource = new Array();
|
4 |
-
curSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=all&filter_status=0';
|
5 |
var newSource = new Array();
|
6 |
|
7 |
jQuery(document).ready(function () {
|
@@ -68,7 +68,8 @@ jQuery(document).ready(function () {
|
|
68 |
'post_for_relay': event.post_for_relay,
|
69 |
'post_for_approve': event.post_for_approve,
|
70 |
'network_type': event.network_type,
|
71 |
-
'nework_id': event.network_id
|
|
|
72 |
},
|
73 |
success: function (data) {
|
74 |
refreshCalender();
|
@@ -119,10 +120,15 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
119 |
async: false,
|
120 |
data: {
|
121 |
'action': 'b2s_get_post_edit_modal',
|
122 |
-
'id': b2s_id
|
|
|
123 |
},
|
124 |
success: function (data) {
|
125 |
-
|
|
|
|
|
|
|
|
|
126 |
}
|
127 |
});
|
128 |
jQuery("body").append($modal);
|
@@ -205,8 +211,8 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
205 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').show();
|
206 |
}
|
207 |
}
|
208 |
-
|
209 |
-
|
210 |
if (network_id == "3") {
|
211 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
212 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
@@ -223,7 +229,7 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
223 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').show();
|
224 |
}
|
225 |
}
|
226 |
-
|
227 |
if (network_id == "19" && network_type == "0") {
|
228 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
229 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
@@ -304,7 +310,7 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
304 |
|
305 |
jQuery(document).on('change', '.b2s-calendar-filter-network-btn', function () {
|
306 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
307 |
-
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).val() + '&filter_status=' + filter_status;
|
308 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
309 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
310 |
curSource[0] = newSource[0];
|
@@ -320,12 +326,17 @@ jQuery(document).on('change', '.b2s-calendar-filter-network-btn', function () {
|
|
320 |
async: false,
|
321 |
data: {
|
322 |
'action': 'b2s_get_calendar_filter_network_auth',
|
323 |
-
'network_id': jQuery(this).val()
|
|
|
324 |
},
|
325 |
success: function (data) {
|
326 |
if (data.result == true) {
|
327 |
jQuery(".b2s-calendar-filter-network-account-list").show();
|
328 |
jQuery(".b2s-calendar-filter-network-account-list").html(data.content);
|
|
|
|
|
|
|
|
|
329 |
}
|
330 |
}
|
331 |
});
|
@@ -338,7 +349,7 @@ jQuery(document).on('change', '#b2s-calendar-filter-network-auth-sel', function
|
|
338 |
var filter_network_details_auth_id = jQuery(this).val();
|
339 |
var filter_network_id = jQuery('.b2s-calendar-filter-network-btn:checked').val();
|
340 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
341 |
-
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=' + filter_network_details_auth_id + '&filter_network=' + filter_network_id + '&filter_status=' + filter_status;
|
342 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
343 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
344 |
curSource[0] = newSource[0];
|
@@ -354,7 +365,7 @@ jQuery(document).on('change', '#b2s-calendar-filter-status', function () {
|
|
354 |
filter_network_details_auth_id = 'all';
|
355 |
}
|
356 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
357 |
-
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=' + filter_network_details_auth_id + '&filter_network=' + filter_network_id + '&filter_status=' + filter_status;
|
358 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
359 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
360 |
curSource[0] = newSource[0];
|
@@ -366,8 +377,8 @@ jQuery(document).on('change', '#b2s-calendar-filter-status', function () {
|
|
366 |
|
367 |
//Modal Edit Post close
|
368 |
jQuery(document).on('click', '.b2s-modal-close-edit-post', function (e) {
|
369 |
-
|
370 |
-
|
371 |
});
|
372 |
|
373 |
|
@@ -469,7 +480,8 @@ function b2sSortFormSubmit() {
|
|
469 |
'b2sSortPostStatus': jQuery('#b2sSortPostStatus').val(),
|
470 |
'b2sSortPostPublishDate': jQuery('#b2sSortPostPublishDate').val(),
|
471 |
'b2sUserLang': jQuery('#b2sUserLang').val(),
|
472 |
-
'b2sSchedDate': jQuery('#b2sSelSchedDate').val()
|
|
|
473 |
};
|
474 |
|
475 |
if (jQuery('#b2sPostsPerPage').length > 0) {
|
@@ -496,7 +508,11 @@ function b2sSortFormSubmit() {
|
|
496 |
jQuery('.b2s-sort-result-item-area').html(data.content).show();
|
497 |
jQuery('.b2s-sort-pagination-area').html(data.pagination).show();
|
498 |
} else {
|
499 |
-
|
|
|
|
|
|
|
|
|
500 |
return false;
|
501 |
}
|
502 |
}
|
@@ -528,10 +544,15 @@ jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
|
528 |
data: {
|
529 |
'action': 'b2s_get_image_modal',
|
530 |
'id': jQuery(this).data('post-id'),
|
531 |
-
'image_url': jQuery(this).data('image-url')
|
|
|
532 |
},
|
533 |
success: function (data) {
|
534 |
-
|
|
|
|
|
|
|
|
|
535 |
}
|
536 |
});
|
537 |
var authId = jQuery(this).data('network-auth-id');
|
@@ -563,7 +584,8 @@ jQuery(document).on("click", ".b2s-edit-post-delete", function () {
|
|
563 |
'b2s_id': id,
|
564 |
'post_id': post_id,
|
565 |
'post_for_relay': post_for_relay,
|
566 |
-
'post_for_approve': post_for_approve
|
|
|
567 |
},
|
568 |
success: function (data) {
|
569 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
@@ -601,8 +623,11 @@ jQuery(document).on("click", ".b2s-edit-post-save-this", function (e) {
|
|
601 |
type: "POST",
|
602 |
dataType: "json",
|
603 |
cache: false,
|
604 |
-
data: jQuery(this).closest("form").serialize(),
|
605 |
success: function (data) {
|
|
|
|
|
|
|
606 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
607 |
refreshCalender();
|
608 |
jQuery('#b2s-edit-event-modal-' + id).remove();
|
@@ -620,9 +645,13 @@ jQuery(document).on("click", ".release_locks", function () {
|
|
620 |
async: false,
|
621 |
data: {
|
622 |
'action': 'b2s_get_calendar_release_locks',
|
623 |
-
'post_id': jQuery('#post_id').val()
|
|
|
624 |
},
|
625 |
success: function (data) {
|
|
|
|
|
|
|
626 |
wp.heartbeat.connectNow();
|
627 |
}
|
628 |
});
|
1 |
jQuery.noConflict();
|
2 |
|
3 |
var curSource = new Array();
|
4 |
+
curSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=all&filter_status=0&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
5 |
var newSource = new Array();
|
6 |
|
7 |
jQuery(document).ready(function () {
|
68 |
'post_for_relay': event.post_for_relay,
|
69 |
'post_for_approve': event.post_for_approve,
|
70 |
'network_type': event.network_type,
|
71 |
+
'nework_id': event.network_id,
|
72 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
73 |
},
|
74 |
success: function (data) {
|
75 |
refreshCalender();
|
120 |
async: false,
|
121 |
data: {
|
122 |
'action': 'b2s_get_post_edit_modal',
|
123 |
+
'id': b2s_id,
|
124 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
125 |
},
|
126 |
success: function (data) {
|
127 |
+
if (data.error == 'nonce') {
|
128 |
+
jQuery('.b2s-nonce-check-fail').show();
|
129 |
+
} else {
|
130 |
+
$modal = $modal.html(data);
|
131 |
+
}
|
132 |
}
|
133 |
});
|
134 |
jQuery("body").append($modal);
|
211 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').show();
|
212 |
}
|
213 |
}
|
214 |
+
|
215 |
+
|
216 |
if (network_id == "3") {
|
217 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
218 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
229 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').show();
|
230 |
}
|
231 |
}
|
232 |
+
|
233 |
if (network_id == "19" && network_type == "0") {
|
234 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
235 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
310 |
|
311 |
jQuery(document).on('change', '.b2s-calendar-filter-network-btn', function () {
|
312 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
313 |
+
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).val() + '&filter_status=' + filter_status + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
314 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
315 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
316 |
curSource[0] = newSource[0];
|
326 |
async: false,
|
327 |
data: {
|
328 |
'action': 'b2s_get_calendar_filter_network_auth',
|
329 |
+
'network_id': jQuery(this).val(),
|
330 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
331 |
},
|
332 |
success: function (data) {
|
333 |
if (data.result == true) {
|
334 |
jQuery(".b2s-calendar-filter-network-account-list").show();
|
335 |
jQuery(".b2s-calendar-filter-network-account-list").html(data.content);
|
336 |
+
} else {
|
337 |
+
if (data.error == 'nonce') {
|
338 |
+
jQuery('.b2s-nonce-check-fail').show();
|
339 |
+
}
|
340 |
}
|
341 |
}
|
342 |
});
|
349 |
var filter_network_details_auth_id = jQuery(this).val();
|
350 |
var filter_network_id = jQuery('.b2s-calendar-filter-network-btn:checked').val();
|
351 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
352 |
+
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=' + filter_network_details_auth_id + '&filter_network=' + filter_network_id + '&filter_status=' + filter_status + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
353 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
354 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
355 |
curSource[0] = newSource[0];
|
365 |
filter_network_details_auth_id = 'all';
|
366 |
}
|
367 |
var filter_status = jQuery('#b2s-calendar-filter-status').val();
|
368 |
+
newSource[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=' + filter_network_details_auth_id + '&filter_network=' + filter_network_id + '&filter_status=' + filter_status + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
369 |
jQuery('#b2s_calendar').fullCalendar('removeEventSource', curSource[0]);
|
370 |
jQuery('#b2s_calendar').fullCalendar('addEventSource', newSource[0]);
|
371 |
curSource[0] = newSource[0];
|
377 |
|
378 |
//Modal Edit Post close
|
379 |
jQuery(document).on('click', '.b2s-modal-close-edit-post', function (e) {
|
380 |
+
jQuery(jQuery(this).attr('data-modal-name')).remove();
|
381 |
+
return false;
|
382 |
});
|
383 |
|
384 |
|
480 |
'b2sSortPostStatus': jQuery('#b2sSortPostStatus').val(),
|
481 |
'b2sSortPostPublishDate': jQuery('#b2sSortPostPublishDate').val(),
|
482 |
'b2sUserLang': jQuery('#b2sUserLang').val(),
|
483 |
+
'b2sSchedDate': jQuery('#b2sSelSchedDate').val(),
|
484 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
485 |
};
|
486 |
|
487 |
if (jQuery('#b2sPostsPerPage').length > 0) {
|
508 |
jQuery('.b2s-sort-result-item-area').html(data.content).show();
|
509 |
jQuery('.b2s-sort-pagination-area').html(data.pagination).show();
|
510 |
} else {
|
511 |
+
if (data.error == 'nonce') {
|
512 |
+
jQuery('.b2s-nonce-check-fail').show();
|
513 |
+
} else {
|
514 |
+
jQuery('.b2s-server-connection-fail').show();
|
515 |
+
}
|
516 |
return false;
|
517 |
}
|
518 |
}
|
544 |
data: {
|
545 |
'action': 'b2s_get_image_modal',
|
546 |
'id': jQuery(this).data('post-id'),
|
547 |
+
'image_url': jQuery(this).data('image-url'),
|
548 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
549 |
},
|
550 |
success: function (data) {
|
551 |
+
if (data.error == 'nonce') {
|
552 |
+
jQuery('.b2s-nonce-check-fail').show();
|
553 |
+
} else {
|
554 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
555 |
+
}
|
556 |
}
|
557 |
});
|
558 |
var authId = jQuery(this).data('network-auth-id');
|
584 |
'b2s_id': id,
|
585 |
'post_id': post_id,
|
586 |
'post_for_relay': post_for_relay,
|
587 |
+
'post_for_approve': post_for_approve,
|
588 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
589 |
},
|
590 |
success: function (data) {
|
591 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
623 |
type: "POST",
|
624 |
dataType: "json",
|
625 |
cache: false,
|
626 |
+
data: jQuery(this).closest("form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
627 |
success: function (data) {
|
628 |
+
if (data.error == 'nonce') {
|
629 |
+
jQuery('.b2s-nonce-check-fail').show();
|
630 |
+
}
|
631 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
632 |
refreshCalender();
|
633 |
jQuery('#b2s-edit-event-modal-' + id).remove();
|
645 |
async: false,
|
646 |
data: {
|
647 |
'action': 'b2s_get_calendar_release_locks',
|
648 |
+
'post_id': jQuery('#post_id').val(),
|
649 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
650 |
},
|
651 |
success: function (data) {
|
652 |
+
if (data.error == 'nonce') {
|
653 |
+
jQuery('.b2s-nonce-check-fail').show();
|
654 |
+
}
|
655 |
wp.heartbeat.connectNow();
|
656 |
}
|
657 |
});
|
assets/js/b2s/curation.draft.js
CHANGED
@@ -1,177 +1,186 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
if (typeof wp.heartbeat !== "undefined") {
|
4 |
-
jQuery(document).on('heartbeat-send', function (e, data) {
|
5 |
-
data['b2s_heartbeat'] = 'b2s_listener';
|
6 |
-
});
|
7 |
-
wp.heartbeat.connectNow();
|
8 |
-
}
|
9 |
-
jQuery(window).on("load", function () {
|
10 |
-
jQuery('#b2sPagination').val("1");
|
11 |
-
b2sSortFormSubmit();
|
12 |
-
});
|
13 |
-
|
14 |
-
function b2sSortFormSubmit() {
|
15 |
-
jQuery('.b2s-server-connection-fail').hide();
|
16 |
-
jQuery('.b2s-loading-area').show();
|
17 |
-
jQuery('.b2s-sort-result-area').hide();
|
18 |
-
jQuery('.b2s-sort-result-item-area').html("").hide();
|
19 |
-
jQuery('.b2s-sort-pagination-area').html("").hide();
|
20 |
-
|
21 |
-
var currentType = jQuery('#b2sType').val();
|
22 |
-
if (currentType != "undefined") {
|
23 |
-
jQuery('.b2s-post-btn').removeClass('btn-primary').addClass('btn-link');
|
24 |
-
jQuery('.b2s-post-' + currentType).removeClass('btn-link').addClass('btn-primary');
|
25 |
-
}
|
26 |
-
|
27 |
-
var data = {
|
28 |
-
'action': 'b2s_sort_data',
|
29 |
-
'b2sSortPostTitle': jQuery('#b2sSortPostTitle').val(),
|
30 |
-
'b2sSortPostAuthor': jQuery('#b2sSortPostAuthor').val(),
|
31 |
-
'b2sUserAuthId': jQuery('#b2sUserAuthId').val(),
|
32 |
-
'b2sPostBlogId': jQuery('#b2sPostBlogId').val(),
|
33 |
-
'b2sType': jQuery('#b2sType').val(),
|
34 |
-
'b2sShowByDate': jQuery('#b2sShowByDate').val(),
|
35 |
-
'b2sPagination': jQuery('#b2sPagination').val(),
|
36 |
-
'b2sShowPagination': jQuery('#b2sShowPagination').length > 0 ? jQuery('#b2sShowPagination').val() : 1,
|
37 |
-
'b2sUserLang': jQuery('#b2sUserLang').val()
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
jQuery('.b2s-
|
70 |
-
jQuery('.b2s-sort-result-
|
71 |
-
jQuery('.b2s-sort-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
}
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
jQuery(
|
95 |
-
jQuery('.b2s-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
jQuery('#
|
149 |
-
jQuery('#
|
150 |
-
jQuery('#
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
jQuery(
|
156 |
-
jQuery('#
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
});
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
if (typeof wp.heartbeat !== "undefined") {
|
4 |
+
jQuery(document).on('heartbeat-send', function (e, data) {
|
5 |
+
data['b2s_heartbeat'] = 'b2s_listener';
|
6 |
+
});
|
7 |
+
wp.heartbeat.connectNow();
|
8 |
+
}
|
9 |
+
jQuery(window).on("load", function () {
|
10 |
+
jQuery('#b2sPagination').val("1");
|
11 |
+
b2sSortFormSubmit();
|
12 |
+
});
|
13 |
+
|
14 |
+
function b2sSortFormSubmit() {
|
15 |
+
jQuery('.b2s-server-connection-fail').hide();
|
16 |
+
jQuery('.b2s-loading-area').show();
|
17 |
+
jQuery('.b2s-sort-result-area').hide();
|
18 |
+
jQuery('.b2s-sort-result-item-area').html("").hide();
|
19 |
+
jQuery('.b2s-sort-pagination-area').html("").hide();
|
20 |
+
|
21 |
+
var currentType = jQuery('#b2sType').val();
|
22 |
+
if (currentType != "undefined") {
|
23 |
+
jQuery('.b2s-post-btn').removeClass('btn-primary').addClass('btn-link');
|
24 |
+
jQuery('.b2s-post-' + currentType).removeClass('btn-link').addClass('btn-primary');
|
25 |
+
}
|
26 |
+
|
27 |
+
var data = {
|
28 |
+
'action': 'b2s_sort_data',
|
29 |
+
'b2sSortPostTitle': jQuery('#b2sSortPostTitle').val(),
|
30 |
+
'b2sSortPostAuthor': jQuery('#b2sSortPostAuthor').val(),
|
31 |
+
'b2sUserAuthId': jQuery('#b2sUserAuthId').val(),
|
32 |
+
'b2sPostBlogId': jQuery('#b2sPostBlogId').val(),
|
33 |
+
'b2sType': jQuery('#b2sType').val(),
|
34 |
+
'b2sShowByDate': jQuery('#b2sShowByDate').val(),
|
35 |
+
'b2sPagination': jQuery('#b2sPagination').val(),
|
36 |
+
'b2sShowPagination': jQuery('#b2sShowPagination').length > 0 ? jQuery('#b2sShowPagination').val() : 1,
|
37 |
+
'b2sUserLang': jQuery('#b2sUserLang').val(),
|
38 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
39 |
+
};
|
40 |
+
|
41 |
+
if (jQuery('#b2sPostsPerPage').length > 0) {
|
42 |
+
data['b2sPostsPerPage'] = jQuery('#b2sPostsPerPage').val();
|
43 |
+
}
|
44 |
+
|
45 |
+
var legacyMode = true;
|
46 |
+
if (jQuery('#isLegacyMode').val() !== undefined) {
|
47 |
+
if (jQuery('#isLegacyMode').val() == "1") {
|
48 |
+
legacyMode = false; // loading is sync (stack)
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
jQuery.ajax({
|
53 |
+
url: ajaxurl,
|
54 |
+
type: "POST",
|
55 |
+
dataType: "json",
|
56 |
+
async: legacyMode,
|
57 |
+
cache: false,
|
58 |
+
data: data,
|
59 |
+
error: function () {
|
60 |
+
jQuery('.b2s-server-connection-fail').show();
|
61 |
+
return false;
|
62 |
+
},
|
63 |
+
success: function (data) {
|
64 |
+
if (typeof data === 'undefined' || data === null) {
|
65 |
+
jQuery('.b2s-server-connection-fail').show();
|
66 |
+
return false;
|
67 |
+
}
|
68 |
+
if (data.result == true) {
|
69 |
+
jQuery('.b2s-loading-area').hide();
|
70 |
+
jQuery('.b2s-sort-result-area').show();
|
71 |
+
jQuery('.b2s-sort-result-item-area').html(data.content).show();
|
72 |
+
jQuery('.b2s-sort-pagination-area').html(data.pagination).show();
|
73 |
+
|
74 |
+
//extern - Routing from dashboard
|
75 |
+
if (jQuery('#b2sPostBlogId').val() !== undefined) {
|
76 |
+
if (jQuery('#b2sPostBlogId').val() != "") {
|
77 |
+
jQuery('.b2sDetailsSchedPostBtn[data-post-id="' + jQuery('#b2sPostBlogId').val() + '"]').trigger('click');
|
78 |
+
}
|
79 |
+
}
|
80 |
+
} else {
|
81 |
+
if (data.error == 'nonce') {
|
82 |
+
jQuery('.b2s-nonce-check-fail').show();
|
83 |
+
} else {
|
84 |
+
jQuery('.b2s-server-connection-fail').show();
|
85 |
+
}
|
86 |
+
return false;
|
87 |
+
}
|
88 |
+
}
|
89 |
+
});
|
90 |
+
}
|
91 |
+
|
92 |
+
jQuery(document).on('click', '.deleteCcDraftBtn', function () {
|
93 |
+
jQuery('#b2s-delete-confirm-post-id').val(jQuery(this).attr('data-blog-post-id'));
|
94 |
+
jQuery('.b2s-delete-cc-draft-modal').modal('show');
|
95 |
+
jQuery('.b2s-delete-cc-draft-confirm-btn').prop('disabeld', false);
|
96 |
+
|
97 |
+
});
|
98 |
+
|
99 |
+
jQuery(document).on('click', '.b2s-delete-cc-draft-confirm-btn', function () {
|
100 |
+
jQuery('.b2s-post-remove-fail').hide();
|
101 |
+
jQuery('.b2s-post-remove-success').hide();
|
102 |
+
jQuery('.b2s-delete-cc-draft-confirm-btn').prop('disabeld', true);
|
103 |
+
jQuery('.b2s-server-connection-fail').hide();
|
104 |
+
jQuery.ajax({
|
105 |
+
url: ajaxurl,
|
106 |
+
type: "POST",
|
107 |
+
dataType: "json",
|
108 |
+
cache: false,
|
109 |
+
data: {
|
110 |
+
'action': 'b2s_delete_user_cc_draft_post',
|
111 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
112 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
113 |
+
},
|
114 |
+
error: function () {
|
115 |
+
jQuery('.b2s-server-connection-fail').show();
|
116 |
+
return false;
|
117 |
+
},
|
118 |
+
success: function (data) {
|
119 |
+
jQuery('.b2s-delete-cc-draft-modal').modal('hide');
|
120 |
+
if (data.result == true) {
|
121 |
+
jQuery('.b2s-list-cc-draft[data-blog-post-id="' + data.postId + '"').remove();
|
122 |
+
/*var count = parseInt(jQuery('.b2s-approve-count[data-post-id="' + data.blogPostId + '"]').html());
|
123 |
+
var newCount = count - data.postCount;
|
124 |
+
jQuery('.b2s-approve-count[data-post-id="' + data.blogPostId + '"]').html(newCount);
|
125 |
+
if (newCount >= 1) {
|
126 |
+
jQuery.each(data.postId, function (i, id) {
|
127 |
+
jQuery('.b2s-post-approve-area-li[data-post-id="' + id + '"]').remove();
|
128 |
+
});
|
129 |
+
} else {
|
130 |
+
jQuery('.b2s-post-approve-area-li[data-post-id="' + data.postId[0] + '"]').closest('ul').closest('li').remove();
|
131 |
+
}*/
|
132 |
+
jQuery('.b2s-post-remove-success').show();
|
133 |
+
} else {
|
134 |
+
if (data.error == 'nonce') {
|
135 |
+
jQuery('.b2s-nonce-check-fail').show();
|
136 |
+
}
|
137 |
+
jQuery('.b2s-post-remove-fail').show();
|
138 |
+
}
|
139 |
+
|
140 |
+
return true;
|
141 |
+
}
|
142 |
+
});
|
143 |
+
});
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
jQuery(document).on('click', '#b2s-sort-reset-btn', function () {
|
148 |
+
jQuery('#b2sPagination').val("1");
|
149 |
+
jQuery('#b2sSortPostTitle').val("");
|
150 |
+
jQuery('#b2sSortPostAuthor').prop('selectedIndex', 0);
|
151 |
+
jQuery('#b2sSortPostCat').prop('selectedIndex', 0);
|
152 |
+
jQuery('#b2sSortPostType').prop('selectedIndex', 0);
|
153 |
+
jQuery('#b2sSortPostSchedDate').prop('selectedIndex', 0);
|
154 |
+
jQuery('#b2sShowByDate').val("");
|
155 |
+
jQuery('#b2sUserAuthId').val("");
|
156 |
+
jQuery('#b2sPostBlogId').val("");
|
157 |
+
jQuery('#b2sShowByNetwork').val("0");
|
158 |
+
jQuery('#b2sSortPostStatus').prop('selectedIndex', 0);
|
159 |
+
jQuery('#b2sSortPostPublishDate').prop('selectedIndex', 0);
|
160 |
+
b2sSortFormSubmit();
|
161 |
+
return false;
|
162 |
+
});
|
163 |
+
|
164 |
+
jQuery(document).on('click', '#b2s-sort-submit-btn', function () {
|
165 |
+
jQuery('#b2sPagination').val("1");
|
166 |
+
b2sSortFormSubmit();
|
167 |
+
return false;
|
168 |
+
});
|
169 |
+
|
170 |
+
jQuery(document).on('click', '.b2s-pagination-btn', function () {
|
171 |
+
jQuery('#b2sPagination').val(jQuery(this).attr('data-page'));
|
172 |
+
b2sSortFormSubmit();
|
173 |
+
return false;
|
174 |
+
});
|
175 |
+
|
176 |
+
jQuery(document).on('change', '.b2s-select', function () {
|
177 |
+
jQuery('#b2sPagination').val("1");
|
178 |
+
b2sSortFormSubmit();
|
179 |
+
return false;
|
180 |
+
});
|
181 |
+
|
182 |
+
jQuery(document).on('keypress', '#b2sSortPostTitle', function (event) {
|
183 |
+
if (event.keyCode == 13) { //Hide Enter
|
184 |
+
return false;
|
185 |
+
}
|
186 |
});
|
assets/js/b2s/curation.js
CHANGED
@@ -1,489 +1,503 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
if (typeof wp.heartbeat !== "undefined") {
|
4 |
-
jQuery(document).on('heartbeat-send', function (e, data) {
|
5 |
-
data['b2s_heartbeat'] = 'b2s_listener';
|
6 |
-
});
|
7 |
-
wp.heartbeat.connectNow();
|
8 |
-
}
|
9 |
-
jQuery(window).on("load", function () {
|
10 |
-
var url_string = window.location.href;
|
11 |
-
var url_param = new URL(url_string);
|
12 |
-
var url = url_param.searchParams.get("url");
|
13 |
-
if (typeof url != "undefined" && url != "" && url != null) {
|
14 |
-
jQuery('#b2s-curation-input-url').val(url);
|
15 |
-
jQuery('.b2s-btn-curation-continue').trigger('click');
|
16 |
-
}
|
17 |
-
});
|
18 |
-
|
19 |
-
jQuery(document).on('click', '.b2s-btn-curation-continue', function () {
|
20 |
-
jQuery('#b2s-curation-input-url-help').hide();
|
21 |
-
var re = new RegExp(/^(https?:\/\/)+[a-zA-Z0-99ÄÖÜöäü-]+(?:\.[a-zA-Z0-99ÄÖÜöäü-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=%.]+$/);
|
22 |
-
var url = jQuery('#b2s-curation-input-url').val();
|
23 |
-
if (re.test(url)) {
|
24 |
-
jQuery('#b2s-curation-input-url').removeClass('error');
|
25 |
-
jQuery('.b2s-loading-area').show();
|
26 |
-
jQuery('.b2s-curation-result-area').show();
|
27 |
-
scrapeDetails(url);
|
28 |
-
} else {
|
29 |
-
jQuery('#b2s-curation-input-url').addClass('error');
|
30 |
-
jQuery('#b2s-curation-input-url-help').show();
|
31 |
-
}
|
32 |
-
return false;
|
33 |
-
});
|
34 |
-
|
35 |
-
jQuery(document).on("keyup", "#b2s-curation-input-url", function () {
|
36 |
-
var url = jQuery(this).val();
|
37 |
-
jQuery(this).removeClass("error");
|
38 |
-
jQuery('#b2s-curation-input-url-help').hide();
|
39 |
-
if (url.length != "0") {
|
40 |
-
if (url.indexOf("http://") == -1 && url.indexOf("https://") == -1) {
|
41 |
-
url = "https://" + url;
|
42 |
-
jQuery(this).val(url);
|
43 |
-
}
|
44 |
-
}
|
45 |
-
return false;
|
46 |
-
});
|
47 |
-
|
48 |
-
jQuery(document).on('click', '.b2s-btn-change-url-preview', function () {
|
49 |
-
jQuery('.b2s-curation-input-area').show();
|
50 |
-
jQuery('.b2s-btn-curation-continue').prop("disabled", false);
|
51 |
-
jQuery('.b2s-curation-settings-area').hide();
|
52 |
-
jQuery('.b2s-curation-preview-area').hide();
|
53 |
-
jQuery('.b2s-server-connection-fail').hide();
|
54 |
-
jQuery('#b2s-curation-no-auth-info').hide();
|
55 |
-
jQuery('#b2s-curation-no-review-info').hide();
|
56 |
-
jQuery('#b2s-curation-no-data-info').hide();
|
57 |
-
return false;
|
58 |
-
});
|
59 |
-
|
60 |
-
jQuery(document).on('change', '#b2s-post-curation-ship-type', function () {
|
61 |
-
if (jQuery(this).val() == 1) {
|
62 |
-
if (jQuery(this).attr('data-user-version') == 0) {
|
63 |
-
jQuery('#b2s-sched-post-modal').modal('show');
|
64 |
-
jQuery(this).val('0');
|
65 |
-
return false;
|
66 |
-
}
|
67 |
-
}
|
68 |
-
|
69 |
-
if (jQuery(this).val() == 1) {
|
70 |
-
jQuery('.b2s-post-curation-ship-date-area').show();
|
71 |
-
jQuery('#b2s-post-curation-ship-date').prop("disabled", false);
|
72 |
-
|
73 |
-
var today = new Date();
|
74 |
-
|
75 |
-
if (jQuery('#b2sSelSchedDate').val() != "") {
|
76 |
-
today.setTime(jQuery('#b2sSelSchedDate').val());
|
77 |
-
}
|
78 |
-
if (today.getMinutes() >= 30) {
|
79 |
-
today.setHours(today.getHours() + 1);
|
80 |
-
today.setMinutes(0);
|
81 |
-
} else {
|
82 |
-
today.setMinutes(30);
|
83 |
-
}
|
84 |
-
|
85 |
-
var setTodayDate = today.getFullYear() + '-' + (padDate(today.getMonth() + 1)) + '-' + padDate(today.getDate()) + ' ' + formatAMPM(today);
|
86 |
-
if (jQuery('#b2s-post-curation-ship-date').attr('data-language') == 'de') {
|
87 |
-
setTodayDate = padDate(today.getDate()) + '.' + (padDate(today.getMonth() + 1)) + '.' + today.getFullYear() + ' ' + padDate(today.getHours()) + ':' + padDate(today.getMinutes());
|
88 |
-
}
|
89 |
-
jQuery('#b2s-post-curation-ship-date').b2sdatepicker({'autoClose': true, 'toggleSelected': false, 'minutesStep': 15, 'minDate': new Date(), 'startDate': today, 'todayButton': new Date(), 'position': 'top left'});
|
90 |
-
|
91 |
-
var curationPicker = jQuery('#b2s-post-curation-ship-date').b2sdatepicker().data('b2sdatepicker');
|
92 |
-
curationPicker.selectDate(new Date(today.getFullYear(), today.getMonth(), today.getDate()));
|
93 |
-
jQuery('#b2s-post-curation-ship-date').val(setTodayDate);
|
94 |
-
|
95 |
-
} else {
|
96 |
-
jQuery('.b2s-post-curation-ship-date-area').hide();
|
97 |
-
jQuery('#b2s-post-curation-ship-date').prop("disabled", true);
|
98 |
-
}
|
99 |
-
});
|
100 |
-
|
101 |
-
function scrapeDetails(url) {
|
102 |
-
var loadSettings = true;
|
103 |
-
if (!jQuery('.b2s-curation-settings-area').is(':empty')) {
|
104 |
-
loadSettings = false;
|
105 |
-
}
|
106 |
-
jQuery('.b2s-curation-input-area').hide();
|
107 |
-
jQuery('.b2s-curation-settings-area').hide();
|
108 |
-
jQuery('.b2s-curation-preview-area').hide();
|
109 |
-
jQuery('.b2s-server-connection-fail').hide();
|
110 |
-
jQuery('#b2s-curation-no-auth-info').hide();
|
111 |
-
jQuery('#b2s-curation-no-review-info').hide();
|
112 |
-
jQuery('#b2s-curation-no-data-info').hide();
|
113 |
-
|
114 |
-
|
115 |
-
jQuery.ajax({
|
116 |
-
url: ajaxurl,
|
117 |
-
type: "POST",
|
118 |
-
dataType: "json",
|
119 |
-
async: true,
|
120 |
-
cache: true,
|
121 |
-
data: {
|
122 |
-
'url': url,
|
123 |
-
'action': 'b2s_scrape_url',
|
124 |
-
'loadSettings': loadSettings,
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
jQuery('.b2s-
|
129 |
-
jQuery('.b2s-
|
130 |
-
jQuery('.b2s-curation-
|
131 |
-
jQuery('
|
132 |
-
jQuery('#b2s-btn-curation-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
jQuery('
|
141 |
-
|
142 |
-
|
143 |
-
jQuery('.b2s-curation-
|
144 |
-
jQuery('.b2s-curation-preview-area').
|
145 |
-
jQuery('
|
146 |
-
jQuery('#b2s-btn-curation-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
var
|
154 |
-
var
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
jQuery('.b2s-
|
171 |
-
}
|
172 |
-
if (data.
|
173 |
-
jQuery('.b2s-curation-
|
174 |
-
jQuery('.b2s-curation-
|
175 |
-
|
176 |
-
|
177 |
-
jQuery('
|
178 |
-
jQuery('
|
179 |
-
|
180 |
-
|
181 |
-
jQuery('
|
182 |
-
jQuery('
|
183 |
-
|
184 |
-
|
185 |
-
jQuery('
|
186 |
-
jQuery('
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
jQuery('#b2s-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
}
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
jQuery(
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
if (jQuery('#b2s-post-curation-
|
227 |
-
jQuery('#b2s-post-curation-
|
228 |
-
noContent = true;
|
229 |
-
}
|
230 |
-
if (
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
jQuery.
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
jQuery('.b2s-loading-area').hide();
|
257 |
-
jQuery('.b2s-curation-post-list-area').
|
258 |
-
jQuery('.b2s-curation-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
}
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
function
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
if (
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
jQuery('
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
jQuery(
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
}
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
jQuery('#b2s-post-curation-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
jQuery.
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
jQuery('.b2s-
|
481 |
-
jQuery('.b2s-curation-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
if (typeof wp.heartbeat !== "undefined") {
|
4 |
+
jQuery(document).on('heartbeat-send', function (e, data) {
|
5 |
+
data['b2s_heartbeat'] = 'b2s_listener';
|
6 |
+
});
|
7 |
+
wp.heartbeat.connectNow();
|
8 |
+
}
|
9 |
+
jQuery(window).on("load", function () {
|
10 |
+
var url_string = window.location.href;
|
11 |
+
var url_param = new URL(url_string);
|
12 |
+
var url = url_param.searchParams.get("url");
|
13 |
+
if (typeof url != "undefined" && url != "" && url != null) {
|
14 |
+
jQuery('#b2s-curation-input-url').val(url);
|
15 |
+
jQuery('.b2s-btn-curation-continue').trigger('click');
|
16 |
+
}
|
17 |
+
});
|
18 |
+
|
19 |
+
jQuery(document).on('click', '.b2s-btn-curation-continue', function () {
|
20 |
+
jQuery('#b2s-curation-input-url-help').hide();
|
21 |
+
var re = new RegExp(/^(https?:\/\/)+[a-zA-Z0-99ÄÖÜöäü-]+(?:\.[a-zA-Z0-99ÄÖÜöäü-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=%.]+$/);
|
22 |
+
var url = jQuery('#b2s-curation-input-url').val();
|
23 |
+
if (re.test(url)) {
|
24 |
+
jQuery('#b2s-curation-input-url').removeClass('error');
|
25 |
+
jQuery('.b2s-loading-area').show();
|
26 |
+
jQuery('.b2s-curation-result-area').show();
|
27 |
+
scrapeDetails(url);
|
28 |
+
} else {
|
29 |
+
jQuery('#b2s-curation-input-url').addClass('error');
|
30 |
+
jQuery('#b2s-curation-input-url-help').show();
|
31 |
+
}
|
32 |
+
return false;
|
33 |
+
});
|
34 |
+
|
35 |
+
jQuery(document).on("keyup", "#b2s-curation-input-url", function () {
|
36 |
+
var url = jQuery(this).val();
|
37 |
+
jQuery(this).removeClass("error");
|
38 |
+
jQuery('#b2s-curation-input-url-help').hide();
|
39 |
+
if (url.length != "0") {
|
40 |
+
if (url.indexOf("http://") == -1 && url.indexOf("https://") == -1) {
|
41 |
+
url = "https://" + url;
|
42 |
+
jQuery(this).val(url);
|
43 |
+
}
|
44 |
+
}
|
45 |
+
return false;
|
46 |
+
});
|
47 |
+
|
48 |
+
jQuery(document).on('click', '.b2s-btn-change-url-preview', function () {
|
49 |
+
jQuery('.b2s-curation-input-area').show();
|
50 |
+
jQuery('.b2s-btn-curation-continue').prop("disabled", false);
|
51 |
+
jQuery('.b2s-curation-settings-area').hide();
|
52 |
+
jQuery('.b2s-curation-preview-area').hide();
|
53 |
+
jQuery('.b2s-server-connection-fail').hide();
|
54 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
55 |
+
jQuery('#b2s-curation-no-review-info').hide();
|
56 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
57 |
+
return false;
|
58 |
+
});
|
59 |
+
|
60 |
+
jQuery(document).on('change', '#b2s-post-curation-ship-type', function () {
|
61 |
+
if (jQuery(this).val() == 1) {
|
62 |
+
if (jQuery(this).attr('data-user-version') == 0) {
|
63 |
+
jQuery('#b2s-sched-post-modal').modal('show');
|
64 |
+
jQuery(this).val('0');
|
65 |
+
return false;
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
+
if (jQuery(this).val() == 1) {
|
70 |
+
jQuery('.b2s-post-curation-ship-date-area').show();
|
71 |
+
jQuery('#b2s-post-curation-ship-date').prop("disabled", false);
|
72 |
+
|
73 |
+
var today = new Date();
|
74 |
+
|
75 |
+
if (jQuery('#b2sSelSchedDate').val() != "") {
|
76 |
+
today.setTime(jQuery('#b2sSelSchedDate').val());
|
77 |
+
}
|
78 |
+
if (today.getMinutes() >= 30) {
|
79 |
+
today.setHours(today.getHours() + 1);
|
80 |
+
today.setMinutes(0);
|
81 |
+
} else {
|
82 |
+
today.setMinutes(30);
|
83 |
+
}
|
84 |
+
|
85 |
+
var setTodayDate = today.getFullYear() + '-' + (padDate(today.getMonth() + 1)) + '-' + padDate(today.getDate()) + ' ' + formatAMPM(today);
|
86 |
+
if (jQuery('#b2s-post-curation-ship-date').attr('data-language') == 'de') {
|
87 |
+
setTodayDate = padDate(today.getDate()) + '.' + (padDate(today.getMonth() + 1)) + '.' + today.getFullYear() + ' ' + padDate(today.getHours()) + ':' + padDate(today.getMinutes());
|
88 |
+
}
|
89 |
+
jQuery('#b2s-post-curation-ship-date').b2sdatepicker({'autoClose': true, 'toggleSelected': false, 'minutesStep': 15, 'minDate': new Date(), 'startDate': today, 'todayButton': new Date(), 'position': 'top left'});
|
90 |
+
|
91 |
+
var curationPicker = jQuery('#b2s-post-curation-ship-date').b2sdatepicker().data('b2sdatepicker');
|
92 |
+
curationPicker.selectDate(new Date(today.getFullYear(), today.getMonth(), today.getDate()));
|
93 |
+
jQuery('#b2s-post-curation-ship-date').val(setTodayDate);
|
94 |
+
|
95 |
+
} else {
|
96 |
+
jQuery('.b2s-post-curation-ship-date-area').hide();
|
97 |
+
jQuery('#b2s-post-curation-ship-date').prop("disabled", true);
|
98 |
+
}
|
99 |
+
});
|
100 |
+
|
101 |
+
function scrapeDetails(url) {
|
102 |
+
var loadSettings = true;
|
103 |
+
if (!jQuery('.b2s-curation-settings-area').is(':empty')) {
|
104 |
+
loadSettings = false;
|
105 |
+
}
|
106 |
+
jQuery('.b2s-curation-input-area').hide();
|
107 |
+
jQuery('.b2s-curation-settings-area').hide();
|
108 |
+
jQuery('.b2s-curation-preview-area').hide();
|
109 |
+
jQuery('.b2s-server-connection-fail').hide();
|
110 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
111 |
+
jQuery('#b2s-curation-no-review-info').hide();
|
112 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
113 |
+
|
114 |
+
|
115 |
+
jQuery.ajax({
|
116 |
+
url: ajaxurl,
|
117 |
+
type: "POST",
|
118 |
+
dataType: "json",
|
119 |
+
async: true,
|
120 |
+
cache: true,
|
121 |
+
data: {
|
122 |
+
'url': url,
|
123 |
+
'action': 'b2s_scrape_url',
|
124 |
+
'loadSettings': loadSettings,
|
125 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
126 |
+
},
|
127 |
+
error: function () {
|
128 |
+
jQuery('.b2s-server-connection-fail').show();
|
129 |
+
jQuery('.b2s-loading-area').hide();
|
130 |
+
jQuery('.b2s-curation-settings-area').hide();
|
131 |
+
jQuery('.b2s-curation-preview-area').hide();
|
132 |
+
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
133 |
+
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
134 |
+
return false;
|
135 |
+
},
|
136 |
+
success: function (data) {
|
137 |
+
jQuery('.b2s-loading-area').hide();
|
138 |
+
if (data.result == true) {
|
139 |
+
if (loadSettings) {
|
140 |
+
jQuery('.b2s-curation-settings-area').html(data.settings);
|
141 |
+
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
142 |
+
}
|
143 |
+
jQuery('.b2s-curation-settings-area').show();
|
144 |
+
jQuery('.b2s-curation-preview-area').html(data.preview);
|
145 |
+
jQuery('.b2s-curation-preview-area').show();
|
146 |
+
jQuery('#b2s-btn-curation-customize').prop("disabled", false);
|
147 |
+
jQuery('#b2s-btn-curation-share').prop("disabled", false);
|
148 |
+
|
149 |
+
//set date + select schedulding
|
150 |
+
if (jQuery('#b2sSelSchedDate').val() != "") {
|
151 |
+
jQuery('#b2s-post-curation-ship-type').val('1').trigger('change');
|
152 |
+
}
|
153 |
+
var url_string = window.location.href;
|
154 |
+
var url_param = new URL(url_string);
|
155 |
+
var postId = url_param.searchParams.get("postId");
|
156 |
+
if (typeof postId != "undefined" && postId != "") {
|
157 |
+
jQuery('#b2s-draft-id').val(postId);
|
158 |
+
}
|
159 |
+
var title = url_param.searchParams.get("title");
|
160 |
+
if (typeof title != "undefined" && title != "" && jQuery('#b2s-post-curation-preview-title').val() == "") {
|
161 |
+
jQuery('#b2s-post-curation-preview-title').val(title);
|
162 |
+
}
|
163 |
+
var comment = url_param.searchParams.get("comment");
|
164 |
+
if (typeof comment != "undefined" && comment != "") {
|
165 |
+
jQuery('#b2s-post-curation-comment').val(comment);
|
166 |
+
}
|
167 |
+
|
168 |
+
} else {
|
169 |
+
if(data.error == 'nonce') {
|
170 |
+
jQuery('.b2s-nonce-check-fail').show();
|
171 |
+
}
|
172 |
+
if (data.preview != "") {
|
173 |
+
jQuery('.b2s-curation-preview-area').html(data.preview);
|
174 |
+
jQuery('.b2s-curation-preview-area').show();
|
175 |
+
}
|
176 |
+
if (data.error == "NO_PREVIEW") {
|
177 |
+
jQuery('.b2s-curation-input-area').show();
|
178 |
+
jQuery('.b2s-curation-settings-area').hide();
|
179 |
+
jQuery('.b2s-curation-preview-area').hide();
|
180 |
+
jQuery('#b2s-curation-no-review-info').show();
|
181 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
182 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
183 |
+
}
|
184 |
+
if (data.error == "NO_AUTH") {
|
185 |
+
jQuery('.b2s-curation-input-area').show();
|
186 |
+
jQuery('.b2s-curation-settings-area').hide();
|
187 |
+
jQuery('.b2s-curation-preview-area').hide();
|
188 |
+
jQuery('#b2s-curation-no-auth-info').show();
|
189 |
+
jQuery('#b2s-curation-no-review-info').hide();
|
190 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
191 |
+
}
|
192 |
+
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
193 |
+
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
194 |
+
}
|
195 |
+
if (data.scrapeError == true) {
|
196 |
+
jQuery('#b2s-post-curation-preview-title').attr('type', 'text');
|
197 |
+
}
|
198 |
+
}
|
199 |
+
});
|
200 |
+
return false;
|
201 |
+
|
202 |
+
}
|
203 |
+
|
204 |
+
jQuery(document).on("keyup", "#b2s-post-curation-preview-title", function () {
|
205 |
+
jQuery(this).removeClass('error');
|
206 |
+
if (jQuery(this).val().length === 0) {
|
207 |
+
jQuery(this).addClass('error');
|
208 |
+
}
|
209 |
+
return false;
|
210 |
+
});
|
211 |
+
jQuery(document).on("keyup", "#b2s-post-curation-comment", function () {
|
212 |
+
jQuery(this).removeClass('error');
|
213 |
+
if (jQuery(this).val().length === 0) {
|
214 |
+
jQuery(this).addClass('error');
|
215 |
+
}
|
216 |
+
return false;
|
217 |
+
});
|
218 |
+
|
219 |
+
jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
220 |
+
jQuery('#b2s-post-curation-action').val('b2s_curation_share');
|
221 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
222 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
223 |
+
jQuery('#b2s-curation-saved-draft-info').hide();
|
224 |
+
|
225 |
+
var noContent = false;
|
226 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
227 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
228 |
+
noContent = true;
|
229 |
+
}
|
230 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
231 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
232 |
+
noContent = true;
|
233 |
+
}
|
234 |
+
if (noContent) {
|
235 |
+
return false;
|
236 |
+
}
|
237 |
+
|
238 |
+
jQuery('.b2s-curation-post-list-area').html("").hide();
|
239 |
+
jQuery('.b2s-loading-area').show();
|
240 |
+
jQuery('.b2s-curation-settings-area').hide();
|
241 |
+
jQuery('.b2s-curation-preview-area').hide();
|
242 |
+
|
243 |
+
jQuery.ajax({
|
244 |
+
processData: false,
|
245 |
+
url: ajaxurl,
|
246 |
+
type: "POST",
|
247 |
+
dataType: "json",
|
248 |
+
cache: false,
|
249 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
250 |
+
error: function () {
|
251 |
+
jQuery('.b2s-server-connection-fail').show();
|
252 |
+
return false;
|
253 |
+
},
|
254 |
+
success: function (data) {
|
255 |
+
if (data.result == true) {
|
256 |
+
jQuery('.b2s-loading-area').hide();
|
257 |
+
jQuery('.b2s-curation-post-list-area').show();
|
258 |
+
jQuery('.b2s-curation-post-list-area').html(data.content);
|
259 |
+
} else {
|
260 |
+
jQuery('.b2s-loading-area').hide();
|
261 |
+
jQuery('.b2s-curation-post-list-area').hide();
|
262 |
+
jQuery('.b2s-curation-settings-area').show();
|
263 |
+
jQuery('.b2s-curation-preview-area').show();
|
264 |
+
|
265 |
+
if (data.error == 'NO_AUTH') {
|
266 |
+
jQuery('#b2s-curation-no-auth-info').show();
|
267 |
+
} else if(data.error == 'nonce') {
|
268 |
+
jQuery('.b2s-nonce-check-fail').show();
|
269 |
+
} else {
|
270 |
+
jQuery('#b2s-curation-no-data-info').show();
|
271 |
+
}
|
272 |
+
}
|
273 |
+
wp.heartbeat.connectNow();
|
274 |
+
}
|
275 |
+
});
|
276 |
+
return false;
|
277 |
+
});
|
278 |
+
|
279 |
+
window.addEventListener('message', function (e) {
|
280 |
+
if (e.origin == jQuery('#b2sServerUrl').val()) {
|
281 |
+
var data = JSON.parse(e.data);
|
282 |
+
if (typeof data.action !== typeof undefined && data.action == 'approve') {
|
283 |
+
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + data.networkAuthId + '"]').html("<br><span class=\"text-success\"><i class=\"glyphicon glyphicon-ok-circle\"></i> " + jQuery("#b2sJsTextPublish").val() + " </span>");
|
284 |
+
jQuery.ajax({
|
285 |
+
url: ajaxurl,
|
286 |
+
type: "POST",
|
287 |
+
cache: false,
|
288 |
+
async: false,
|
289 |
+
data: {
|
290 |
+
'action': 'b2s_update_approve_post',
|
291 |
+
'post_id': data.post_id,
|
292 |
+
'publish_link': data.publish_link,
|
293 |
+
'publish_error_code': data.publish_error_code,
|
294 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
295 |
+
},
|
296 |
+
success: function (data) {
|
297 |
+
}
|
298 |
+
});
|
299 |
+
}
|
300 |
+
}
|
301 |
+
});
|
302 |
+
|
303 |
+
function wopApprove(networkAuthId, postId, url, name) {
|
304 |
+
var location = encodeURI(window.location.protocol + '//' + window.location.hostname);
|
305 |
+
var win = window.open(url + '&location=' + location, name, "width=650,height=900,scrollbars=yes,toolbar=no,status=no,resizable=no,menubar=no,location=no,directories=no,top=20,left=20");
|
306 |
+
if (postId > 0) {
|
307 |
+
function checkIfWinClosed(intervalID) {
|
308 |
+
if (win.closed) {
|
309 |
+
clearInterval(intervalID);
|
310 |
+
//Show Modal
|
311 |
+
jQuery('.b2s-publish-approve-modal').modal('show');
|
312 |
+
jQuery('#b2s-approve-post-id').val(postId);
|
313 |
+
jQuery('#b2s-approve-network-auth-id').val(networkAuthId);
|
314 |
+
}
|
315 |
+
}
|
316 |
+
var interval = setInterval(function () {
|
317 |
+
checkIfWinClosed(interval);
|
318 |
+
}, 500);
|
319 |
+
}
|
320 |
+
}
|
321 |
+
|
322 |
+
jQuery(document).on('click', '.b2s-approve-publish-confirm-btn', function () {
|
323 |
+
var postId = jQuery('#b2s-approve-post-id').val();
|
324 |
+
var networkAuthId = jQuery('#b2s-approve-network-auth-id').val();
|
325 |
+
if (postId > 0) {
|
326 |
+
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + networkAuthId + '"]').html("<br><span class=\"text-success\"><i class=\"glyphicon glyphicon-ok-circle\"></i> " + jQuery("#b2sJsTextPublish").val() + " </span>");
|
327 |
+
jQuery('.b2s-publish-approve-modal').modal('hide');
|
328 |
+
jQuery.ajax({
|
329 |
+
url: ajaxurl,
|
330 |
+
type: "POST",
|
331 |
+
cache: false,
|
332 |
+
async: false,
|
333 |
+
data: {
|
334 |
+
'action': 'b2s_update_approve_post',
|
335 |
+
'post_id': postId,
|
336 |
+
'publish_link': "",
|
337 |
+
'publish_error_code': "",
|
338 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
339 |
+
},
|
340 |
+
success: function (data) {
|
341 |
+
}
|
342 |
+
});
|
343 |
+
}
|
344 |
+
});
|
345 |
+
|
346 |
+
|
347 |
+
jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
348 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
349 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
350 |
+
jQuery('#b2s-curation-saved-draft-info').hide();
|
351 |
+
var noContent = false;
|
352 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
353 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
354 |
+
noContent = true;
|
355 |
+
}
|
356 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
357 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
358 |
+
noContent = true;
|
359 |
+
}
|
360 |
+
if (noContent) {
|
361 |
+
return false;
|
362 |
+
}
|
363 |
+
jQuery('#b2s-post-curation-action').val('b2s_curation_customize');
|
364 |
+
jQuery('.b2s-loading-area').show();
|
365 |
+
jQuery('.b2s-curation-settings-area').hide();
|
366 |
+
jQuery('.b2s-curation-preview-area').hide();
|
367 |
+
jQuery.ajax({
|
368 |
+
processData: false,
|
369 |
+
url: ajaxurl,
|
370 |
+
type: "POST",
|
371 |
+
dataType: "json",
|
372 |
+
cache: false,
|
373 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
374 |
+
error: function () {
|
375 |
+
jQuery('.b2s-server-connection-fail').show();
|
376 |
+
return false;
|
377 |
+
},
|
378 |
+
success: function (data) {
|
379 |
+
if (data.result == true) {
|
380 |
+
window.location.href = data.redirect;
|
381 |
+
return false;
|
382 |
+
} else {
|
383 |
+
if(data.error == 'nonce') {
|
384 |
+
jQuery('.b2s-nonce-check-fail').show();
|
385 |
+
}
|
386 |
+
jQuery('.b2s-loading-area').hide();
|
387 |
+
jQuery('#b2s-curation-no-data-info').show();
|
388 |
+
jQuery('.b2s-curation-settings-area').show();
|
389 |
+
jQuery('.b2s-curation-preview-area').show();
|
390 |
+
}
|
391 |
+
|
392 |
+
}
|
393 |
+
});
|
394 |
+
return false;
|
395 |
+
});
|
396 |
+
|
397 |
+
jQuery(document).on('change', '#b2s-post-curation-profile-select', function () {
|
398 |
+
var tos = false;
|
399 |
+
if (jQuery('#b2s-post-curation-profile-data' + jQuery(this).val()).val() == "") {
|
400 |
+
jQuery('#b2s-curation-no-auth-info').show();
|
401 |
+
tos = true;
|
402 |
+
} else {
|
403 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
404 |
+
//TOS Twitter Check
|
405 |
+
var len = jQuery('#b2s-post-curation-twitter-select').children('option[data-mandant-id="' + jQuery(this).val() + '"]').length;
|
406 |
+
if (len >= 1) {
|
407 |
+
jQuery('.b2s-curation-twitter-area').show();
|
408 |
+
jQuery('#b2s-post-curation-twitter-select').prop('disabled', false);
|
409 |
+
jQuery('#b2s-post-curation-twitter-select').show();
|
410 |
+
jQuery('#b2s-post-curation-twitter-select option').attr("disabled", "disabled");
|
411 |
+
jQuery('#b2s-post-curation-twitter-select option[data-mandant-id="' + jQuery(this).val() + '"]').attr("disabled", false);
|
412 |
+
jQuery('#b2s-post-curation-twitter-select option[data-mandant-id="' + jQuery(this).val() + '"]:first').attr("selected", "selected");
|
413 |
+
} else {
|
414 |
+
tos = true;
|
415 |
+
}
|
416 |
+
|
417 |
+
}
|
418 |
+
//TOS Twitter 032018
|
419 |
+
if (tos) {
|
420 |
+
jQuery('.b2s-curation-twitter-area').hide();
|
421 |
+
jQuery('#b2s-post-curation-twitter-select').prop('disabled', 'disabled');
|
422 |
+
jQuery('#b2s-post-curation-twitter-select').hide();
|
423 |
+
}
|
424 |
+
});
|
425 |
+
|
426 |
+
|
427 |
+
|
428 |
+
function padDate(n) {
|
429 |
+
return ("0" + n).slice(-2);
|
430 |
+
}
|
431 |
+
|
432 |
+
|
433 |
+
function formatAMPM(date) {
|
434 |
+
var hours = date.getHours();
|
435 |
+
var minutes = date.getMinutes();
|
436 |
+
var ampm = hours >= 12 ? 'pm' : 'am';
|
437 |
+
hours = hours % 12;
|
438 |
+
hours = hours ? hours : 12; // the hour '0' should be '12'
|
439 |
+
minutes = minutes < 10 ? '0' + minutes : minutes;
|
440 |
+
var strTime = hours + ':' + minutes + ' ' + ampm;
|
441 |
+
return strTime;
|
442 |
+
}
|
443 |
+
|
444 |
+
jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
445 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
446 |
+
jQuery('#b2s-curation-no-auth-info').hide();
|
447 |
+
jQuery('#b2s-curation-saved-draft-info').hide();
|
448 |
+
var noContent = false;
|
449 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
450 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
451 |
+
noContent = true;
|
452 |
+
}
|
453 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
454 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
455 |
+
noContent = true;
|
456 |
+
}
|
457 |
+
if (noContent) {
|
458 |
+
return false;
|
459 |
+
}
|
460 |
+
jQuery('#b2s-post-curation-action').val('b2s_curation_draft');
|
461 |
+
jQuery('.b2s-loading-area').show();
|
462 |
+
jQuery('.b2s-curation-settings-area').hide();
|
463 |
+
jQuery('.b2s-curation-preview-area').hide();
|
464 |
+
jQuery.ajax({
|
465 |
+
processData: false,
|
466 |
+
url: ajaxurl,
|
467 |
+
type: "POST",
|
468 |
+
dataType: "json",
|
469 |
+
cache: false,
|
470 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
471 |
+
error: function () {
|
472 |
+
jQuery('.b2s-server-connection-fail').show();
|
473 |
+
return false;
|
474 |
+
},
|
475 |
+
success: function (data) {
|
476 |
+
if (data.result == true) {
|
477 |
+
if (typeof data.postId != undefined) {
|
478 |
+
jQuery('#b2s-draft-id').val(data.postId);
|
479 |
+
}
|
480 |
+
jQuery('.b2s-loading-area').hide();
|
481 |
+
jQuery('.b2s-curation-settings-area').show();
|
482 |
+
jQuery('.b2s-curation-preview-area').show();
|
483 |
+
jQuery('#b2s-curation-saved-draft-info').show();
|
484 |
+
setTimeout(function () {
|
485 |
+
jQuery('#b2s-curation-saved-draft-info').fadeOut("slow");
|
486 |
+
}, 5000);
|
487 |
+
return false;
|
488 |
+
} else {
|
489 |
+
jQuery('.b2s-loading-area').hide();
|
490 |
+
jQuery('#b2s-curation-no-data-info').show();
|
491 |
+
jQuery('.b2s-curation-settings-area').show();
|
492 |
+
jQuery('.b2s-curation-preview-area').show();
|
493 |
+
if(data.error == 'nonce') {
|
494 |
+
jQuery('.b2s-nonce-check-fail').show();
|
495 |
+
}
|
496 |
+
}
|
497 |
+
|
498 |
+
}
|
499 |
+
});
|
500 |
+
return false;
|
501 |
+
});
|
502 |
+
|
503 |
+
|
assets/js/b2s/general.js
CHANGED
@@ -1,324 +1,334 @@
|
|
1 |
-
jQuery(window).on("load", function () {
|
2 |
-
if (typeof wp.heartbeat == "undefined") {
|
3 |
-
jQuery('.b2s-heartbeat-fail').show();
|
4 |
-
} else {
|
5 |
-
jQuery('.b2s-heartbeat-fail').hide();
|
6 |
-
}
|
7 |
-
var b2sPolicy = jQuery('#b2sUserAcceptPrivacyPolicy').val();
|
8 |
-
if (typeof b2sPolicy !== typeof undefined && b2sPolicy !== false) {
|
9 |
-
if (b2sPolicy === 'true') {
|
10 |
-
jQuery('#b2sModalPrivacyPolicy').modal('show');
|
11 |
-
}
|
12 |
-
}
|
13 |
-
});
|
14 |
-
|
15 |
-
jQuery(document).on('click', '.b2s-show-feedback-modal', function () {
|
16 |
-
jQuery('#b2sTrailFeedbackModal').modal('show');
|
17 |
-
});
|
18 |
-
|
19 |
-
jQuery(document).on('click', '.b2s-send-trail-feedback', function () {
|
20 |
-
jQuery('.b2s-network-auth-info').hide();
|
21 |
-
if (jQuery('#b2s-trial_message').val() == "") {
|
22 |
-
jQuery('.b2s-feedback-success').fail();
|
23 |
-
return false;
|
24 |
-
}
|
25 |
-
jQuery('#b2sTrailFeedbackModal').modal('hide');
|
26 |
-
jQuery('.b2s-server-connection-fail').hide();
|
27 |
-
jQuery.ajax({
|
28 |
-
url: ajaxurl,
|
29 |
-
type: "POST",
|
30 |
-
dataType: "json",
|
31 |
-
cache: false,
|
32 |
-
data: {
|
33 |
-
'action': 'b2s_send_trail_feedback',
|
34 |
-
'feedback': jQuery('#b2s-trial_message').val()
|
35 |
-
},
|
36 |
-
error: function () {
|
37 |
-
jQuery('.b2s-server-connection-fail').show();
|
38 |
-
return false;
|
39 |
-
},
|
40 |
-
success: function (data) {
|
41 |
-
if (data.result == true) {
|
42 |
-
jQuery('.b2s-feedback-success').show();
|
43 |
-
}
|
44 |
-
}
|
45 |
-
});
|
46 |
-
});
|
47 |
-
|
48 |
-
|
49 |
-
jQuery(document).on('click', '.b2s-modal-privacy-policy-accept-btn', function () {
|
50 |
-
jQuery('#b2sModalPrivacyPolicy').modal('hide');
|
51 |
-
jQuery.ajax({
|
52 |
-
url: ajaxurl,
|
53 |
-
type: "POST",
|
54 |
-
dataType: "json",
|
55 |
-
cache: false,
|
56 |
-
data: {
|
57 |
-
'action': 'b2s_accept_privacy_policy',
|
58 |
-
'accept': true
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
jQuery('.b2s-key-area-
|
73 |
-
jQuery('.b2s-key-area-fail
|
74 |
-
jQuery('.b2s-key-area-fail-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
jQuery('.b2s-key-area-
|
81 |
-
jQuery('.b2s-
|
82 |
-
jQuery.
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
'
|
90 |
-
'
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
jQuery('
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
jQuery('#b2s-license-user-select').
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
jQuery('.b2s-
|
114 |
-
}
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
}
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
jQuery(
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
jQuery('#
|
144 |
-
}
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
jQuery('#
|
151 |
-
}
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
jQuery('
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
jQuery('
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
jQuery('
|
184 |
-
|
185 |
-
jQuery('.b2s-trail-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
jQuery('
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
jQuery(
|
210 |
-
jQuery(
|
211 |
-
jQuery(jQuery(
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
jQuery(document).on('click', '.b2s-
|
219 |
-
|
220 |
-
|
221 |
-
jQuery('.modal-
|
222 |
-
jQuery('
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
var
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
jQuery.
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
jQuery
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
jQuery
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
jQuery
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
jQuery('.b2s-modal-
|
318 |
-
}
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
jQuery(
|
323 |
-
jQuery(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
});
|
1 |
+
jQuery(window).on("load", function () {
|
2 |
+
if (typeof wp.heartbeat == "undefined") {
|
3 |
+
jQuery('.b2s-heartbeat-fail').show();
|
4 |
+
} else {
|
5 |
+
jQuery('.b2s-heartbeat-fail').hide();
|
6 |
+
}
|
7 |
+
var b2sPolicy = jQuery('#b2sUserAcceptPrivacyPolicy').val();
|
8 |
+
if (typeof b2sPolicy !== typeof undefined && b2sPolicy !== false) {
|
9 |
+
if (b2sPolicy === 'true') {
|
10 |
+
jQuery('#b2sModalPrivacyPolicy').modal('show');
|
11 |
+
}
|
12 |
+
}
|
13 |
+
});
|
14 |
+
|
15 |
+
jQuery(document).on('click', '.b2s-show-feedback-modal', function () {
|
16 |
+
jQuery('#b2sTrailFeedbackModal').modal('show');
|
17 |
+
});
|
18 |
+
|
19 |
+
jQuery(document).on('click', '.b2s-send-trail-feedback', function () {
|
20 |
+
jQuery('.b2s-network-auth-info').hide();
|
21 |
+
if (jQuery('#b2s-trial_message').val() == "") {
|
22 |
+
jQuery('.b2s-feedback-success').fail();
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
jQuery('#b2sTrailFeedbackModal').modal('hide');
|
26 |
+
jQuery('.b2s-server-connection-fail').hide();
|
27 |
+
jQuery.ajax({
|
28 |
+
url: ajaxurl,
|
29 |
+
type: "POST",
|
30 |
+
dataType: "json",
|
31 |
+
cache: false,
|
32 |
+
data: {
|
33 |
+
'action': 'b2s_send_trail_feedback',
|
34 |
+
'feedback': jQuery('#b2s-trial_message').val()
|
35 |
+
},
|
36 |
+
error: function () {
|
37 |
+
jQuery('.b2s-server-connection-fail').show();
|
38 |
+
return false;
|
39 |
+
},
|
40 |
+
success: function (data) {
|
41 |
+
if (data.result == true) {
|
42 |
+
jQuery('.b2s-feedback-success').show();
|
43 |
+
}
|
44 |
+
}
|
45 |
+
});
|
46 |
+
});
|
47 |
+
|
48 |
+
|
49 |
+
jQuery(document).on('click', '.b2s-modal-privacy-policy-accept-btn', function () {
|
50 |
+
jQuery('#b2sModalPrivacyPolicy').modal('hide');
|
51 |
+
jQuery.ajax({
|
52 |
+
url: ajaxurl,
|
53 |
+
type: "POST",
|
54 |
+
dataType: "json",
|
55 |
+
cache: false,
|
56 |
+
data: {
|
57 |
+
'action': 'b2s_accept_privacy_policy',
|
58 |
+
'accept': true,
|
59 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
60 |
+
},
|
61 |
+
error: function () {
|
62 |
+
jQuery('.b2s-server-connection-fail').show();
|
63 |
+
return false;
|
64 |
+
},
|
65 |
+
success: function (data) {
|
66 |
+
}
|
67 |
+
});
|
68 |
+
return false;
|
69 |
+
});
|
70 |
+
|
71 |
+
jQuery(document).on('click', '.b2s-key-area-btn-submit', function () {
|
72 |
+
jQuery('.b2s-key-area-success').hide();
|
73 |
+
jQuery('.b2s-key-area-fail').hide();
|
74 |
+
jQuery('.b2s-key-area-fail-max-use').hide();
|
75 |
+
jQuery('.b2s-key-area-fail-no-token').hide();
|
76 |
+
|
77 |
+
if (jQuery('.b2s-key-area-input').val() == "") {
|
78 |
+
jQuery('.b2s-key-area-input').addClass('error');
|
79 |
+
} else {
|
80 |
+
jQuery('.b2s-key-area-btn-submit').prop('disabled', true);
|
81 |
+
jQuery('.b2s-key-area-input').removeClass('error');
|
82 |
+
jQuery('.b2s-server-connection-fail').hide();
|
83 |
+
jQuery.ajax({
|
84 |
+
url: ajaxurl,
|
85 |
+
type: "POST",
|
86 |
+
dataType: "json",
|
87 |
+
cache: false,
|
88 |
+
data: {
|
89 |
+
'action': 'b2s_update_user_version',
|
90 |
+
'key': jQuery('.b2s-key-area-input').val(),
|
91 |
+
'user_id': jQuery('#b2s-license-user').val(),
|
92 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
93 |
+
},
|
94 |
+
error: function () {
|
95 |
+
jQuery('.b2s-server-connection-fail').show();
|
96 |
+
return false;
|
97 |
+
},
|
98 |
+
success: function (data) {
|
99 |
+
jQuery('#b2sInfoKeyModal').modal('show');
|
100 |
+
jQuery('.b2s-key-area-btn-submit').prop('disabled', false);
|
101 |
+
jQuery('.b2s-trail-premium-info-area').hide();
|
102 |
+
if (data.result == true) {
|
103 |
+
jQuery('.b2s-key-area-success').show();
|
104 |
+
if(data.licenseName != false) {
|
105 |
+
jQuery('.b2s-key-area-key-name').html(data.licenseName);
|
106 |
+
jQuery('.b2s-key-name').html(data.licenseName);
|
107 |
+
}
|
108 |
+
jQuery('#b2s-license-user-select').empty();
|
109 |
+
jQuery('#b2s-license-user-select').append(jQuery('<option value="0"></option>'));
|
110 |
+
jQuery('#b2s-license-user-select').trigger("chosen:updated");
|
111 |
+
} else {
|
112 |
+
if(data.error == 'nonce') {
|
113 |
+
jQuery('.b2s-nonce-check-fail').show();
|
114 |
+
}
|
115 |
+
if (data.reason != null && data.reason == 1) {
|
116 |
+
jQuery('.b2s-key-area-fail-max-use').show();
|
117 |
+
} else if (data.reason != null && data.reason == 2) {
|
118 |
+
jQuery('.b2s-key-area-fail-no-token').show();
|
119 |
+
} else {
|
120 |
+
jQuery('.b2s-key-area-fail').show();
|
121 |
+
}
|
122 |
+
|
123 |
+
}
|
124 |
+
}
|
125 |
+
});
|
126 |
+
return false;
|
127 |
+
}
|
128 |
+
});
|
129 |
+
|
130 |
+
jQuery(document).on('click', '.b2s-trail-show', function () {
|
131 |
+
jQuery('#b2sPreFeatureModal').modal('hide');
|
132 |
+
jQuery('#b2sProFeatureModal').modal('hide');
|
133 |
+
jQuery('#b2s-trial-modal').modal('show');
|
134 |
+
});
|
135 |
+
|
136 |
+
jQuery(document).on('click', '.b2s-trail-btn-start', function () {
|
137 |
+
var checkFail = false;
|
138 |
+
|
139 |
+
if (jQuery('#trial_vorname').val() == "") {
|
140 |
+
checkFail = true;
|
141 |
+
jQuery('#trial_vorname').addClass('error');
|
142 |
+
} else {
|
143 |
+
jQuery('#trial_vorname').removeClass('error');
|
144 |
+
}
|
145 |
+
|
146 |
+
if (jQuery('#trial_nachname').val() == "") {
|
147 |
+
checkFail = true;
|
148 |
+
jQuery('#trial_nachname').addClass('error');
|
149 |
+
} else {
|
150 |
+
jQuery('#trial_nachname').removeClass('error');
|
151 |
+
}
|
152 |
+
|
153 |
+
if (!isEmail(jQuery('#trial_email').val())) {
|
154 |
+
checkFail = true;
|
155 |
+
jQuery('#trial_email').addClass('error');
|
156 |
+
} else {
|
157 |
+
jQuery('#trial_email').removeClass('error');
|
158 |
+
}
|
159 |
+
|
160 |
+
if (checkFail == false) {
|
161 |
+
jQuery('.b2s-trail-btn-start').prop('disabled', true);
|
162 |
+
jQuery('.b2s-server-connection-fail').hide();
|
163 |
+
jQuery.ajax({
|
164 |
+
url: ajaxurl,
|
165 |
+
type: "POST",
|
166 |
+
dataType: "json",
|
167 |
+
cache: false,
|
168 |
+
data: {
|
169 |
+
'action': 'b2s_create_trail',
|
170 |
+
'vorname': jQuery('#trial_vorname').val(),
|
171 |
+
'nachname': jQuery('#trial_nachname').val(),
|
172 |
+
'email': jQuery('#trial_email').val(),
|
173 |
+
'url': jQuery('#trial_url').val(),
|
174 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
175 |
+
},
|
176 |
+
error: function () {
|
177 |
+
jQuery('.b2s-server-connection-fail').show();
|
178 |
+
return false;
|
179 |
+
},
|
180 |
+
success: function (data) {
|
181 |
+
jQuery('.b2s-trail-btn-start').prop('disabled', false);
|
182 |
+
if (data.result == true) {
|
183 |
+
jQuery('#b2s-trial-modal').modal('hide');
|
184 |
+
jQuery('.b2s-key-area-success').show();
|
185 |
+
jQuery('.b2s-trail-tracking').show();
|
186 |
+
jQuery('#b2s-trail-tracking-src').attr('src', 'https://www.googleadservices.com/pagead/conversion/1072559458/?label=HB4lCM27oHMQ4uq3_wM&guid=ON&script=0');
|
187 |
+
jQuery('.b2s-key-area-key-name').html(data.lizenzName);
|
188 |
+
jQuery('.b2s-key-name').html(data.lizenzName);
|
189 |
+
jQuery('.b2s-trail-premium-info-area').hide();
|
190 |
+
} else {
|
191 |
+
if(data.error == 'nonce') {
|
192 |
+
jQuery('.b2s-nonce-check-fail').show();
|
193 |
+
}
|
194 |
+
jQuery('.b2s-trail-modal-fail').show();
|
195 |
+
}
|
196 |
+
|
197 |
+
}
|
198 |
+
});
|
199 |
+
}
|
200 |
+
});
|
201 |
+
|
202 |
+
//PREMIUM
|
203 |
+
jQuery('#b2sPreFeatureModal').on('show.bs.modal', function (e) {
|
204 |
+
jQuery(this).find('.modal-title').html(jQuery(e.relatedTarget).attr('data-title'));
|
205 |
+
});
|
206 |
+
|
207 |
+
//PREMIUM-PRO
|
208 |
+
jQuery('#b2sProFeatureModal').on('show.bs.modal', function (e) {
|
209 |
+
jQuery(this).find('.modal-title').html(jQuery(e.relatedTarget).attr('data-title'));
|
210 |
+
jQuery(this).find('.modal-body').hide();
|
211 |
+
jQuery(this).find('.' + jQuery(e.relatedTarget).attr('data-type')).show();
|
212 |
+
});
|
213 |
+
|
214 |
+
jQuery(document).on('heartbeat-send', function (e, data) {
|
215 |
+
data['client'] = 'b2s';
|
216 |
+
});
|
217 |
+
|
218 |
+
jQuery(document).on('click', '.b2s-modal-close', function () {
|
219 |
+
jQuery(jQuery(this).attr('data-modal-name')).modal('hide');
|
220 |
+
jQuery(jQuery(this).attr('data-modal-name')).hide();
|
221 |
+
jQuery('body').removeClass('modal-open');
|
222 |
+
jQuery('body').removeAttr('style');
|
223 |
+
return false;
|
224 |
+
});
|
225 |
+
|
226 |
+
|
227 |
+
jQuery(document).on('click', '.b2s-load-info-meta-tag-modal', function () {
|
228 |
+
var dataType = jQuery(this).attr('data-meta-type');
|
229 |
+
var dataOrigin = jQuery(this).attr('data-meta-origin');
|
230 |
+
jQuery('.modal-meta-content').hide();
|
231 |
+
jQuery('.meta-body[data-meta-type=' + dataType + '][data-meta-origin=' + dataOrigin + ']').show();
|
232 |
+
jQuery('.meta-title[data-meta-origin=' + dataOrigin + ']').show();
|
233 |
+
jQuery('#b2s-info-meta-tag-modal').modal('show');
|
234 |
+
return false;
|
235 |
+
});
|
236 |
+
|
237 |
+
function isEmail(email) {
|
238 |
+
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
239 |
+
return regex.test(email);
|
240 |
+
}
|
241 |
+
|
242 |
+
function hideRating(forever)
|
243 |
+
{
|
244 |
+
var data = {
|
245 |
+
'action': 'b2s_hide_rating',
|
246 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
247 |
+
};
|
248 |
+
|
249 |
+
if (forever) {
|
250 |
+
data.forever = true;
|
251 |
+
}
|
252 |
+
|
253 |
+
jQuery.ajax({
|
254 |
+
url: ajaxurl,
|
255 |
+
type: "POST",
|
256 |
+
dataType: "json",
|
257 |
+
cache: false,
|
258 |
+
data: data
|
259 |
+
});
|
260 |
+
}
|
261 |
+
|
262 |
+
jQuery(document).on("click", ".b2s-hide-rating", function (e) {
|
263 |
+
e.preventDefault();
|
264 |
+
hideRating(false);
|
265 |
+
jQuery(this).closest('.panel').remove();
|
266 |
+
});
|
267 |
+
|
268 |
+
jQuery(document).on("click", ".b2s-hide-rating-forever", function (e) {
|
269 |
+
e.preventDefault();
|
270 |
+
hideRating(true);
|
271 |
+
jQuery(this).closest('.panel').remove();
|
272 |
+
});
|
273 |
+
|
274 |
+
jQuery(document).on("click", ".b2s-allow-rating", function (e) {
|
275 |
+
hideRating(false);
|
276 |
+
jQuery(this).closest('.panel').remove();
|
277 |
+
});
|
278 |
+
|
279 |
+
jQuery(document).on("click", ".b2s-hide-premium-message", function (e) {
|
280 |
+
e.preventDefault();
|
281 |
+
jQuery.ajax({
|
282 |
+
url: ajaxurl,
|
283 |
+
type: "POST",
|
284 |
+
dataType: "json",
|
285 |
+
cache: false,
|
286 |
+
data: {action: 'b2s_hide_premium_message', 'b2s_security_nonce': jQuery('#b2s_security_nonce').val()}
|
287 |
+
});
|
288 |
+
jQuery(this).closest('.panel').remove();
|
289 |
+
});
|
290 |
+
|
291 |
+
jQuery(document).on("click", ".b2s-hide-trail-message", function (e) {
|
292 |
+
e.preventDefault();
|
293 |
+
jQuery.ajax({
|
294 |
+
url: ajaxurl,
|
295 |
+
type: "POST",
|
296 |
+
dataType: "json",
|
297 |
+
cache: false,
|
298 |
+
data: {action: 'b2s_hide_trail_message', 'b2s_security_nonce': jQuery('#b2s_security_nonce').val()}
|
299 |
+
});
|
300 |
+
jQuery(this).closest('.panel').remove();
|
301 |
+
});
|
302 |
+
|
303 |
+
jQuery(document).on("click", ".b2s-hide-trail-ended-modal", function (e) {
|
304 |
+
e.preventDefault();
|
305 |
+
jQuery.ajax({
|
306 |
+
url: ajaxurl,
|
307 |
+
type: "POST",
|
308 |
+
dataType: "json",
|
309 |
+
cache: false,
|
310 |
+
data: {action: 'b2s_hide_trail_ended_message', 'b2s_security_nonce': jQuery('#b2s_security_nonce').val()}
|
311 |
+
});
|
312 |
+
jQuery(this).closest('.panel').remove();
|
313 |
+
});
|
314 |
+
|
315 |
+
jQuery('.b2s-modal-privacy-policy-scroll-content').on('scroll', function () {
|
316 |
+
if (jQuery(this).scrollTop() + jQuery(this).innerHeight() >= jQuery(this)[0].scrollHeight) {
|
317 |
+
jQuery('.b2s-scroll-modal-down').hide();
|
318 |
+
}
|
319 |
+
});
|
320 |
+
|
321 |
+
jQuery(document).on("click", ".b2s-scroll-modal-down", function (e) {
|
322 |
+
var total = jQuery('.b2s-modal-privacy-policy-scroll-content')[0].scrollHeight;
|
323 |
+
var current = jQuery('.b2s-modal-privacy-policy-scroll-content').scrollTop() + jQuery('.b2s-modal-privacy-policy-scroll-content').innerHeight();
|
324 |
+
if (current >= total) {
|
325 |
+
jQuery('.b2s-scroll-modal-down').hide();
|
326 |
+
} else {
|
327 |
+
jQuery('.b2s-modal-privacy-policy-scroll-content').animate({scrollTop: current + 30}, 'slow');
|
328 |
+
}
|
329 |
+
return false;
|
330 |
+
});
|
331 |
+
|
332 |
+
jQuery(document).on('click', '.b2s-network-auth-info-close', function() {
|
333 |
+
jQuery(this).closest('.b2s-network-auth-info').hide();
|
334 |
});
|
assets/js/b2s/lib.js
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
b2s = typeof(b2s) == "undefined" ? {network: {}} : b2s;
|
2 |
-
|
3 |
-
b2s.network.showImageDialog = function(data){
|
4 |
-
var authId = data.network_auth_id;
|
5 |
-
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId);
|
6 |
-
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId);
|
7 |
-
|
8 |
-
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
9 |
-
jQuery('.b2s-selected-network-for-image-info').html(content);
|
10 |
-
jQuery('#b2sInsertImageType').val("0");
|
11 |
-
jQuery('#b2s-network-select-image').modal('show');
|
12 |
-
|
13 |
-
jQuery('.networkImage').each(function () {
|
14 |
-
var width = this.naturalWidth;
|
15 |
-
var height = this.naturalHeight;
|
16 |
-
jQuery(this).parents('.b2s-image-item').find('.b2s-image-item-caption-resolution').html(width + 'x' + height);
|
17 |
-
});
|
18 |
-
|
19 |
-
return false;
|
20 |
};
|
1 |
+
b2s = typeof(b2s) == "undefined" ? {network: {}} : b2s;
|
2 |
+
|
3 |
+
b2s.network.showImageDialog = function(data){
|
4 |
+
var authId = data.network_auth_id;
|
5 |
+
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId);
|
6 |
+
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId);
|
7 |
+
|
8 |
+
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
9 |
+
jQuery('.b2s-selected-network-for-image-info').html(content);
|
10 |
+
jQuery('#b2sInsertImageType').val("0");
|
11 |
+
jQuery('#b2s-network-select-image').modal('show');
|
12 |
+
|
13 |
+
jQuery('.networkImage').each(function () {
|
14 |
+
var width = this.naturalWidth;
|
15 |
+
var height = this.naturalHeight;
|
16 |
+
jQuery(this).parents('.b2s-image-item').find('.b2s-image-item-caption-resolution').html(width + 'x' + height);
|
17 |
+
});
|
18 |
+
|
19 |
+
return false;
|
20 |
};
|
assets/js/b2s/network.js
CHANGED
@@ -1,1193 +1,1380 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
jQuery(window).on("load", function () {
|
4 |
-
|
5 |
-
init();
|
6 |
-
|
7 |
-
if (jQuery('.b2s-network-mandant-select').val() == 0 || jQuery('.b2s-network-mandant-select').val() == -1) {
|
8 |
-
jQuery('.b2s-network-mandant-btn-delete').hide();
|
9 |
-
} else {
|
10 |
-
jQuery('.b2s-network-mandant-btn-delete').show();
|
11 |
-
}
|
12 |
-
jQuery('.b2s-network-details-container-list').hide();
|
13 |
-
jQuery('.b2s-network-details-container-list[data-mandant-id="' + jQuery('.b2s-network-mandant-select').val() + '"]').show();
|
14 |
-
|
15 |
-
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
16 |
-
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length - 1);
|
17 |
-
});
|
18 |
-
});
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
function init() {
|
24 |
-
var showMeridian = true;
|
25 |
-
if (jQuery('#b2sUserLang').val() == 'de') {
|
26 |
-
showMeridian = false;
|
27 |
-
}
|
28 |
-
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
29 |
-
minuteStep: 15,
|
30 |
-
appendWidgetTo: 'body',
|
31 |
-
showSeconds: false,
|
32 |
-
showMeridian: showMeridian,
|
33 |
-
defaultTime: 'current'
|
34 |
-
}).on('changeTime.timepicker', function (e) {
|
35 |
-
var networkAuthId = jQuery(e.target).attr('data-network-auth-id');
|
36 |
-
jQuery('.b2s-settings-sched-item-input-time[data-network-auth-id="' + networkAuthId + '"]').val(e.time.value);
|
37 |
-
saveTimeSettings();
|
38 |
-
});
|
39 |
-
}
|
40 |
-
|
41 |
-
var timeoutPlus;
|
42 |
-
var timeoutMinus;
|
43 |
-
jQuery(document).on('mousedown mouseup', '.b2s-sched-manager-item-input-day-btn-plus', function (e) {
|
44 |
-
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
45 |
-
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
46 |
-
if (e.type == "mousedown") {
|
47 |
-
timeoutPlus = setInterval(function () {
|
48 |
-
if (current < 99) {
|
49 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current++);
|
50 |
-
} else {
|
51 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(99);
|
52 |
-
}
|
53 |
-
}, 100);
|
54 |
-
} else {
|
55 |
-
clearInterval(timeoutPlus);
|
56 |
-
saveTimeSettings();
|
57 |
-
}
|
58 |
-
return false;
|
59 |
-
});
|
60 |
-
|
61 |
-
jQuery(document).on('mousedown mouseup', '.b2s-sched-manager-item-input-day-btn-minus', function (e) {
|
62 |
-
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
63 |
-
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
64 |
-
if (e.type == "mousedown") {
|
65 |
-
timeoutMinus = setInterval(function () {
|
66 |
-
if (current > 0) {
|
67 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current--);
|
68 |
-
} else {
|
69 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(0);
|
70 |
-
}
|
71 |
-
}, 100);
|
72 |
-
} else {
|
73 |
-
clearInterval(timeoutMinus);
|
74 |
-
saveTimeSettings();
|
75 |
-
}
|
76 |
-
return false;
|
77 |
-
});
|
78 |
-
|
79 |
-
|
80 |
-
jQuery(document).on('click', '.b2s-sched-manager-item-input-day-btn-minus', function () {
|
81 |
-
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
82 |
-
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
83 |
-
if (current > 0) {
|
84 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current - 1);
|
85 |
-
saveTimeSettings();
|
86 |
-
} else {
|
87 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(0);
|
88 |
-
}
|
89 |
-
});
|
90 |
-
jQuery(document).on('click', '.b2s-sched-manager-item-input-day-btn-plus', function () {
|
91 |
-
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
92 |
-
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
93 |
-
if (current < 99) {
|
94 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current + 1);
|
95 |
-
//TODO is show ALL other same items update
|
96 |
-
saveTimeSettings();
|
97 |
-
} else {
|
98 |
-
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(99);
|
99 |
-
}
|
100 |
-
|
101 |
-
});
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
jQuery(document).on('change', '.b2s-network-mandant-select', function () {
|
106 |
-
jQuery('.b2s-network-auth-info').hide();
|
107 |
-
if (jQuery(this).val() == 0 || jQuery(this).val() == -1) {
|
108 |
-
jQuery('.b2s-network-mandant-btn-delete').hide();
|
109 |
-
} else {
|
110 |
-
jQuery('.b2s-network-mandant-btn-delete').show();
|
111 |
-
}
|
112 |
-
jQuery('.b2s-network-details-container-list').hide();
|
113 |
-
jQuery('.b2s-network-details-container-list[data-mandant-id="' + jQuery(this).val() + '"]').show();
|
114 |
-
});
|
115 |
-
|
116 |
-
jQuery(document).on('click', '.b2s-network-mandant-btn-delete', function () {
|
117 |
-
jQuery('.b2s-network-auth-info').hide();
|
118 |
-
jQuery('#b2s-network-delete-mandant').modal('show');
|
119 |
-
});
|
120 |
-
|
121 |
-
jQuery(document).on('click', '.b2s-btn-network-delete-mandant-confirm', function () {
|
122 |
-
jQuery('.b2s-network-auth-area').hide();
|
123 |
-
jQuery('.b2s-loading-area').show();
|
124 |
-
jQuery('#b2s-network-delete-mandant').modal('hide');
|
125 |
-
jQuery('.b2s-server-connection-fail').hide();
|
126 |
-
jQuery.ajax({
|
127 |
-
url: ajaxurl,
|
128 |
-
type: "POST",
|
129 |
-
dataType: "json",
|
130 |
-
cache: false,
|
131 |
-
data: {
|
132 |
-
'action': 'b2s_delete_mandant',
|
133 |
-
'mandantId': jQuery('.b2s-network-mandant-select').val()
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
jQuery('.b2s-network-auth-
|
142 |
-
jQuery('.b2s-
|
143 |
-
|
144 |
-
|
145 |
-
jQuery(
|
146 |
-
jQuery(".b2s-network-mandant-select option[value='
|
147 |
-
jQuery(".b2s-network-
|
148 |
-
jQuery(
|
149 |
-
jQuery('.b2s-network-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
}
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
jQuery('
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
jQuery('.b2s-connection
|
178 |
-
jQuery('
|
179 |
-
jQuery('
|
180 |
-
jQuery('.b2s-
|
181 |
-
jQuery('
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
jQuery('#
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
jQuery('#b2s-move-connection-
|
201 |
-
jQuery(
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
'
|
223 |
-
|
224 |
-
|
225 |
-
jQuery('
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
jQuery('
|
238 |
-
jQuery('
|
239 |
-
jQuery('.b2s-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
if (jQuery('#b2s-
|
246 |
-
jQuery('#b2s-
|
247 |
-
|
248 |
-
jQuery('#b2s-
|
249 |
-
|
250 |
-
|
251 |
-
jQuery('#b2s-select-assign-user').
|
252 |
-
jQuery('#b2s-assign-network-user-auth').
|
253 |
-
jQuery('#b2s-
|
254 |
-
jQuery('#b2s-assign-
|
255 |
-
}
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
jQuery('.b2s-connection
|
262 |
-
jQuery('.b2s-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
}
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
jQuery(
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
jQuery.
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
jQuery('
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
jQuery('.b2s-network-details-container-list[data-mandant-id
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
jQuery('.b2s-network-details-container-list[data-mandant-id=' +
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
jQuery.
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
jQuery.
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
}
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
jQuery(
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
}
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
jQuery('.b2s-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
jQuery(
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
}
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
}
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
if (
|
747 |
-
var
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
html += '
|
784 |
-
html += '<
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
}
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
data:
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
}
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
}
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
function
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
jQuery(
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
jQuery.
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
}
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
}
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
var
|
1074 |
-
|
1075 |
-
jQuery.
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
jQuery(
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
jQuery('
|
1176 |
-
jQuery('
|
1177 |
-
|
1178 |
-
jQuery('
|
1179 |
-
jQuery('
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
});
|
1191 |
-
|
1192 |
-
jQuery
|
1193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
jQuery(window).on("load", function () {
|
4 |
+
|
5 |
+
init();
|
6 |
+
|
7 |
+
if (jQuery('.b2s-network-mandant-select').val() == 0 || jQuery('.b2s-network-mandant-select').val() == -1) {
|
8 |
+
jQuery('.b2s-network-mandant-btn-delete').hide();
|
9 |
+
} else {
|
10 |
+
jQuery('.b2s-network-mandant-btn-delete').show();
|
11 |
+
}
|
12 |
+
jQuery('.b2s-network-details-container-list').hide();
|
13 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id="' + jQuery('.b2s-network-mandant-select').val() + '"]').show();
|
14 |
+
|
15 |
+
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
16 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length - 1);
|
17 |
+
});
|
18 |
+
});
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
function init() {
|
24 |
+
var showMeridian = true;
|
25 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
26 |
+
showMeridian = false;
|
27 |
+
}
|
28 |
+
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
29 |
+
minuteStep: 15,
|
30 |
+
appendWidgetTo: 'body',
|
31 |
+
showSeconds: false,
|
32 |
+
showMeridian: showMeridian,
|
33 |
+
defaultTime: 'current'
|
34 |
+
}).on('changeTime.timepicker', function (e) {
|
35 |
+
var networkAuthId = jQuery(e.target).attr('data-network-auth-id');
|
36 |
+
jQuery('.b2s-settings-sched-item-input-time[data-network-auth-id="' + networkAuthId + '"]').val(e.time.value);
|
37 |
+
saveTimeSettings();
|
38 |
+
});
|
39 |
+
}
|
40 |
+
|
41 |
+
var timeoutPlus;
|
42 |
+
var timeoutMinus;
|
43 |
+
jQuery(document).on('mousedown mouseup', '.b2s-sched-manager-item-input-day-btn-plus', function (e) {
|
44 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
45 |
+
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
46 |
+
if (e.type == "mousedown") {
|
47 |
+
timeoutPlus = setInterval(function () {
|
48 |
+
if (current < 99) {
|
49 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current++);
|
50 |
+
} else {
|
51 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(99);
|
52 |
+
}
|
53 |
+
}, 100);
|
54 |
+
} else {
|
55 |
+
clearInterval(timeoutPlus);
|
56 |
+
saveTimeSettings();
|
57 |
+
}
|
58 |
+
return false;
|
59 |
+
});
|
60 |
+
|
61 |
+
jQuery(document).on('mousedown mouseup', '.b2s-sched-manager-item-input-day-btn-minus', function (e) {
|
62 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
63 |
+
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
64 |
+
if (e.type == "mousedown") {
|
65 |
+
timeoutMinus = setInterval(function () {
|
66 |
+
if (current > 0) {
|
67 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current--);
|
68 |
+
} else {
|
69 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(0);
|
70 |
+
}
|
71 |
+
}, 100);
|
72 |
+
} else {
|
73 |
+
clearInterval(timeoutMinus);
|
74 |
+
saveTimeSettings();
|
75 |
+
}
|
76 |
+
return false;
|
77 |
+
});
|
78 |
+
|
79 |
+
|
80 |
+
jQuery(document).on('click', '.b2s-sched-manager-item-input-day-btn-minus', function () {
|
81 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
82 |
+
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
83 |
+
if (current > 0) {
|
84 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current - 1);
|
85 |
+
saveTimeSettings();
|
86 |
+
} else {
|
87 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(0);
|
88 |
+
}
|
89 |
+
});
|
90 |
+
jQuery(document).on('click', '.b2s-sched-manager-item-input-day-btn-plus', function () {
|
91 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
92 |
+
var current = parseInt(jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val());
|
93 |
+
if (current < 99) {
|
94 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(current + 1);
|
95 |
+
//TODO is show ALL other same items update
|
96 |
+
saveTimeSettings();
|
97 |
+
} else {
|
98 |
+
jQuery('.b2s-sched-manager-item-input-day[data-network-auth-id="' + networkAuthId + '"]').val(99);
|
99 |
+
}
|
100 |
+
|
101 |
+
});
|
102 |
+
|
103 |
+
|
104 |
+
|
105 |
+
jQuery(document).on('change', '.b2s-network-mandant-select', function () {
|
106 |
+
jQuery('.b2s-network-auth-info').hide();
|
107 |
+
if (jQuery(this).val() == 0 || jQuery(this).val() == -1) {
|
108 |
+
jQuery('.b2s-network-mandant-btn-delete').hide();
|
109 |
+
} else {
|
110 |
+
jQuery('.b2s-network-mandant-btn-delete').show();
|
111 |
+
}
|
112 |
+
jQuery('.b2s-network-details-container-list').hide();
|
113 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id="' + jQuery(this).val() + '"]').show();
|
114 |
+
});
|
115 |
+
|
116 |
+
jQuery(document).on('click', '.b2s-network-mandant-btn-delete', function () {
|
117 |
+
jQuery('.b2s-network-auth-info').hide();
|
118 |
+
jQuery('#b2s-network-delete-mandant').modal('show');
|
119 |
+
});
|
120 |
+
|
121 |
+
jQuery(document).on('click', '.b2s-btn-network-delete-mandant-confirm', function () {
|
122 |
+
jQuery('.b2s-network-auth-area').hide();
|
123 |
+
jQuery('.b2s-loading-area').show();
|
124 |
+
jQuery('#b2s-network-delete-mandant').modal('hide');
|
125 |
+
jQuery('.b2s-server-connection-fail').hide();
|
126 |
+
jQuery.ajax({
|
127 |
+
url: ajaxurl,
|
128 |
+
type: "POST",
|
129 |
+
dataType: "json",
|
130 |
+
cache: false,
|
131 |
+
data: {
|
132 |
+
'action': 'b2s_delete_mandant',
|
133 |
+
'mandantId': jQuery('.b2s-network-mandant-select').val(),
|
134 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
135 |
+
},
|
136 |
+
error: function () {
|
137 |
+
jQuery('.b2s-server-connection-fail').show();
|
138 |
+
return false;
|
139 |
+
},
|
140 |
+
success: function (data) {
|
141 |
+
jQuery('.b2s-network-auth-info').hide();
|
142 |
+
jQuery('.b2s-network-auth-area').show();
|
143 |
+
jQuery('.b2s-loading-area').hide();
|
144 |
+
if (data.result == true && data.mandantId >= 1) {
|
145 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id="' + data.mandantId + '"]').remove();
|
146 |
+
jQuery(".b2s-network-mandant-select option[value='" + data.mandantId + "']").remove();
|
147 |
+
jQuery(".b2s-network-mandant-select option[value='-1']").prop('selected', true);
|
148 |
+
jQuery(".b2s-network-details-container-list[data-mandant-id='0']").show();
|
149 |
+
jQuery('.b2s-network-remove-success').show();
|
150 |
+
jQuery('.b2s-network-mandant-btn-delete').hide();
|
151 |
+
} else {
|
152 |
+
if (data.error == 'nonce') {
|
153 |
+
jQuery('.b2s-nonce-check-fail').show();
|
154 |
+
}
|
155 |
+
jQuery('.b2s-network-remove-fail').show();
|
156 |
+
}
|
157 |
+
}
|
158 |
+
});
|
159 |
+
return false;
|
160 |
+
});
|
161 |
+
|
162 |
+
jQuery(document).on('change', '#b2s-modify-board-and-group-network-selected', function () {
|
163 |
+
if (jQuery(this).attr('data-network-id') == 8) {
|
164 |
+
var name = jQuery(this.options[this.selectedIndex]).closest('optgroup').prop('label');
|
165 |
+
jQuery('#b2s-modify-board-and-group-name').val(name);
|
166 |
+
}
|
167 |
+
return true;
|
168 |
+
});
|
169 |
+
|
170 |
+
jQuery(document).on('click', '.b2s-network-item-team-btn-manage', function () {
|
171 |
+
jQuery('#b2s-manage-auth-team-modal').modal('show');
|
172 |
+
|
173 |
+
if (jQuery('#b2sUserVersion').val() < 3) {
|
174 |
+
return false;
|
175 |
+
}
|
176 |
+
|
177 |
+
jQuery('.b2s-move-connection').hide();
|
178 |
+
jQuery('#b2s-move-connection-failed').hide();
|
179 |
+
jQuery('.b2s-connection-assign').hide();
|
180 |
+
jQuery('.b2s-assignment-area').hide();
|
181 |
+
jQuery('.b2s-connection-owner').hide();
|
182 |
+
jQuery('.b2s-assign-error').hide();
|
183 |
+
jQuery('#b2s-no-assign-user').hide();
|
184 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').show();
|
185 |
+
jQuery('#b2s-assign-info').show();
|
186 |
+
|
187 |
+
|
188 |
+
|
189 |
+
jQuery('#b2sUserAuthId').val(jQuery(this).attr('data-network-auth-id'));
|
190 |
+
jQuery('#b2sOldMandantId').val(jQuery(this).attr('data-network-mandant-id'));
|
191 |
+
jQuery('#b2sNetworkId').val(jQuery(this).attr('data-network-id'));
|
192 |
+
jQuery('#b2sNetworkType').val(jQuery(this).attr('data-network-type'));
|
193 |
+
|
194 |
+
if (jQuery('#b2s-move-connection-select').length) {
|
195 |
+
jQuery('#b2s-move-connection-select').html(jQuery('.b2s-network-mandant-select').html());
|
196 |
+
jQuery("#b2s-move-connection-select option[value='-1']").remove();
|
197 |
+
jQuery("#b2s-move-connection-select option[value='" + jQuery(this).attr('data-network-mandant-id') + "']").remove();
|
198 |
+
if (jQuery(this).attr('data-network-mandant-id') <= 0) {
|
199 |
+
if (jQuery('#b2s-network-select-more-client').length) {
|
200 |
+
var temp_options = jQuery('#b2s-move-connection-select #b2s-network-select-more-client').html();
|
201 |
+
jQuery("#b2s-move-connection-select optiongroup").remove();
|
202 |
+
jQuery("#b2s-move-connection-select").html(temp_options);
|
203 |
+
} else {
|
204 |
+
jQuery('#b2s-move-connection-input').hide();
|
205 |
+
jQuery('#b2s-move-connection-error').show();
|
206 |
+
}
|
207 |
+
} else {
|
208 |
+
if (!jQuery('#b2s-move-connection-select #b2s-network-select-more-client option').length) {
|
209 |
+
var temp_options = jQuery("#b2s-move-connection-select option[value='0']");
|
210 |
+
jQuery("#b2s-move-connection-select optiongroup").remove();
|
211 |
+
jQuery("#b2s-move-connection-select").html(temp_options);
|
212 |
+
}
|
213 |
+
}
|
214 |
+
}
|
215 |
+
|
216 |
+
jQuery.ajax({
|
217 |
+
url: ajaxurl,
|
218 |
+
type: "GET",
|
219 |
+
dataType: "json",
|
220 |
+
cache: false,
|
221 |
+
data: {
|
222 |
+
'action': 'b2s_get_select_mandant_user',
|
223 |
+
'networkAuthId': jQuery(this).attr('data-network-auth-id'),
|
224 |
+
'owner': jQuery(this).attr('data-connection-owner'),
|
225 |
+
'networkId': jQuery('#b2sNetworkId').val(),
|
226 |
+
'networkType': jQuery('#b2sNetworkType').val(),
|
227 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
228 |
+
},
|
229 |
+
error: function () {
|
230 |
+
jQuery('.b2s-server-connection-fail').show();
|
231 |
+
return false;
|
232 |
+
},
|
233 |
+
success: function (data) {
|
234 |
+
if (data.result == true) {
|
235 |
+
if (typeof data.ownerName != 'undefined') {
|
236 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
237 |
+
jQuery('#b2s-connection-owner-name').text(data.ownerName);
|
238 |
+
jQuery('.b2s-move-connection').show();
|
239 |
+
jQuery('.b2s-connection-owner').show();
|
240 |
+
jQuery('.b2s-assignment-area').show();
|
241 |
+
} else if (typeof data.userSelect != 'undefined' && typeof data.assignList != 'undefined') {
|
242 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
243 |
+
jQuery('#b2s-connection-assign-select').html(data.userSelect);
|
244 |
+
jQuery('.b2s-network-assign-list').html(data.assignList);
|
245 |
+
if (jQuery('#b2s-approved-user-list li').length <= 1) {
|
246 |
+
jQuery('#b2s-approved-user-list').hide();
|
247 |
+
} else {
|
248 |
+
jQuery('#b2s-approved-user-list').show();
|
249 |
+
}
|
250 |
+
if (jQuery('#b2s-select-assign-user').html() == '') {
|
251 |
+
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
252 |
+
jQuery('#b2s-assign-network-user-auth').attr('disabled', true);
|
253 |
+
jQuery('#b2s-assign-info').hide();
|
254 |
+
jQuery('#b2s-no-assign-user').show();
|
255 |
+
} else {
|
256 |
+
jQuery('#b2s-select-assign-user').removeAttr('disabled');
|
257 |
+
jQuery('#b2s-assign-network-user-auth').removeAttr('disabled');
|
258 |
+
jQuery('#b2s-no-assign-user').hide();
|
259 |
+
jQuery('#b2s-assign-info').show();
|
260 |
+
}
|
261 |
+
jQuery('.b2s-move-connection').show();
|
262 |
+
jQuery('.b2s-connection-assign').show();
|
263 |
+
jQuery('.b2s-assignment-area').show();
|
264 |
+
} else {
|
265 |
+
jQuery('.b2s-assign-error[data-error-reason="default"]').show();
|
266 |
+
jQuery('.b2s-connection-assign').show();
|
267 |
+
jQuery('.b2s-assignment-area').show();
|
268 |
+
}
|
269 |
+
|
270 |
+
} else {
|
271 |
+
if(data.error == 'nonce') {
|
272 |
+
jQuery('.b2s-nonce-check-fail').show();
|
273 |
+
}
|
274 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
275 |
+
jQuery('.b2s-assign-error[data-error-reason="default"]').show();
|
276 |
+
jQuery('.b2s-connection-assign').show();
|
277 |
+
jQuery('.b2s-assignment-area').show();
|
278 |
+
}
|
279 |
+
return false;
|
280 |
+
}
|
281 |
+
});
|
282 |
+
return false;
|
283 |
+
});
|
284 |
+
|
285 |
+
jQuery(document).on('click', '#b2s-move-user-auth-to-profile', function () {
|
286 |
+
jQuery('.b2s-move-connection').hide();
|
287 |
+
jQuery('#b2s-move-connection-failed').hide();
|
288 |
+
jQuery('.b2s-connection-assign').hide();
|
289 |
+
jQuery('.b2s-assignment-area').hide();
|
290 |
+
jQuery('.b2s-assign-error').hide();
|
291 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').show();
|
292 |
+
|
293 |
+
var authId = jQuery('#b2sUserAuthId').val();
|
294 |
+
var mandantId = jQuery('#b2s-move-connection-select').val();
|
295 |
+
var oldMandantId = jQuery('#b2sOldMandantId').val();
|
296 |
+
var networkId = jQuery('#b2sNetworkId').val();
|
297 |
+
jQuery.ajax({
|
298 |
+
url: ajaxurl,
|
299 |
+
type: "POST",
|
300 |
+
dataType: "json",
|
301 |
+
cache: false,
|
302 |
+
data: {
|
303 |
+
'action': 'b2s_move_user_auth_to_profile',
|
304 |
+
'networkAuthId': authId,
|
305 |
+
'mandantId': mandantId,
|
306 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
307 |
+
},
|
308 |
+
error: function () {
|
309 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
310 |
+
jQuery('.b2s-server-connection-fail').show();
|
311 |
+
return false;
|
312 |
+
},
|
313 |
+
success: function (data) {
|
314 |
+
if (data.result == true) {
|
315 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
316 |
+
jQuery('#b2s-manage-auth-team-modal').modal('hide');
|
317 |
+
//change show all entry
|
318 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + ']').attr('data-network-mandant-id', mandantId);
|
319 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + '] .b2s-network-item-team-btn-manage').attr('data-network-mandant-id', mandantId);
|
320 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + '] .b2s-network-mandant-name').html('(' + jQuery('#b2s-move-connection-select option:selected').text() + ')');
|
321 |
+
|
322 |
+
//sort entry in show all
|
323 |
+
var allArray = [];
|
324 |
+
var first = true;
|
325 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list[data-network-id=' + networkId + '] li').each(function (index, element) {
|
326 |
+
if (first !== true) {
|
327 |
+
allArray.push(element);
|
328 |
+
} else {
|
329 |
+
first = element;
|
330 |
+
}
|
331 |
+
});
|
332 |
+
|
333 |
+
for (i = 0; i < allArray.length; i++) {
|
334 |
+
for (j = 0; j < (allArray.length - 1); j++) {
|
335 |
+
if ((jQuery(allArray[j + 1]).attr('data-network-mandant-id') < jQuery(allArray[j]).attr('data-network-mandant-id')) || (jQuery(allArray[j + 1]).attr('data-network-mandant-id') == jQuery(allArray[j]).attr('data-network-mandant-id') && jQuery(allArray[j + 1]).attr('data-network-type') < jQuery(allArray[j]).attr('data-network-type')) || (jQuery(allArray[j + 1]).attr('data-network-mandant-id') == jQuery(allArray[j]).attr('data-network-mandant-id') && jQuery(allArray[j + 1]).attr('data-network-type') == jQuery(allArray[j]).attr('data-network-type') && jQuery(allArray[j + 1]).attr('data-network-auth-id') < jQuery(allArray[j]).attr('data-network-auth-id'))) {
|
336 |
+
var temp = allArray[j + 1];
|
337 |
+
allArray[j + 1] = allArray[j];
|
338 |
+
allArray[j] = temp;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
}
|
342 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').html('');
|
343 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').append(first);
|
344 |
+
for (i = 0; i < allArray.length; i++) {
|
345 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=-1] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').append(allArray[i]);
|
346 |
+
}
|
347 |
+
|
348 |
+
|
349 |
+
//copy and remove entry in profile
|
350 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + oldMandantId + '] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + ']').attr('data-network-mandant-id', mandantId);
|
351 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + oldMandantId + '] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + '] .b2s-network-item-team-btn-manage').attr('data-network-mandant-id', mandantId);
|
352 |
+
var temp_list_entry = jQuery('.b2s-network-details-container-list[data-mandant-id=' + oldMandantId + '] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + ']');
|
353 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + oldMandantId + '] .b2s-network-item-auth-list-li[data-network-auth-id=' + authId + ']').remove();
|
354 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + mandantId + '] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').append(temp_list_entry);
|
355 |
+
|
356 |
+
//sort entry in new profile
|
357 |
+
var mandantArray = [];
|
358 |
+
var mandantFirst = true;
|
359 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + mandantId + '] .b2s-network-item-auth-list[data-network-id=' + networkId + '] li').each(function (index, element) {
|
360 |
+
if (mandantFirst !== true) {
|
361 |
+
mandantArray.push(element);
|
362 |
+
} else {
|
363 |
+
mandantFirst = element;
|
364 |
+
}
|
365 |
+
});
|
366 |
+
|
367 |
+
for (i = 0; i < mandantArray.length; i++) {
|
368 |
+
for (j = 0; j < (mandantArray.length - 1); j++) {
|
369 |
+
if ((jQuery(mandantArray[j + 1]).attr('data-network-mandant-id') < jQuery(mandantArray[j]).attr('data-network-mandant-id')) || (jQuery(mandantArray[j + 1]).attr('data-network-mandant-id') == jQuery(mandantArray[j]).attr('data-network-mandant-id') && jQuery(mandantArray[j + 1]).attr('data-network-type') < jQuery(mandantArray[j]).attr('data-network-type')) || (jQuery(mandantArray[j + 1]).attr('data-network-mandant-id') == jQuery(mandantArray[j]).attr('data-network-mandant-id') && jQuery(mandantArray[j + 1]).attr('data-network-type') == jQuery(mandantArray[j]).attr('data-network-type') && jQuery(mandantArray[j + 1]).attr('data-network-auth-id') < jQuery(mandantArray[j]).attr('data-network-auth-id'))) {
|
370 |
+
var temp = mandantArray[j + 1];
|
371 |
+
mandantArray[j + 1] = mandantArray[j];
|
372 |
+
mandantArray[j] = temp;
|
373 |
+
}
|
374 |
+
}
|
375 |
+
}
|
376 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + mandantId + '] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').html('');
|
377 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + mandantId + '] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').append(mandantFirst);
|
378 |
+
|
379 |
+
for (i = 0; i < mandantArray.length; i++) {
|
380 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id=' + mandantId + '] .b2s-network-item-auth-list[data-network-id=' + networkId + ']').append(mandantArray[i]);
|
381 |
+
}
|
382 |
+
} else {
|
383 |
+
if (data.error == 'nonce') {
|
384 |
+
jQuery('.b2s-nonce-check-fail').show();
|
385 |
+
}
|
386 |
+
jQuery('#b2s-move-connection-failed').show();
|
387 |
+
}
|
388 |
+
return false;
|
389 |
+
}
|
390 |
+
});
|
391 |
+
return false;
|
392 |
+
});
|
393 |
+
|
394 |
+
jQuery(document).on('click', '#b2s-assign-network-user-auth', function () {
|
395 |
+
if (jQuery('#b2s-select-assign-user').val() <= 0) {
|
396 |
+
return false;
|
397 |
+
}
|
398 |
+
jQuery('.b2s-move-connection').hide();
|
399 |
+
jQuery('#b2s-move-connection-failed').hide();
|
400 |
+
jQuery('.b2s-connection-assign').hide();
|
401 |
+
jQuery('.b2s-assignment-area').hide();
|
402 |
+
jQuery('.b2s-assign-error').hide();
|
403 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').show();
|
404 |
+
|
405 |
+
var authId = jQuery('#b2sUserAuthId').val();
|
406 |
+
var assignBlogUserId = jQuery('#b2s-select-assign-user').val();
|
407 |
+
jQuery.ajax({
|
408 |
+
url: ajaxurl,
|
409 |
+
type: "POST",
|
410 |
+
dataType: "json",
|
411 |
+
cache: false,
|
412 |
+
data: {
|
413 |
+
'action': 'b2s_assign_network_user_auth',
|
414 |
+
'networkAuthId': authId,
|
415 |
+
'assignBlogUserId': assignBlogUserId,
|
416 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
417 |
+
},
|
418 |
+
error: function () {
|
419 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
420 |
+
jQuery('.b2s-assign-error[data-error-reason="default"]').show();
|
421 |
+
jQuery('.b2s-move-connection').show();
|
422 |
+
jQuery('.b2s-connection-assign').show();
|
423 |
+
jQuery('.b2s-assignment-area').show();
|
424 |
+
return false;
|
425 |
+
},
|
426 |
+
success: function (data) {
|
427 |
+
if (data.result == true) {
|
428 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
429 |
+
jQuery('#b2s-approved-user-list').append(data.newListEntry);
|
430 |
+
jQuery('#b2s-approved-user-list').show();
|
431 |
+
jQuery('#b2s-select-assign-user option[value="' + assignBlogUserId + '"]').remove();
|
432 |
+
if (jQuery('#b2s-select-assign-user').html() == '') {
|
433 |
+
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
434 |
+
jQuery('#b2s-assign-info').hide();
|
435 |
+
jQuery('#b2s-no-assign-user').show();
|
436 |
+
}
|
437 |
+
} else {
|
438 |
+
if (data.error == 'nonce') {
|
439 |
+
jQuery('.b2s-nonce-check-fail').show();
|
440 |
+
}
|
441 |
+
jQuery('.b2s-assign-error[data-error-reason="' + data.error_reason + '"]').show();
|
442 |
+
}
|
443 |
+
jQuery('.b2s-loading-area-manage-auth-team-modal').hide();
|
444 |
+
jQuery('.b2s-move-connection').show();
|
445 |
+
jQuery('.b2s-connection-assign').show();
|
446 |
+
jQuery('.b2s-assignment-area').show();
|
447 |
+
return false;
|
448 |
+
}
|
449 |
+
});
|
450 |
+
return false;
|
451 |
+
});
|
452 |
+
|
453 |
+
jQuery(document).on('click', '.b2s-modify-board-and-group-network-btn', function () {
|
454 |
+
jQuery('.b2s-modify-board-and-group-network-loading-area').show();
|
455 |
+
jQuery('.b2s-network-auth-info').hide();
|
456 |
+
jQuery('#b2s-modify-board-and-group-network-modal').modal('show');
|
457 |
+
jQuery('#b2s-modify-board-and-group-network-modal-title').html(jQuery(this).attr('data-modal-title'));
|
458 |
+
jQuery('#b2s-modify-board-and-group-network-auth-id').val(jQuery(this).attr('data-network-auth-id'));
|
459 |
+
jQuery('#b2s-modify-board-and-group-network-id').val(jQuery(this).attr('data-network-id'));
|
460 |
+
jQuery('#b2s-modify-board-and-group-network-type').val(jQuery(this).attr('data-network-type'));
|
461 |
+
jQuery('.b2s-server-connection-fail').hide();
|
462 |
+
jQuery('.b2s-modify-board-and-group-network-save-btn').hide();
|
463 |
+
jQuery('#b2s-modify-board-and-group-network-no-data').hide();
|
464 |
+
jQuery('.b2s-modify-board-and-group-network-data').html("");
|
465 |
+
jQuery('.b2s-modify-board-and-group-network-data').show();
|
466 |
+
jQuery('#b2s-modify-board-and-group-network-save-success').hide();
|
467 |
+
jQuery('#b2s-modify-board-and-group-network-save-error').hide();
|
468 |
+
|
469 |
+
var networkId = jQuery(this).attr('data-network-id');
|
470 |
+
jQuery.ajax({
|
471 |
+
url: ajaxurl,
|
472 |
+
type: "POST",
|
473 |
+
dataType: "json",
|
474 |
+
cache: false,
|
475 |
+
data: {
|
476 |
+
'action': 'b2s_get_network_board_and_group',
|
477 |
+
'networkAuthId': jQuery(this).attr('data-network-auth-id'),
|
478 |
+
'networkType': jQuery(this).attr('data-network-type'),
|
479 |
+
'networkId': networkId,
|
480 |
+
'lang': jQuery('#b2sUserLang').val(),
|
481 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
482 |
+
},
|
483 |
+
error: function () {
|
484 |
+
jQuery('.b2s-server-connection-fail').show();
|
485 |
+
return false;
|
486 |
+
},
|
487 |
+
success: function (data) {
|
488 |
+
jQuery('.b2s-modify-board-and-group-network-loading-area').hide();
|
489 |
+
if (data.result == true) {
|
490 |
+
jQuery('.b2s-modify-board-and-group-network-data').html(data.content);
|
491 |
+
jQuery('.b2s-modify-board-and-group-network-save-btn').show();
|
492 |
+
} else {
|
493 |
+
if (data.error == 'nonce') {
|
494 |
+
jQuery('.b2s-nonce-check-fail').show();
|
495 |
+
}
|
496 |
+
jQuery('#b2s-modify-board-and-group-network-no-data').show();
|
497 |
+
}
|
498 |
+
}
|
499 |
+
});
|
500 |
+
return false;
|
501 |
+
|
502 |
+
});
|
503 |
+
|
504 |
+
|
505 |
+
jQuery(document).on('click', '.b2s-modify-board-and-group-network-save-btn', function () {
|
506 |
+
|
507 |
+
jQuery('.b2s-modify-board-and-group-network-save-btn').hide();
|
508 |
+
jQuery('.b2s-modify-board-and-group-network-data').hide();
|
509 |
+
jQuery('.b2s-modify-board-and-group-network-loading-area').show();
|
510 |
+
|
511 |
+
var networkAuthId = jQuery('#b2s-modify-board-and-group-network-auth-id').val();
|
512 |
+
var networkType = jQuery('#b2s-modify-board-and-group-network-type').val();
|
513 |
+
var networkId = jQuery('#b2s-modify-board-and-group-network-id').val();
|
514 |
+
var name = jQuery('#b2s-modify-board-and-group-name').val();
|
515 |
+
|
516 |
+
jQuery.ajax({
|
517 |
+
url: ajaxurl,
|
518 |
+
type: "POST",
|
519 |
+
dataType: "json",
|
520 |
+
cache: false,
|
521 |
+
data: {
|
522 |
+
'action': 'b2s_save_network_board_and_group',
|
523 |
+
'networkAuthId': networkAuthId,
|
524 |
+
'networkType': networkType,
|
525 |
+
'networkId': networkId,
|
526 |
+
'boardAndGroup': jQuery('#b2s-modify-board-and-group-network-selected').val(),
|
527 |
+
'boardAndGroupName': name,
|
528 |
+
'lang': jQuery('#b2sUserLang').val(),
|
529 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
530 |
+
},
|
531 |
+
error: function () {
|
532 |
+
jQuery('.b2s-server-connection-fail').show();
|
533 |
+
return false;
|
534 |
+
},
|
535 |
+
success: function (data) {
|
536 |
+
jQuery('.b2s-modify-board-and-group-network-loading-area').hide();
|
537 |
+
if (data.result == true) {
|
538 |
+
jQuery('#b2s-modify-board-and-group-network-save-success').show();
|
539 |
+
} else {
|
540 |
+
if (data.error == 'nonce') {
|
541 |
+
jQuery('.b2s-nonce-check-fail').show();
|
542 |
+
}
|
543 |
+
jQuery('#b2s-modify-board-and-group-network-save-error').show();
|
544 |
+
}
|
545 |
+
}
|
546 |
+
});
|
547 |
+
return false;
|
548 |
+
});
|
549 |
+
|
550 |
+
|
551 |
+
jQuery(document).on('click', '#b2s-delete-network-sched-post', function () {
|
552 |
+
if (!jQuery(this).is(":checked")) {
|
553 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').prop('disabled', true);
|
554 |
+
jQuery('#b2s-delete-network-sched-post').val('0');
|
555 |
+
} else {
|
556 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').removeAttr('disabled');
|
557 |
+
jQuery('#b2s-delete-network-sched-post').val('1');
|
558 |
+
}
|
559 |
+
});
|
560 |
+
|
561 |
+
jQuery(document).on('click', '.b2s-network-item-auth-list-btn-delete', function () {
|
562 |
+
jQuery('.b2s-loading-area').show();
|
563 |
+
jQuery('.b2s-network-auth-info').hide();
|
564 |
+
jQuery('#b2s-network-delete-auth').modal('show');
|
565 |
+
jQuery('#b2s-delete-network-auth-id').val(jQuery(this).attr('data-network-auth-id'));
|
566 |
+
jQuery('#b2s-delete-network-id').val(jQuery(this).attr('data-network-id'));
|
567 |
+
jQuery('#b2s-delete-network-type').val(jQuery(this).attr('data-network-type'));
|
568 |
+
jQuery('#b2s-delete-assign-network-auth-id').val(jQuery(this).attr('data-assign-network-auth-id'));
|
569 |
+
jQuery('#b2s-delete-blog-user-id').val(jQuery(this).attr('data-blog-user-id'));
|
570 |
+
jQuery('.b2s-server-connection-fail').hide();
|
571 |
+
jQuery('#b2s-delete-all-assign-text').hide();
|
572 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-text').hide();
|
573 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-btn').hide();
|
574 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-text').hide();
|
575 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').hide();
|
576 |
+
jQuery('.b2s-btn-network-delete-sched-text').hide();
|
577 |
+
jQuery('.b2s-btn-network-delete-assign-text').hide();
|
578 |
+
jQuery('.b2s-btn-network-delete-assign-sched-text').hide();
|
579 |
+
var countSchedId = jQuery(this).attr('data-network-auth-id');
|
580 |
+
if (typeof jQuery(this).attr('data-assign-network-auth-id') != 'undefined' && jQuery(this).attr('data-assign-network-auth-id') > 0) {
|
581 |
+
countSchedId = jQuery(this).attr('data-assign-network-auth-id');
|
582 |
+
}
|
583 |
+
|
584 |
+
jQuery.ajax({
|
585 |
+
url: ajaxurl,
|
586 |
+
type: "POST",
|
587 |
+
dataType: "json",
|
588 |
+
cache: false,
|
589 |
+
data: {
|
590 |
+
'action': 'b2s_get_sched_posts_by_user_auth',
|
591 |
+
'networkAuthId': countSchedId,
|
592 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
593 |
+
},
|
594 |
+
error: function () {
|
595 |
+
jQuery('.b2s-server-connection-fail').show();
|
596 |
+
return false;
|
597 |
+
},
|
598 |
+
success: function (data) {
|
599 |
+
jQuery('.b2s-loading-area').hide();
|
600 |
+
if (data.result == true) {
|
601 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').removeAttr('disabled');
|
602 |
+
if (data.count >= 1) {
|
603 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-text').show();
|
604 |
+
jQuery('.b2s-btn-network-delete-sched-text').show();
|
605 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-btn').show();
|
606 |
+
jQuery('#b2s-btn-network-delete-auth-show-post-count').text(data.count);
|
607 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').prop('disabled', true);
|
608 |
+
}
|
609 |
+
if (data.assignListCount >= 1) {
|
610 |
+
jQuery('.b2s-btn-network-delete-assign-text').show();
|
611 |
+
jQuery('#b2s-delete-assignment').val('all');
|
612 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').prop('disabled', true);
|
613 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-text').show();
|
614 |
+
} else {
|
615 |
+
jQuery('#b2s-delete-assignment').val('');
|
616 |
+
}
|
617 |
+
if (data.assignCount >= 1) {
|
618 |
+
jQuery('.b2s-btn-network-delete-assign-sched-text').show();
|
619 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').prop('disabled', true);
|
620 |
+
jQuery('.b2s-btn-network-delete-auth-show-post-text').show();
|
621 |
+
}
|
622 |
+
jQuery('#b2s-delete-assign-list').val(data.assignList);
|
623 |
+
} else {
|
624 |
+
if (data.error == 'nonce') {
|
625 |
+
jQuery('.b2s-nonce-check-fail').show();
|
626 |
+
}
|
627 |
+
}
|
628 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-text').show();
|
629 |
+
jQuery('.b2s-btn-network-delete-auth-confirm-btn').show();
|
630 |
+
jQuery('#b2s-delete-network-sched-post').prop('checked', false);
|
631 |
+
jQuery('#b2s-delete-network-sched-post').val('0');
|
632 |
+
}
|
633 |
+
});
|
634 |
+
return false;
|
635 |
+
});
|
636 |
+
|
637 |
+
jQuery(document).on('click', '.b2s-btn-network-delete-auth-show-post-btn', function () {
|
638 |
+
window.location.href = jQuery('#b2s-redirect-url-sched-post').val() + "&b2sUserAuthId=" + jQuery('#b2s-delete-network-auth-id').val();
|
639 |
+
return false;
|
640 |
+
});
|
641 |
+
|
642 |
+
jQuery(document).on('click', '.b2s-btn-network-delete-auth-confirm-btn', function () {
|
643 |
+
jQuery('.b2s-network-auth-area').hide();
|
644 |
+
jQuery('.b2s-loading-area').show();
|
645 |
+
jQuery('#b2s-manage-auth-team-modal').modal('hide');
|
646 |
+
jQuery('#b2s-network-delete-auth').modal('hide');
|
647 |
+
jQuery('.b2s-server-connection-fail').hide();
|
648 |
+
jQuery.ajax({
|
649 |
+
url: ajaxurl,
|
650 |
+
type: "POST",
|
651 |
+
dataType: "json",
|
652 |
+
cache: false,
|
653 |
+
data: {
|
654 |
+
'action': 'b2s_delete_user_auth',
|
655 |
+
'networkAuthId': jQuery('#b2s-delete-network-auth-id').val(),
|
656 |
+
'networkId': jQuery('#b2s-delete-network-id').val(),
|
657 |
+
'networkType': jQuery('#b2s-delete-network-type').val(),
|
658 |
+
'deleteSchedPost': jQuery('#b2s-delete-network-sched-post').val(),
|
659 |
+
'assignNetworkAuthId': jQuery('#b2s-delete-assign-network-auth-id').val(),
|
660 |
+
'blogUserId': jQuery('#b2s-delete-blog-user-id').val(),
|
661 |
+
'deleteAssignment': jQuery('#b2s-delete-assignment').val(),
|
662 |
+
'assignList': jQuery('#b2s-delete-assign-list').val(),
|
663 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
664 |
+
},
|
665 |
+
error: function () {
|
666 |
+
jQuery('.b2s-server-connection-fail').show();
|
667 |
+
return false;
|
668 |
+
},
|
669 |
+
success: function (data) {
|
670 |
+
jQuery('.b2s-network-auth-info').hide();
|
671 |
+
jQuery('.b2s-network-auth-area').show();
|
672 |
+
jQuery('.b2s-loading-area').hide();
|
673 |
+
if (data.result == true && data.networkAuthId >= 1 && data.networkId >= 1) {
|
674 |
+
jQuery('.b2s-network-item-auth-list-btn-delete[data-network-auth-id="' + data.networkAuthId + '"]').parent('div').parent('li').remove();
|
675 |
+
var networkCount = jQuery('.b2s-network-auth-count-current[data-network-count-trigger="true"][data-network-id="' + data.networkId + '"').text();
|
676 |
+
if (networkCount != "0") {
|
677 |
+
var newCount = parseInt(networkCount) - 1;
|
678 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + data.networkId + '"').text(newCount);
|
679 |
+
}
|
680 |
+
jQuery('.b2s-network-remove-success').show();
|
681 |
+
} else {
|
682 |
+
if (data.error == 'nonce') {
|
683 |
+
jQuery('.b2s-nonce-check-fail').show();
|
684 |
+
}
|
685 |
+
jQuery('.b2s-network-remove-fail').show();
|
686 |
+
}
|
687 |
+
}
|
688 |
+
});
|
689 |
+
return false;
|
690 |
+
});
|
691 |
+
|
692 |
+
jQuery(document).on('click', '.b2s-network-add-mandant-btn-save', function () {
|
693 |
+
if (!jQuery('.b2s-network-add-mandant-input').val()) {
|
694 |
+
jQuery('.b2s-network-add-mandant-input').addClass('error');
|
695 |
+
} else {
|
696 |
+
jQuery('.b2s-network-add-mandant-btn-loading').show();
|
697 |
+
jQuery('.b2s-network-add-mandant-btn-save').hide();
|
698 |
+
jQuery('.b2s-network-add-mandant-input').removeClass('error');
|
699 |
+
jQuery('.b2s-server-connection-fail').hide();
|
700 |
+
jQuery.ajax({
|
701 |
+
url: ajaxurl,
|
702 |
+
type: "POST",
|
703 |
+
dataType: "json",
|
704 |
+
cache: false,
|
705 |
+
data: {
|
706 |
+
'action': 'b2s_save_user_mandant',
|
707 |
+
'mandant': jQuery('.b2s-network-add-mandant-input').val(),
|
708 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
709 |
+
},
|
710 |
+
error: function () {
|
711 |
+
jQuery('.b2s-server-connection-fail').show();
|
712 |
+
return false;
|
713 |
+
},
|
714 |
+
success: function (data) {
|
715 |
+
jQuery('.b2s-network-auth-info').hide();
|
716 |
+
jQuery('.b2s-network-add-mandant-btn-loading').hide();
|
717 |
+
jQuery('.b2s-network-add-mandant-btn-save').show();
|
718 |
+
if (data.result == true) {
|
719 |
+
jQuery('.b2s-network-mandant-select optgroup[id="b2s-network-select-more-client"]').append('<option value="' + data.mandantId + '">' + data.mandantName + '</option>');
|
720 |
+
jQuery('.b2s-network-details-container').append(data.content);
|
721 |
+
jQuery('.b2s-network-mandant-select option[value="' + data.mandantId + '"]').prop('selected', true);
|
722 |
+
jQuery('.b2s-network-details-container-list').hide();
|
723 |
+
jQuery('.b2s-network-details-container-list[data-mandant-id="' + data.mandantId + '"]').show();
|
724 |
+
jQuery('.b2s-network-add-mandant-success').show();
|
725 |
+
} else {
|
726 |
+
jQuery('.b2s-network-add-mandant-error').show();
|
727 |
+
}
|
728 |
+
jQuery('#b2s-network-add-mandant').modal('hide');
|
729 |
+
|
730 |
+
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
731 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
732 |
+
});
|
733 |
+
|
734 |
+
}
|
735 |
+
});
|
736 |
+
}
|
737 |
+
});
|
738 |
+
|
739 |
+
jQuery(document).on('change', '.b2s-network-add-mandant-input', function () {
|
740 |
+
if (jQuery(this).val() != "") {
|
741 |
+
jQuery(this).removeClass('error');
|
742 |
+
}
|
743 |
+
});
|
744 |
+
|
745 |
+
window.addEventListener('message', function (e) {
|
746 |
+
if (e.origin == jQuery('#b2sServerUrl').val()) {
|
747 |
+
var data = JSON.parse(e.data);
|
748 |
+
loginSuccess(data.networkId, data.networkType, data.displayName, data.networkAuthId, data.mandandId);
|
749 |
+
}
|
750 |
+
});
|
751 |
+
|
752 |
+
function loginSuccess(networkId, networkType, displayName, networkAuthId, mandandId) {
|
753 |
+
jQuery('.b2s-network-auth-info').hide();
|
754 |
+
jQuery('.b2s-network-auth-success').show();
|
755 |
+
jQuery('.b2s-server-connection-fail').hide();
|
756 |
+
jQuery.ajax({
|
757 |
+
url: ajaxurl,
|
758 |
+
type: "POST",
|
759 |
+
dataType: "json",
|
760 |
+
cache: false,
|
761 |
+
data: {
|
762 |
+
'action': 'b2s_network_save_auth_to_settings',
|
763 |
+
'mandandId': mandandId,
|
764 |
+
'networkAuthId': networkAuthId,
|
765 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
766 |
+
},
|
767 |
+
error: function () {
|
768 |
+
jQuery('.b2s-server-connection-fail').show();
|
769 |
+
return false;
|
770 |
+
},
|
771 |
+
success: function (data) {}
|
772 |
+
});
|
773 |
+
|
774 |
+
var typ = new Array('Profile', 'Page', 'Group');
|
775 |
+
var days = 'Days';
|
776 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
777 |
+
typ = new Array('Profil', 'Seite', 'Gruppe');
|
778 |
+
days = 'Tage';
|
779 |
+
}
|
780 |
+
//NEW
|
781 |
+
if (jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"]').length == 0) {
|
782 |
+
var html = "<li class='b2s-network-item-auth-list-li b2s-label-success-border-left' data-network-auth-id='" + networkAuthId + "' data-network-mandant-id='" + mandandId + "' data-network-id='" + networkId + "' data-network-type='" + networkType + "'>";
|
783 |
+
html += '<div class="pull-left"><span class="b2s-network-item-auth-type">' + typ[networkType] + '</span>: ';
|
784 |
+
html += '<span class="b2s-network-item-auth-user-name">' + displayName + '</span>';
|
785 |
+
if (mandandId >= 0) {
|
786 |
+
var mandantName = jQuery(".b2s-network-mandant-select option:selected").text();
|
787 |
+
if (mandandId <= 0) {
|
788 |
+
mandantName = jQuery(".b2s-network-mandant-select option[value='0']").text();
|
789 |
+
}
|
790 |
+
html += ' <span class="b2s-network-mandant-name">(' + mandantName + ')</span>';
|
791 |
+
}
|
792 |
+
|
793 |
+
var today = new Date();
|
794 |
+
if (today.getMinutes() >= 30) {
|
795 |
+
today.setHours(today.getHours() + 1);
|
796 |
+
today.setMinutes(0);
|
797 |
+
} else {
|
798 |
+
today.setMinutes(30);
|
799 |
+
}
|
800 |
+
var time = formatAMPM(today);
|
801 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
802 |
+
time = padDate(today.getHours()) + ':' + padDate(today.getMinutes());
|
803 |
+
}
|
804 |
+
|
805 |
+
html += '</div>';
|
806 |
+
html += '<div class="pull-right">';
|
807 |
+
html += '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="' + networkType + '" data-network-id="' + networkId + '" data-network-auth-id="' + networkAuthId + '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
808 |
+
|
809 |
+
if (jQuery('#b2sUserVersion').val() == '0') {
|
810 |
+
html += '<span class="b2s-sched-manager-premium-area pull-right hidden-xs" style="width: 240px;"><span class="label label-success"><a href="#" class="btn-label-premium" data-toggle="modal" data-target="#b2sInfoSchedTimesModal">PREMIUM</a></span></span>';
|
811 |
+
} else {
|
812 |
+
html += '<span class="b2s-sched-manager-time-area pull-right b2s-sched-manager-add-padding hidden-xs" style="margin-right:30px !important;">';
|
813 |
+
html += '<input class="form-control b2s-box-sched-time-input b2s-settings-sched-item-input-time" type="text" value="' + time + '" readonly data-network-auth-id="' + networkAuthId + '" data-network-mandant-id="' + mandandId + '" data-network-id="' + networkId + '" data-network-type="' + networkType + '" name="b2s-user-sched-data[time][' + networkAuthId + ']">';
|
814 |
+
html += '</span>';
|
815 |
+
html += '<span class="b2s-sched-manager-day-area pull-right hidden-xs" style=""><span class="b2s-sched-manager-item-input-day-btn-minus" data-network-auth-id="' + networkAuthId + '">-</span> <span class="b2s-text-middle">+</span>';
|
816 |
+
html += '<input type="text" class="b2s-sched-manager-item-input-day" data-network-auth-id="' + networkAuthId + '" data-network-mandant-id="' + mandandId + '" data-network-id="' + networkId + '" data-network-type="' + networkType + '" name="b2s-user-sched-data[delay_day][' + networkAuthId + ']" value="0" readonly> <span class="b2s-text-middle">' + days + '</span> <span class="b2s-sched-manager-item-input-day-btn-plus" data-network-auth-id="' + networkAuthId + '">+</span></span>';
|
817 |
+
}
|
818 |
+
html += '</div>';
|
819 |
+
html += '<div class="clearfix"></div>';
|
820 |
+
html += '</li>';
|
821 |
+
|
822 |
+
jQuery(html).insertAfter('.b2s-network-item-auth-list-li[data-network-mandant-id="' + mandandId + '"][data-network-id="' + networkId + '"][data-view="all"]:first');
|
823 |
+
jQuery(html).insertAfter('.b2s-network-item-auth-list-li[data-network-mandant-id="' + mandandId + '"][data-network-id="' + networkId + '"][data-view="selected"]:first');
|
824 |
+
jQuery('.b2s-settings-sched-item-input-time[data-network-auth-id="' + networkAuthId + '"]').val(time);
|
825 |
+
var networkCount = jQuery('.b2s-network-auth-count-current[data-network-count-trigger="true"][data-network-id="' + networkId + '"').text();
|
826 |
+
var newCount = parseInt(networkCount) + 1;
|
827 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + networkId + '"').text(newCount);
|
828 |
+
init();
|
829 |
+
saveTimeSettings();
|
830 |
+
|
831 |
+
//Update
|
832 |
+
} else {
|
833 |
+
jQuery('.b2s-network-auth-update-btn[data-network-auth-id="' + networkAuthId + '"').show();
|
834 |
+
if (jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"][data-network-mandant-id="' + mandandId + '"][data-network-id="' + networkId + '"][data-network-type="' + networkType + '"]').length > 0) {
|
835 |
+
var html = '<span class="b2s-network-item-auth-type">' + typ[networkType] + '</span>: ';
|
836 |
+
html += '<span class="b2s-network-item-auth-user-name">' + displayName + '</span>';
|
837 |
+
if (mandandId >= 0) {
|
838 |
+
var mandantName = jQuery(".b2s-network-mandant-select option:selected").text();
|
839 |
+
if (mandandId <= 0) {
|
840 |
+
mandantName = jQuery(".b2s-network-mandant-select option[value='0']").text();
|
841 |
+
}
|
842 |
+
html += ' <span class="b2s-network-mandant-name">(' + mandantName + ')</span>';
|
843 |
+
}
|
844 |
+
jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"][data-network-mandant-id="' + mandandId + '"][data-network-id="' + networkId + '"][data-network-type="' + networkType + '"] div:first').html(html);
|
845 |
+
jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"][data-network-mandant-id="' + mandandId + '"][data-network-id="' + networkId + '"][data-network-type="' + networkType + '"]').removeClass('b2s-label-danger-border-left').addClass('b2s-label-success-border-left');
|
846 |
+
}
|
847 |
+
}
|
848 |
+
}
|
849 |
+
|
850 |
+
|
851 |
+
jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function () {
|
852 |
+
jQuery('.b2s-server-connection-fail').hide();
|
853 |
+
jQuery.ajax({
|
854 |
+
url: ajaxurl,
|
855 |
+
type: "POST",
|
856 |
+
dataType: "json",
|
857 |
+
cache: false,
|
858 |
+
data: {
|
859 |
+
'action': 'b2s_get_settings_sched_time_default',
|
860 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
861 |
+
},
|
862 |
+
error: function () {
|
863 |
+
jQuery('.b2s-server-connection-fail').show();
|
864 |
+
return false;
|
865 |
+
},
|
866 |
+
success: function (data) {
|
867 |
+
if (data.result == true) {
|
868 |
+
jQuery.each(data.times, function (network_id, time) {
|
869 |
+
time.forEach(function (network_type_time, count) {
|
870 |
+
if (network_type_time != "") {
|
871 |
+
jQuery('.b2s-settings-sched-item-input-time[data-network-id="' + network_id + '"][data-network-type="' + count + '"]').val(network_type_time);
|
872 |
+
count++;
|
873 |
+
}
|
874 |
+
});
|
875 |
+
});
|
876 |
+
saveTimeSettings();
|
877 |
+
} else {
|
878 |
+
if (data.error == 'nonce') {
|
879 |
+
jQuery('.b2s-nonce-check-fail').show();
|
880 |
+
}
|
881 |
+
}
|
882 |
+
}
|
883 |
+
});
|
884 |
+
return false;
|
885 |
+
});
|
886 |
+
|
887 |
+
function saveTimeSettings() {
|
888 |
+
jQuery('.b2s-settings-user-error').hide();
|
889 |
+
jQuery.ajax({
|
890 |
+
processData: false,
|
891 |
+
url: ajaxurl,
|
892 |
+
type: "POST",
|
893 |
+
dataType: "json",
|
894 |
+
cache: false,
|
895 |
+
data: jQuery('#b2sSaveTimeSettings').serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
896 |
+
error: function () {
|
897 |
+
return false;
|
898 |
+
},
|
899 |
+
success: function (data) {
|
900 |
+
if (data.result !== true) {
|
901 |
+
if (data.error == 'nonce') {
|
902 |
+
jQuery('.b2s-nonce-check-fail').show();
|
903 |
+
}
|
904 |
+
jQuery('.b2s-settings-user-error').show();
|
905 |
+
}
|
906 |
+
}
|
907 |
+
});
|
908 |
+
}
|
909 |
+
|
910 |
+
function wop(url, name) {
|
911 |
+
jQuery('.b2s-network-auth-info').hide();
|
912 |
+
jQuery('.b2s-network-auth-success').hide();
|
913 |
+
var location = encodeURI(window.location.protocol + '//' + window.location.hostname);
|
914 |
+
window.open(url + '&location=' + location, name, "width=650,height=900,scrollbars=yes,toolbar=no,status=no,resizable=no,menubar=no,location=no,directories=no,top=20,left=20");
|
915 |
+
}
|
916 |
+
|
917 |
+
function showFilter(typ) {
|
918 |
+
if (typ == 'show') {
|
919 |
+
jQuery('.filterShow').hide();
|
920 |
+
jQuery('.form-inline').show();
|
921 |
+
jQuery('.filterHide').show();
|
922 |
+
} else {
|
923 |
+
jQuery('.filterShow').show();
|
924 |
+
jQuery('.form-inline').hide();
|
925 |
+
jQuery('.filterHide').hide();
|
926 |
+
}
|
927 |
+
}
|
928 |
+
|
929 |
+
|
930 |
+
function formatAMPM(date) {
|
931 |
+
var hours = date.getHours();
|
932 |
+
var minutes = date.getMinutes();
|
933 |
+
var ampm = hours >= 12 ? 'PM' : 'AM';
|
934 |
+
hours = hours % 12;
|
935 |
+
hours = hours ? hours : 12; // the hour '0' should be '12'
|
936 |
+
minutes = minutes < 10 ? '0' + minutes : minutes;
|
937 |
+
var strTime = hours + ':' + minutes + ' ' + ampm;
|
938 |
+
return strTime;
|
939 |
+
}
|
940 |
+
|
941 |
+
function padDate(n) {
|
942 |
+
return ("0" + n).slice(-2);
|
943 |
+
}
|
944 |
+
|
945 |
+
jQuery(document).on('click', '.b2s-edit-template-btn', function () {
|
946 |
+
jQuery('.b2s-edit-template-content').hide();
|
947 |
+
jQuery('.b2s-edit-template-save-btn').hide();
|
948 |
+
jQuery('.b2s-loading-area').show();
|
949 |
+
jQuery('#b2s-edit-template').modal('show');
|
950 |
+
jQuery('#b2s-edit-template-network-id').val(jQuery(this).attr('data-network-id'));
|
951 |
+
var networkId = jQuery(this).attr('data-network-id');
|
952 |
+
jQuery('.b2s-edit-template-network-img').hide();
|
953 |
+
jQuery('#b2s-edit-template-network-img-' + networkId).show();
|
954 |
+
|
955 |
+
jQuery.ajax({
|
956 |
+
url: ajaxurl,
|
957 |
+
type: "GET",
|
958 |
+
dataType: "json",
|
959 |
+
cache: false,
|
960 |
+
data: {
|
961 |
+
'action': 'b2s_get_edit_template',
|
962 |
+
'networkId': networkId,
|
963 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
964 |
+
},
|
965 |
+
error: function () {
|
966 |
+
//TODO Fehlermeldung
|
967 |
+
return false;
|
968 |
+
},
|
969 |
+
success: function (data) {
|
970 |
+
if (data.result == true) {
|
971 |
+
jQuery('.b2s-edit-template-content').html(data.content);
|
972 |
+
jQuery('.b2s-loading-area').hide();
|
973 |
+
jQuery('.b2s-edit-template-content').show();
|
974 |
+
jQuery('.b2s-edit-template-save-btn').show();
|
975 |
+
if (jQuery('#b2sUserVersion').val() < 1 && networkId != 1) {
|
976 |
+
jQuery('.b2s-edit-template-save-btn').addClass('b2s-btn-disabled');
|
977 |
+
} else {
|
978 |
+
jQuery('.b2s-edit-template-save-btn').removeClass('b2s-btn-disabled');
|
979 |
+
}
|
980 |
+
} else {
|
981 |
+
if(data.error == 'nonce') {
|
982 |
+
jQuery('.b2s-nonce-check-fail').show();
|
983 |
+
}
|
984 |
+
}
|
985 |
+
}
|
986 |
+
});
|
987 |
+
});
|
988 |
+
|
989 |
+
jQuery(window).on("load", function () {
|
990 |
+
if (jQuery('#b2sUserVersion').val() >= 1) {
|
991 |
+
jQuery(document).on('click', '.b2s-edit-template-link-post', function () {
|
992 |
+
jQuery('.b2s-edit-template-image-post[data-network-type=' + jQuery(this).attr('data-network-type') + ']').removeClass('btn-primary').addClass('btn-light');
|
993 |
+
jQuery('.b2s-edit-template-link-post[data-network-type=' + jQuery(this).attr('data-network-type') + ']').removeClass('btn-light').addClass('btn-primary');
|
994 |
+
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('0');
|
995 |
+
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
996 |
+
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
997 |
+
});
|
998 |
+
|
999 |
+
jQuery(document).on('click', '.b2s-edit-template-image-post', function () {
|
1000 |
+
jQuery('.b2s-edit-template-link-post[data-network-type=' + jQuery(this).attr('data-network-type') + ']').removeClass('btn-primary').addClass('btn-light');
|
1001 |
+
jQuery('.b2s-edit-template-image-post[data-network-type=' + jQuery(this).attr('data-network-type') + ']').removeClass('btn-light').addClass('btn-primary');
|
1002 |
+
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('1');
|
1003 |
+
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
1004 |
+
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
1005 |
+
});
|
1006 |
+
|
1007 |
+
|
1008 |
+
document.addEventListener('dragstart', function (event) {
|
1009 |
+
event.dataTransfer.setData('Text', event.target.innerHTML);
|
1010 |
+
});
|
1011 |
+
|
1012 |
+
document.addEventListener('drop', function (event) {
|
1013 |
+
setTimeout(function () {
|
1014 |
+
jQuery('.b2s-edit-template-post-content').trigger('keyup');
|
1015 |
+
}, 0);
|
1016 |
+
});
|
1017 |
+
|
1018 |
+
jQuery(document).on('mousedown mouseup keydown keyup', '.b2s-edit-template-post-content', function () {
|
1019 |
+
var tb = jQuery(this).get(0);
|
1020 |
+
jQuery('.b2s-edit-template-content-selection-start[data-network-type="' + jQuery(this).attr('data-network-type') + '"]').val(tb.selectionStart);
|
1021 |
+
jQuery('.b2s-edit-template-content-selection-end[data-network-type="' + jQuery(this).attr('data-network-type') + '"]').val(tb.selectionEnd);
|
1022 |
+
});
|
1023 |
+
|
1024 |
+
jQuery(document).on('keyup', '.b2s-edit-template-post-content', function () {
|
1025 |
+
jQuery('.b2s-edit-template-preview-content[data-network-type="' + jQuery(this).attr('data-network-type') + '"]').html(jQuery(this).val().replace(/\n/g, "<br>"));
|
1026 |
+
});
|
1027 |
+
|
1028 |
+
jQuery(document).on('keydown', '.b2s-edit-template-post-content', function () {
|
1029 |
+
var tb = jQuery(this).get(0);
|
1030 |
+
var start = tb.selectionStart;
|
1031 |
+
var end = tb.selectionEnd;
|
1032 |
+
var reg = new RegExp("({.+?})", "g");
|
1033 |
+
var amatch = null;
|
1034 |
+
while ((amatch = reg.exec(jQuery(this).val())) != null) {
|
1035 |
+
var thisMatchStart = amatch.index;
|
1036 |
+
var thisMatchEnd = amatch.index + amatch[0].length;
|
1037 |
+
//case: keydown in pattern
|
1038 |
+
if (start > thisMatchStart && end <= thisMatchEnd && (event.keyCode == 8 || event.keyCode == 46)) {
|
1039 |
+
jQuery(this).val(jQuery(this).val().substr(0, thisMatchStart) + jQuery(this).val().substr(thisMatchEnd));
|
1040 |
+
event.preventDefault();
|
1041 |
+
return false;
|
1042 |
+
|
1043 |
+
}
|
1044 |
+
//case: before pattern
|
1045 |
+
if (start <= thisMatchStart && end > thisMatchStart && (event.keyCode > 40 || event.keyCode < 16 || event.keyCode == 32)) {
|
1046 |
+
event.preventDefault();
|
1047 |
+
return false;
|
1048 |
+
//case: after pattern
|
1049 |
+
} else if (start > thisMatchStart && start < thisMatchEnd && (event.keyCode > 40 || event.keyCode < 16 || event.keyCode == 32)) {
|
1050 |
+
event.preventDefault();
|
1051 |
+
return false;
|
1052 |
+
}
|
1053 |
+
}
|
1054 |
+
});
|
1055 |
+
|
1056 |
+
jQuery(document).on('click', '.b2s-edit-template-content-post-item', function () {
|
1057 |
+
var networkType = jQuery(this).attr('data-network-type');
|
1058 |
+
var text = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1059 |
+
var start = jQuery('.b2s-edit-template-content-selection-start[data-network-type="' + networkType + '"]').val();
|
1060 |
+
var end = jQuery('.b2s-edit-template-content-selection-end[data-network-type="' + networkType + '"]').val();
|
1061 |
+
|
1062 |
+
var reg = new RegExp("({.+?})", "g");
|
1063 |
+
var amatch = null;
|
1064 |
+
while ((amatch = reg.exec(text)) != null) {
|
1065 |
+
var thisMatchStart = amatch.index;
|
1066 |
+
var thisMatchEnd = amatch.index + amatch[0].length;
|
1067 |
+
//case: keydown in pattern
|
1068 |
+
if (start > thisMatchStart && end < thisMatchEnd) {
|
1069 |
+
event.preventDefault();
|
1070 |
+
return false;
|
1071 |
+
}
|
1072 |
+
}
|
1073 |
+
var newText = text.slice(0, start) + jQuery(this).html() + text.slice(end);
|
1074 |
+
jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val(newText);
|
1075 |
+
jQuery('.b2s-edit-template-post-content').focus();
|
1076 |
+
jQuery('.b2s-edit-template-post-content').trigger('keyup');
|
1077 |
+
event.preventDefault();
|
1078 |
+
return false;
|
1079 |
+
});
|
1080 |
+
|
1081 |
+
jQuery(document).on('click', '.b2s-edit-template-content-clear-btn', function () {
|
1082 |
+
var networkType = jQuery(this).attr('data-network-type');
|
1083 |
+
jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val("");
|
1084 |
+
jQuery('.b2s-edit-template-post-content').focus();
|
1085 |
+
jQuery('.b2s-edit-template-post-content').trigger('keyup');
|
1086 |
+
event.preventDefault();
|
1087 |
+
return false;
|
1088 |
+
});
|
1089 |
+
|
1090 |
+
|
1091 |
+
jQuery(document).on('keyup', '.b2s-edit-template-range', function () {
|
1092 |
+
if (isNaN(parseInt(jQuery(this).val())) || parseInt(jQuery(this).val()) < 1) {
|
1093 |
+
jQuery(this).val("1");
|
1094 |
+
}
|
1095 |
+
if (jQuery(this).attr('max') > 0 && parseInt(jQuery(this).val()) > jQuery(this).attr('max')) {
|
1096 |
+
jQuery(this).val(jQuery(this).attr('max'));
|
1097 |
+
}
|
1098 |
+
event.preventDefault();
|
1099 |
+
return false;
|
1100 |
+
});
|
1101 |
+
|
1102 |
+
jQuery(document).on('keyup', '.b2s-edit-template-excerpt-range', function () {
|
1103 |
+
if (isNaN(parseInt(jQuery(this).val())) || parseInt(jQuery(this).val()) < 1) {
|
1104 |
+
jQuery(this).val("1");
|
1105 |
+
}
|
1106 |
+
if (jQuery(this).attr('max') > 0 && parseInt(jQuery(this).val()) > jQuery(this).attr('max')) {
|
1107 |
+
jQuery(this).val(jQuery(this).attr('max'));
|
1108 |
+
}
|
1109 |
+
event.preventDefault();
|
1110 |
+
return false;
|
1111 |
+
});
|
1112 |
+
|
1113 |
+
|
1114 |
+
|
1115 |
+
jQuery(document).on('click', '.b2s-edit-template-load-default', function () {
|
1116 |
+
jQuery('.b2s-edit-template-content').hide();
|
1117 |
+
jQuery('.b2s-edit-template-save-btn').hide();
|
1118 |
+
jQuery('.b2s-edit-template-save-success').hide();
|
1119 |
+
jQuery('.b2s-edit-template-save-failed').hide();
|
1120 |
+
jQuery('.b2s-loading-area').show();
|
1121 |
+
var networkType = jQuery(this).attr('data-network-type');
|
1122 |
+
|
1123 |
+
jQuery.ajax({
|
1124 |
+
url: ajaxurl,
|
1125 |
+
type: "POST",
|
1126 |
+
dataType: "json",
|
1127 |
+
cache: false,
|
1128 |
+
data: {
|
1129 |
+
'action': 'b2s_load_default_post_template',
|
1130 |
+
'networkId': jQuery('#b2s-edit-template-network-id').val(),
|
1131 |
+
'networkType': networkType,
|
1132 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1133 |
+
},
|
1134 |
+
error: function () {
|
1135 |
+
jQuery('.b2s-loading-area').hide();
|
1136 |
+
jQuery('.b2s-edit-template-content').show();
|
1137 |
+
jQuery('.b2s-edit-template-save-btn').show();
|
1138 |
+
jQuery('.b2s-edit-template-load-default-failed').show();
|
1139 |
+
return false;
|
1140 |
+
},
|
1141 |
+
success: function (data) {
|
1142 |
+
jQuery('.b2s-loading-area').hide();
|
1143 |
+
jQuery('.b2s-edit-template-content').show();
|
1144 |
+
jQuery('.b2s-edit-template-save-btn').show();
|
1145 |
+
if (data.result == true) {
|
1146 |
+
jQuery('.b2s-template-tab-' + networkType).html(data.html);
|
1147 |
+
} else {
|
1148 |
+
if (data.error == 'nonce') {
|
1149 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1150 |
+
}
|
1151 |
+
jQuery('.b2s-edit-template-load-default-failed').show();
|
1152 |
+
}
|
1153 |
+
}
|
1154 |
+
});
|
1155 |
+
});
|
1156 |
+
}
|
1157 |
+
});
|
1158 |
+
|
1159 |
+
jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
1160 |
+
if (jQuery('#b2sUserVersion').val() < 1 && jQuery('#b2s-edit-template-network-id').val() != 1) {
|
1161 |
+
return false;
|
1162 |
+
}
|
1163 |
+
var contentError = false;
|
1164 |
+
jQuery('.b2s-edit-template-post-content').each(function (i, obj) {
|
1165 |
+
jQuery(obj).removeClass('error');
|
1166 |
+
if (jQuery(obj).val() == "") {
|
1167 |
+
jQuery(obj).addClass('error');
|
1168 |
+
contentError = true;
|
1169 |
+
}
|
1170 |
+
});
|
1171 |
+
if (contentError) {
|
1172 |
+
return false;
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
jQuery('.b2s-edit-template-content').hide();
|
1176 |
+
jQuery('.b2s-edit-template-save-btn').hide();
|
1177 |
+
jQuery('.b2s-edit-template-save-success').hide();
|
1178 |
+
jQuery('.b2s-edit-template-save-failed').hide();
|
1179 |
+
jQuery('.b2s-loading-area').show();
|
1180 |
+
|
1181 |
+
template_data = {};
|
1182 |
+
|
1183 |
+
jQuery('.b2s-edit-template-post-content').each(function (i, obj) {
|
1184 |
+
var networkType = jQuery(obj).attr('data-network-type');
|
1185 |
+
template_data[networkType] = {};
|
1186 |
+
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1187 |
+
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1188 |
+
template_data[networkType]['range_max'] = jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').val();
|
1189 |
+
template_data[networkType]['excerpt_range_max'] = jQuery('.b2s-edit-template-excerpt-range[data-network-type="' + networkType + '"]').val();
|
1190 |
+
});
|
1191 |
+
|
1192 |
+
jQuery.ajax({
|
1193 |
+
url: ajaxurl,
|
1194 |
+
type: "POST",
|
1195 |
+
dataType: "json",
|
1196 |
+
cache: false,
|
1197 |
+
data: {
|
1198 |
+
'action': 'b2s_save_post_template',
|
1199 |
+
'template_data': template_data,
|
1200 |
+
'networkId': jQuery('#b2s-edit-template-network-id').val(),
|
1201 |
+
'link_no_cache': (jQuery("#link-no-cache").is(':checked') ? '1' : '0'),
|
1202 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1203 |
+
},
|
1204 |
+
error: function () {
|
1205 |
+
jQuery('.b2s-loading-area').hide();
|
1206 |
+
jQuery('.b2s-edit-template-content').show();
|
1207 |
+
jQuery('.b2s-edit-template-save-btn').show();
|
1208 |
+
jQuery('.b2s-edit-template-save-failed').show();
|
1209 |
+
return false;
|
1210 |
+
},
|
1211 |
+
success: function (data) {
|
1212 |
+
jQuery('.b2s-loading-area').hide();
|
1213 |
+
jQuery('.b2s-edit-template-content').show();
|
1214 |
+
jQuery('.b2s-edit-template-save-btn').show();
|
1215 |
+
if (data.result == true) {
|
1216 |
+
jQuery('.b2s-edit-template-save-success').show();
|
1217 |
+
setTimeout(function () {
|
1218 |
+
jQuery('.b2s-edit-template-save-success').fadeOut();
|
1219 |
+
}, 3000);
|
1220 |
+
} else {
|
1221 |
+
if (data.error == 'nonce') {
|
1222 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1223 |
+
}
|
1224 |
+
jQuery('.b2s-edit-template-save-failed').show();
|
1225 |
+
}
|
1226 |
+
}
|
1227 |
+
});
|
1228 |
+
});
|
1229 |
+
|
1230 |
+
|
1231 |
+
jQuery('#b2sInfoNoCache').on('hidden.bs.modal', function () {
|
1232 |
+
jQuery('body').addClass('modal-open');
|
1233 |
+
});
|
1234 |
+
jQuery('#b2sInfoFormat').on('hidden.bs.modal', function () {
|
1235 |
+
jQuery('body').addClass('modal-open');
|
1236 |
+
});
|
1237 |
+
|
1238 |
+
jQuery('#b2sInfoFormat').on('show.bs.modal', function (event) {
|
1239 |
+
var id = jQuery(event.relatedTarget).attr('data-network-id');
|
1240 |
+
jQuery('.b2sInfoFormatText').hide();
|
1241 |
+
jQuery('.b2sInfoFormatText[data-network-id="' + id + '"]').show();
|
1242 |
+
});
|
1243 |
+
|
1244 |
+
jQuery('#b2sInfoContent').on('hidden.bs.modal', function () {
|
1245 |
+
jQuery('body').addClass('modal-open');
|
1246 |
+
});
|
1247 |
+
jQuery('#b2sInfoCharacterLimit').on('hidden.bs.modal', function () {
|
1248 |
+
jQuery('body').addClass('modal-open');
|
1249 |
+
});
|
1250 |
+
|
1251 |
+
|
1252 |
+
jQuery(document).on('click', '.b2s-auth-network-6-login-btn', function() {
|
1253 |
+
jQuery('.b2s-loading-area').show();
|
1254 |
+
jQuery('.b2s-auth-network-6-login-area').hide();
|
1255 |
+
jQuery('.b2s-auth-network-6-login-btn').hide();
|
1256 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
1257 |
+
jQuery('.b2s-auth-network-6-info').hide();
|
1258 |
+
jQuery.ajax({
|
1259 |
+
url: ajaxurl,
|
1260 |
+
type: "POST",
|
1261 |
+
dataType: "json",
|
1262 |
+
cache: false,
|
1263 |
+
data: {
|
1264 |
+
'action': 'b2s_auth_network_login',
|
1265 |
+
'username': jQuery('#b2s-auth-network-6-username').val(),
|
1266 |
+
'password': jQuery('#b2s-auth-network-6-password').val(),
|
1267 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1268 |
+
},
|
1269 |
+
error: function () {
|
1270 |
+
jQuery('.b2s-loading-area').hide();
|
1271 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
1272 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
1273 |
+
return false;
|
1274 |
+
},
|
1275 |
+
success: function (data) {
|
1276 |
+
jQuery('.b2s-loading-area').hide();
|
1277 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
1278 |
+
if (data.result == true) {
|
1279 |
+
jQuery('#b2s-auth-network-6-board').html(data.boards);
|
1280 |
+
jQuery('#b2s-auth-network-6-ident-data').val(data.identData);
|
1281 |
+
jQuery('.b2s-auth-network-6-board-area').show();
|
1282 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
1283 |
+
jQuery('.b2s-auth-network-6-info[data-info="success"]').show();
|
1284 |
+
} else {
|
1285 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
1286 |
+
if (data.error == 'nonce') {
|
1287 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1288 |
+
}
|
1289 |
+
if(typeof data.error != 'undefined' && data.error != ''){
|
1290 |
+
jQuery('.b2s-auth-network-6-info[data-info="'+data.error+'"]').show();
|
1291 |
+
return false;
|
1292 |
+
}
|
1293 |
+
jQuery('.b2s-auth-network-6-info[data-info="login"]').show();
|
1294 |
+
}
|
1295 |
+
}
|
1296 |
+
});
|
1297 |
+
});
|
1298 |
+
|
1299 |
+
jQuery(document).on('click', '.b2s-auth-network-6-confirm-btn', function() {
|
1300 |
+
jQuery('.b2s-loading-area').show();
|
1301 |
+
jQuery('.b2s-auth-network-6-login-area').hide();
|
1302 |
+
jQuery('.b2s-auth-network-6-login-btn').hide();
|
1303 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
1304 |
+
jQuery.ajax({
|
1305 |
+
url: ajaxurl,
|
1306 |
+
type: "POST",
|
1307 |
+
dataType: "json",
|
1308 |
+
cache: false,
|
1309 |
+
data: {
|
1310 |
+
'action': 'b2s_auth_network_confirm',
|
1311 |
+
'username': jQuery('#b2s-auth-network-6-username').val(),
|
1312 |
+
'password': jQuery('#b2s-auth-network-6-password').val(),
|
1313 |
+
'boardId': jQuery('#b2s-auth-network-6-board').val(),
|
1314 |
+
'identData': jQuery('#b2s-auth-network-6-ident-data').val(),
|
1315 |
+
'mandantId': jQuery('#b2s-auth-network-6-mandant-id').val(),
|
1316 |
+
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
1317 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1318 |
+
},
|
1319 |
+
error: function () {
|
1320 |
+
jQuery('.b2s-loading-area').hide();
|
1321 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
1322 |
+
return false;
|
1323 |
+
},
|
1324 |
+
success: function (data) {
|
1325 |
+
jQuery('.b2s-loading-area').hide();
|
1326 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
1327 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
1328 |
+
if (data.result == true) {
|
1329 |
+
jQuery('#b2sAuthNetwork6Modal').modal('hide');
|
1330 |
+
loginSuccess(data.networkId, data.networkType, data.displayName, data.networkAuthId, data.mandandId);
|
1331 |
+
} else {
|
1332 |
+
if (data.error == 'nonce') {
|
1333 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1334 |
+
}
|
1335 |
+
if (typeof data.error != 'undefined' && data.error != '') {
|
1336 |
+
jQuery('.b2s-auth-network-6-info[data-info="'+data.error+'"]').show();
|
1337 |
+
return false;
|
1338 |
+
}
|
1339 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
1340 |
+
}
|
1341 |
+
}
|
1342 |
+
});
|
1343 |
+
});
|
1344 |
+
|
1345 |
+
jQuery(document).on('click', '.b2s-network-auth-btn[data-auth-method="client"]', function() {
|
1346 |
+
jQuery('#b2s-auth-network-6-mandant-id').val(jQuery(this).attr('data-network-mandant-id'));
|
1347 |
+
jQuery('#b2sAuthNetwork6Modal').modal('show');
|
1348 |
+
});
|
1349 |
+
|
1350 |
+
jQuery(document).on('click', '.b2s-network-auth-update-btn[data-auth-method="client"]', function() {
|
1351 |
+
jQuery('#b2s-auth-network-6-auth-id').val(jQuery(this).attr('data-network-auth-id'));
|
1352 |
+
jQuery('#b2s-auth-network-6-mandant-id').val(jQuery(this).attr('data-network-mandant-id'));
|
1353 |
+
jQuery('#b2sAuthNetwork6Modal').modal('show');
|
1354 |
+
});
|
1355 |
+
|
1356 |
+
//reset
|
1357 |
+
jQuery('#b2sAuthNetwork6Modal').on('hidden.bs.modal', function () {
|
1358 |
+
jQuery('.b2s-loading-area').hide();
|
1359 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
1360 |
+
jQuery('#b2s-auth-network-6-auth-id').val('');
|
1361 |
+
jQuery('#b2s-auth-network-6-board').html('');
|
1362 |
+
jQuery('#b2s-auth-network-6-ident-data').val('');
|
1363 |
+
jQuery('.b2s-auth-network-6-info').hide();
|
1364 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
1365 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
1366 |
+
jQuery('.b2s-auth-network-6-board-area').hide();
|
1367 |
+
jQuery('#b2s-auth-network-6-username').val('');
|
1368 |
+
jQuery('#b2s-auth-network-6-password').val('');
|
1369 |
+
});
|
1370 |
+
|
1371 |
+
jQuery(".b2s-auth-network-6-reveal").mousedown(function () {
|
1372 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'text'));
|
1373 |
+
});
|
1374 |
+
jQuery(".b2s-auth-network-6-reveal").mouseup(function () {
|
1375 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'password'));
|
1376 |
+
});
|
1377 |
+
jQuery(".b2s-auth-network-6-reveal").mouseout(function () {
|
1378 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'password'));
|
1379 |
+
});
|
1380 |
+
// END Pinterest
|
assets/js/b2s/post.js
CHANGED
@@ -75,7 +75,8 @@ jQuery(document).on('click', '.b2sDetailsPublishPostBtn', function () {
|
|
75 |
'action': 'b2s_publish_post_data',
|
76 |
'postId': postId,
|
77 |
'type': jQuery('#b2sType').val(),
|
78 |
-
'showByDate': showByDate
|
|
|
79 |
},
|
80 |
error: function () {
|
81 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -84,6 +85,10 @@ jQuery(document).on('click', '.b2sDetailsPublishPostBtn', function () {
|
|
84 |
success: function (data) {
|
85 |
if (data.result == true) {
|
86 |
jQuery('.b2s-post-publish-area[data-post-id="' + data.postId + '"]').html(data.content);
|
|
|
|
|
|
|
|
|
87 |
}
|
88 |
wp.heartbeat.connectNow();
|
89 |
}
|
@@ -113,7 +118,8 @@ jQuery(document).on('click', '.b2sDetailsApprovePostBtn', function () {
|
|
113 |
data: {
|
114 |
'action': 'b2s_approve_post_data',
|
115 |
'postId': postId,
|
116 |
-
'showByDate': showByDate
|
|
|
117 |
},
|
118 |
error: function () {
|
119 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -122,6 +128,10 @@ jQuery(document).on('click', '.b2sDetailsApprovePostBtn', function () {
|
|
122 |
success: function (data) {
|
123 |
if (data.result == true) {
|
124 |
jQuery('.b2s-post-approve-area[data-post-id="' + data.postId + '"]').html(data.content);
|
|
|
|
|
|
|
|
|
125 |
}
|
126 |
}
|
127 |
});
|
@@ -212,7 +222,8 @@ function b2sSortFormSubmit(sched_dates) {
|
|
212 |
'b2sSortPostStatus': jQuery('#b2sSortPostStatus').val(),
|
213 |
'b2sSortPostShareStatus': jQuery('#b2sSortPostShareStatus').val(),
|
214 |
'b2sSortPostPublishDate': jQuery('#b2sSortPostPublishDate').val(),
|
215 |
-
'b2sUserLang': jQuery('#b2sUserLang').val()
|
|
|
216 |
};
|
217 |
|
218 |
if (jQuery('#b2sPostsPerPage').length > 0) {
|
@@ -256,7 +267,11 @@ function b2sSortFormSubmit(sched_dates) {
|
|
256 |
}
|
257 |
}
|
258 |
} else {
|
259 |
-
|
|
|
|
|
|
|
|
|
260 |
return false;
|
261 |
}
|
262 |
}
|
@@ -280,7 +295,8 @@ jQuery(document).on('click', '.b2sDetailsSchedPostBtn', function () {
|
|
280 |
'postId': postId,
|
281 |
'showByDate': showByDate,
|
282 |
'showByNetwork': showByNetwork,
|
283 |
-
'userAuthId': userAuthId
|
|
|
284 |
},
|
285 |
error: function () {
|
286 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -289,6 +305,10 @@ jQuery(document).on('click', '.b2sDetailsSchedPostBtn', function () {
|
|
289 |
success: function (data) {
|
290 |
if (data.result == true) {
|
291 |
jQuery('.b2s-post-sched-area[data-post-id="' + data.postId + '"]').html(data.content);
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
}
|
294 |
});
|
@@ -364,7 +384,8 @@ jQuery(document).on('click', '.b2s-sched-delete-confirm-btn', function () {
|
|
364 |
cache: false,
|
365 |
data: {
|
366 |
'action': 'b2s_delete_user_sched_post',
|
367 |
-
'postId': jQuery('#b2s-delete-confirm-post-id').val()
|
|
|
368 |
},
|
369 |
error: function () {
|
370 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -385,6 +406,9 @@ jQuery(document).on('click', '.b2s-sched-delete-confirm-btn', function () {
|
|
385 |
}
|
386 |
jQuery('.b2s-post-remove-success').show();
|
387 |
} else {
|
|
|
|
|
|
|
388 |
jQuery('.b2s-post-remove-fail').show();
|
389 |
}
|
390 |
wp.heartbeat.connectNow();
|
@@ -449,6 +473,7 @@ jQuery(document).on('click', '.b2s-approve-publish-confirm-btn', function () {
|
|
449 |
'post_id': postId,
|
450 |
'publish_link': "",
|
451 |
'publish_error_code': "",
|
|
|
452 |
},
|
453 |
success: function (data) {
|
454 |
}
|
@@ -469,7 +494,8 @@ jQuery(document).on('click', '.b2s-approve-delete-confirm-btn', function () {
|
|
469 |
cache: false,
|
470 |
data: {
|
471 |
'action': 'b2s_delete_user_approve_post',
|
472 |
-
'postId': jQuery('#b2s-delete-confirm-post-id').val()
|
|
|
473 |
},
|
474 |
error: function () {
|
475 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -490,6 +516,9 @@ jQuery(document).on('click', '.b2s-approve-delete-confirm-btn', function () {
|
|
490 |
}
|
491 |
jQuery('.b2s-post-remove-success').show();
|
492 |
} else {
|
|
|
|
|
|
|
493 |
jQuery('.b2s-post-remove-fail').show();
|
494 |
}
|
495 |
wp.heartbeat.connectNow();
|
@@ -500,8 +529,8 @@ jQuery(document).on('click', '.b2s-approve-delete-confirm-btn', function () {
|
|
500 |
|
501 |
//Modal Edit Post close
|
502 |
jQuery(document).on('click', '.b2s-modal-close-edit-post', function (e) {
|
503 |
-
|
504 |
-
|
505 |
});
|
506 |
|
507 |
jQuery(document).on('click', '.b2s-post-approve-area-drop-btn', function () {
|
@@ -530,7 +559,8 @@ jQuery(document).on('click', '.b2s-publish-delete-confirm-btn', function () {
|
|
530 |
cache: false,
|
531 |
data: {
|
532 |
'action': 'b2s_delete_user_publish_post',
|
533 |
-
'postId': jQuery('#b2s-delete-confirm-post-id').val()
|
|
|
534 |
},
|
535 |
error: function () {
|
536 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -551,6 +581,9 @@ jQuery(document).on('click', '.b2s-publish-delete-confirm-btn', function () {
|
|
551 |
}
|
552 |
jQuery('.b2s-post-remove-success').show();
|
553 |
} else {
|
|
|
|
|
|
|
554 |
jQuery('.b2s-post-remove-fail').show();
|
555 |
}
|
556 |
wp.heartbeat.connectNow();
|
@@ -580,10 +613,15 @@ function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, netwo
|
|
580 |
async: false,
|
581 |
data: {
|
582 |
'action': 'b2s_get_post_edit_modal',
|
583 |
-
'id': b2s_id
|
|
|
584 |
},
|
585 |
success: function (data) {
|
586 |
-
|
|
|
|
|
|
|
|
|
587 |
}
|
588 |
});
|
589 |
b2s_current_post_id = post_id;
|
@@ -667,7 +705,7 @@ function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, netwo
|
|
667 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').show();
|
668 |
}
|
669 |
}
|
670 |
-
|
671 |
if (network_id == "3") {
|
672 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
673 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
@@ -684,7 +722,7 @@ function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, netwo
|
|
684 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').show();
|
685 |
}
|
686 |
}
|
687 |
-
|
688 |
if (network_id == "19" && network_type == "0") {
|
689 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
690 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
@@ -773,10 +811,15 @@ jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
|
773 |
data: {
|
774 |
'action': 'b2s_get_image_modal',
|
775 |
'id': jQuery(this).data('post-id'),
|
776 |
-
'image_url': jQuery(this).data('image-url')
|
|
|
777 |
},
|
778 |
success: function (data) {
|
779 |
-
|
|
|
|
|
|
|
|
|
780 |
}
|
781 |
});
|
782 |
var authId = jQuery(this).data('network-auth-id');
|
@@ -803,8 +846,11 @@ jQuery(document).on("click", ".b2s-edit-post-save-this", function (e) {
|
|
803 |
type: "POST",
|
804 |
dataType: "json",
|
805 |
cache: false,
|
806 |
-
data: jQuery(this).closest("form").serialize(),
|
807 |
success: function (data) {
|
|
|
|
|
|
|
808 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
809 |
jQuery('#b2s-edit-event-modal-' + id).remove();
|
810 |
jQuery('body').removeClass('modal-open');
|
@@ -825,9 +871,13 @@ jQuery(document).on("click", ".release_locks", function () {
|
|
825 |
async: false,
|
826 |
data: {
|
827 |
'action': 'b2s_get_calendar_release_locks',
|
828 |
-
'post_id': jQuery('#post_id').val()
|
|
|
829 |
},
|
830 |
success: function (data) {
|
|
|
|
|
|
|
831 |
wp.heartbeat.connectNow();
|
832 |
}
|
833 |
});
|
@@ -916,6 +966,7 @@ window.addEventListener('message', function (e) {
|
|
916 |
'post_id': data.post_id,
|
917 |
'publish_link': data.publish_link,
|
918 |
'publish_error_code': data.publish_error_code,
|
|
|
919 |
},
|
920 |
success: function (data) {
|
921 |
|
@@ -938,7 +989,8 @@ jQuery(document).on('click', '.b2s-draft-delete-confirm-btn', function () {
|
|
938 |
cache: false,
|
939 |
data: {
|
940 |
'action': 'b2s_delete_user_draft',
|
941 |
-
'draftId': jQuery('#b2s-delete-confirm-draft-id').val()
|
|
|
942 |
},
|
943 |
error: function () {
|
944 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -950,6 +1002,9 @@ jQuery(document).on('click', '.b2s-draft-delete-confirm-btn', function () {
|
|
950 |
jQuery('.b2s-draft-list-entry[data-b2s-draft-id="' + jQuery('#b2s-delete-confirm-draft-id').val() + '"]').remove();
|
951 |
jQuery('.b2s-post-remove-success').show();
|
952 |
} else {
|
|
|
|
|
|
|
953 |
jQuery('.b2s-post-remove-fail').show();
|
954 |
}
|
955 |
return true;
|
75 |
'action': 'b2s_publish_post_data',
|
76 |
'postId': postId,
|
77 |
'type': jQuery('#b2sType').val(),
|
78 |
+
'showByDate': showByDate,
|
79 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
80 |
},
|
81 |
error: function () {
|
82 |
jQuery('.b2s-server-connection-fail').show();
|
85 |
success: function (data) {
|
86 |
if (data.result == true) {
|
87 |
jQuery('.b2s-post-publish-area[data-post-id="' + data.postId + '"]').html(data.content);
|
88 |
+
} else {
|
89 |
+
if (data.error == 'nonce') {
|
90 |
+
jQuery('.b2s-nonce-check-fail').show();
|
91 |
+
}
|
92 |
}
|
93 |
wp.heartbeat.connectNow();
|
94 |
}
|
118 |
data: {
|
119 |
'action': 'b2s_approve_post_data',
|
120 |
'postId': postId,
|
121 |
+
'showByDate': showByDate,
|
122 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
123 |
},
|
124 |
error: function () {
|
125 |
jQuery('.b2s-server-connection-fail').show();
|
128 |
success: function (data) {
|
129 |
if (data.result == true) {
|
130 |
jQuery('.b2s-post-approve-area[data-post-id="' + data.postId + '"]').html(data.content);
|
131 |
+
} else {
|
132 |
+
if (data.error == 'nonce') {
|
133 |
+
jQuery('.b2s-nonce-check-fail').show();
|
134 |
+
}
|
135 |
}
|
136 |
}
|
137 |
});
|
222 |
'b2sSortPostStatus': jQuery('#b2sSortPostStatus').val(),
|
223 |
'b2sSortPostShareStatus': jQuery('#b2sSortPostShareStatus').val(),
|
224 |
'b2sSortPostPublishDate': jQuery('#b2sSortPostPublishDate').val(),
|
225 |
+
'b2sUserLang': jQuery('#b2sUserLang').val(),
|
226 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
227 |
};
|
228 |
|
229 |
if (jQuery('#b2sPostsPerPage').length > 0) {
|
267 |
}
|
268 |
}
|
269 |
} else {
|
270 |
+
if (data.error == 'nonce') {
|
271 |
+
jQuery('.b2s-nonce-check-fail').show();
|
272 |
+
} else {
|
273 |
+
jQuery('.b2s-server-connection-fail').show();
|
274 |
+
}
|
275 |
return false;
|
276 |
}
|
277 |
}
|
295 |
'postId': postId,
|
296 |
'showByDate': showByDate,
|
297 |
'showByNetwork': showByNetwork,
|
298 |
+
'userAuthId': userAuthId,
|
299 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
300 |
},
|
301 |
error: function () {
|
302 |
jQuery('.b2s-server-connection-fail').show();
|
305 |
success: function (data) {
|
306 |
if (data.result == true) {
|
307 |
jQuery('.b2s-post-sched-area[data-post-id="' + data.postId + '"]').html(data.content);
|
308 |
+
} else {
|
309 |
+
if (data.error == 'nonce') {
|
310 |
+
jQuery('.b2s-nonce-check-fail').show();
|
311 |
+
}
|
312 |
}
|
313 |
}
|
314 |
});
|
384 |
cache: false,
|
385 |
data: {
|
386 |
'action': 'b2s_delete_user_sched_post',
|
387 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
388 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
389 |
},
|
390 |
error: function () {
|
391 |
jQuery('.b2s-server-connection-fail').show();
|
406 |
}
|
407 |
jQuery('.b2s-post-remove-success').show();
|
408 |
} else {
|
409 |
+
if (data.error == 'nonce') {
|
410 |
+
jQuery('.b2s-nonce-check-fail').show();
|
411 |
+
}
|
412 |
jQuery('.b2s-post-remove-fail').show();
|
413 |
}
|
414 |
wp.heartbeat.connectNow();
|
473 |
'post_id': postId,
|
474 |
'publish_link': "",
|
475 |
'publish_error_code': "",
|
476 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
477 |
},
|
478 |
success: function (data) {
|
479 |
}
|
494 |
cache: false,
|
495 |
data: {
|
496 |
'action': 'b2s_delete_user_approve_post',
|
497 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
498 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
499 |
},
|
500 |
error: function () {
|
501 |
jQuery('.b2s-server-connection-fail').show();
|
516 |
}
|
517 |
jQuery('.b2s-post-remove-success').show();
|
518 |
} else {
|
519 |
+
if (data.error == 'nonce') {
|
520 |
+
jQuery('.b2s-nonce-check-fail').show();
|
521 |
+
}
|
522 |
jQuery('.b2s-post-remove-fail').show();
|
523 |
}
|
524 |
wp.heartbeat.connectNow();
|
529 |
|
530 |
//Modal Edit Post close
|
531 |
jQuery(document).on('click', '.b2s-modal-close-edit-post', function (e) {
|
532 |
+
jQuery(jQuery(this).attr('data-modal-name')).remove();
|
533 |
+
return false;
|
534 |
});
|
535 |
|
536 |
jQuery(document).on('click', '.b2s-post-approve-area-drop-btn', function () {
|
559 |
cache: false,
|
560 |
data: {
|
561 |
'action': 'b2s_delete_user_publish_post',
|
562 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
563 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
564 |
},
|
565 |
error: function () {
|
566 |
jQuery('.b2s-server-connection-fail').show();
|
581 |
}
|
582 |
jQuery('.b2s-post-remove-success').show();
|
583 |
} else {
|
584 |
+
if (data.error == 'nonce') {
|
585 |
+
jQuery('.b2s-nonce-check-fail').show();
|
586 |
+
}
|
587 |
jQuery('.b2s-post-remove-fail').show();
|
588 |
}
|
589 |
wp.heartbeat.connectNow();
|
613 |
async: false,
|
614 |
data: {
|
615 |
'action': 'b2s_get_post_edit_modal',
|
616 |
+
'id': b2s_id,
|
617 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
618 |
},
|
619 |
success: function (data) {
|
620 |
+
if (data.error == 'nonce') {
|
621 |
+
jQuery('.b2s-nonce-check-fail').show();
|
622 |
+
} else {
|
623 |
+
$modal = $modal.html(data);
|
624 |
+
}
|
625 |
}
|
626 |
});
|
627 |
b2s_current_post_id = post_id;
|
705 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').show();
|
706 |
}
|
707 |
}
|
708 |
+
|
709 |
if (network_id == "3") {
|
710 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
711 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
722 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').show();
|
723 |
}
|
724 |
}
|
725 |
+
|
726 |
if (network_id == "19" && network_type == "0") {
|
727 |
if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
728 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + network_auth_id + '"]').show();
|
811 |
data: {
|
812 |
'action': 'b2s_get_image_modal',
|
813 |
'id': jQuery(this).data('post-id'),
|
814 |
+
'image_url': jQuery(this).data('image-url'),
|
815 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
816 |
},
|
817 |
success: function (data) {
|
818 |
+
if (data.error == 'nonce') {
|
819 |
+
jQuery('.b2s-nonce-check-fail').show();
|
820 |
+
} else {
|
821 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
822 |
+
}
|
823 |
}
|
824 |
});
|
825 |
var authId = jQuery(this).data('network-auth-id');
|
846 |
type: "POST",
|
847 |
dataType: "json",
|
848 |
cache: false,
|
849 |
+
data: jQuery(this).closest("form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
850 |
success: function (data) {
|
851 |
+
if (data.error == 'nonce') {
|
852 |
+
jQuery('.b2s-nonce-check-fail').show();
|
853 |
+
}
|
854 |
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
855 |
jQuery('#b2s-edit-event-modal-' + id).remove();
|
856 |
jQuery('body').removeClass('modal-open');
|
871 |
async: false,
|
872 |
data: {
|
873 |
'action': 'b2s_get_calendar_release_locks',
|
874 |
+
'post_id': jQuery('#post_id').val(),
|
875 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
876 |
},
|
877 |
success: function (data) {
|
878 |
+
if (data.error == 'nonce') {
|
879 |
+
jQuery('.b2s-nonce-check-fail').show();
|
880 |
+
}
|
881 |
wp.heartbeat.connectNow();
|
882 |
}
|
883 |
});
|
966 |
'post_id': data.post_id,
|
967 |
'publish_link': data.publish_link,
|
968 |
'publish_error_code': data.publish_error_code,
|
969 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
970 |
},
|
971 |
success: function (data) {
|
972 |
|
989 |
cache: false,
|
990 |
data: {
|
991 |
'action': 'b2s_delete_user_draft',
|
992 |
+
'draftId': jQuery('#b2s-delete-confirm-draft-id').val(),
|
993 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
994 |
},
|
995 |
error: function () {
|
996 |
jQuery('.b2s-server-connection-fail').show();
|
1002 |
jQuery('.b2s-draft-list-entry[data-b2s-draft-id="' + jQuery('#b2s-delete-confirm-draft-id').val() + '"]').remove();
|
1003 |
jQuery('.b2s-post-remove-success').show();
|
1004 |
} else {
|
1005 |
+
if (data.error == 'nonce') {
|
1006 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1007 |
+
}
|
1008 |
jQuery('.b2s-post-remove-fail').show();
|
1009 |
}
|
1010 |
return true;
|
assets/js/b2s/premium.js
CHANGED
@@ -1,55 +1,60 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
jQuery("#b2s-license-user-select").chosen({
|
4 |
-
no_results_text: jQuery('#b2s-no-user-found').val(),
|
5 |
-
search_contains: true
|
6 |
-
});
|
7 |
-
|
8 |
-
jQuery('.chosen-search input').attr('placeholder', 'Search for blog user');
|
9 |
-
|
10 |
-
jQuery("#b2s-license-user-select").change(function () {
|
11 |
-
jQuery('#b2s-license-user').val(jQuery('#b2s-license-user-select').val());
|
12 |
-
return false;
|
13 |
-
});
|
14 |
-
|
15 |
-
var current_chosen_search = "";
|
16 |
-
var current_chosen_search_count = 0;
|
17 |
-
jQuery('.chosen-search input').on('keyup', function () {
|
18 |
-
if (this.value != current_chosen_search) {
|
19 |
-
current_chosen_search = this.value;
|
20 |
-
if (current_chosen_search.length >= 3) {
|
21 |
-
current_chosen_search_count++;
|
22 |
-
var temp_count = current_chosen_search_count;
|
23 |
-
jQuery('#b2s-license-user-select').empty();
|
24 |
-
jQuery.ajax({
|
25 |
-
url: ajaxurl,
|
26 |
-
type: "GET",
|
27 |
-
dataType: "json",
|
28 |
-
cache: false,
|
29 |
-
data: {
|
30 |
-
'action': 'b2s_search_user',
|
31 |
-
'search_user': current_chosen_search,
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
}
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
jQuery("#b2s-license-user-select").chosen({
|
4 |
+
no_results_text: jQuery('#b2s-no-user-found').val(),
|
5 |
+
search_contains: true
|
6 |
+
});
|
7 |
+
|
8 |
+
jQuery('.chosen-search input').attr('placeholder', 'Search for blog user');
|
9 |
+
|
10 |
+
jQuery("#b2s-license-user-select").change(function () {
|
11 |
+
jQuery('#b2s-license-user').val(jQuery('#b2s-license-user-select').val());
|
12 |
+
return false;
|
13 |
+
});
|
14 |
+
|
15 |
+
var current_chosen_search = "";
|
16 |
+
var current_chosen_search_count = 0;
|
17 |
+
jQuery('.chosen-search input').on('keyup', function () {
|
18 |
+
if (this.value != current_chosen_search) {
|
19 |
+
current_chosen_search = this.value;
|
20 |
+
if (current_chosen_search.length >= 3) {
|
21 |
+
current_chosen_search_count++;
|
22 |
+
var temp_count = current_chosen_search_count;
|
23 |
+
jQuery('#b2s-license-user-select').empty();
|
24 |
+
jQuery.ajax({
|
25 |
+
url: ajaxurl,
|
26 |
+
type: "GET",
|
27 |
+
dataType: "json",
|
28 |
+
cache: false,
|
29 |
+
data: {
|
30 |
+
'action': 'b2s_search_user',
|
31 |
+
'search_user': current_chosen_search,
|
32 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
33 |
+
},
|
34 |
+
error: function () {
|
35 |
+
jQuery('.b2s-server-connection-fail').show();
|
36 |
+
return false;
|
37 |
+
},
|
38 |
+
success: function (data) {
|
39 |
+
if (data.error == 'nonce') {
|
40 |
+
jQuery('.b2s-nonce-check-fail').show();
|
41 |
+
return false;
|
42 |
+
}
|
43 |
+
if (current_chosen_search_count == temp_count) {
|
44 |
+
if (data.result == true) {
|
45 |
+
jQuery('#b2s-license-user-select').empty();
|
46 |
+
if (data.options != "") {
|
47 |
+
var newOptions = jQuery(data.options);
|
48 |
+
jQuery('#b2s-license-user-select').append(newOptions);
|
49 |
+
jQuery('#b2s-license-user-select').trigger("chosen:updated");
|
50 |
+
jQuery('.chosen-search input').val(current_chosen_search);
|
51 |
+
jQuery('#b2s-license-user').val(jQuery("#b2s-license-user-select option:first").val());
|
52 |
+
}
|
53 |
+
}
|
54 |
+
}
|
55 |
+
}
|
56 |
+
});
|
57 |
+
}
|
58 |
+
}
|
59 |
+
return false;
|
60 |
+
});
|
assets/js/b2s/settings.js
CHANGED
@@ -1,590 +1,629 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
jQuery(window).on("load", function () {
|
3 |
-
|
4 |
-
var showMeridian = true;
|
5 |
-
if (jQuery('#b2sUserLang').val() == 'de') {
|
6 |
-
showMeridian = false;
|
7 |
-
}
|
8 |
-
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
9 |
-
minuteStep: 30,
|
10 |
-
appendWidgetTo: 'body',
|
11 |
-
showSeconds: false,
|
12 |
-
showMeridian: showMeridian,
|
13 |
-
defaultTime: 'current'
|
14 |
-
});
|
15 |
-
var b2sShowSection = jQuery('#b2sShowSection').val();
|
16 |
-
if (b2sShowSection != "") {
|
17 |
-
jQuery("." + b2sShowSection).trigger("click");
|
18 |
-
}
|
19 |
-
jQuery(".b2s-import-auto-post-type").chosen();
|
20 |
-
|
21 |
-
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
22 |
-
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
23 |
-
});
|
24 |
-
|
25 |
-
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
26 |
-
if (length > 0) {
|
27 |
-
jQuery('.b2s-auto-post-own-update-warning').show();
|
28 |
-
}
|
29 |
-
|
30 |
-
//TOS Twitter 032018 - none multiple Accounts - User select once
|
31 |
-
checkNetworkTos(2);
|
32 |
-
|
33 |
-
});
|
34 |
-
|
35 |
-
jQuery('.b2sSaveSocialMetaTagsSettings').validate({
|
36 |
-
ignore: "",
|
37 |
-
errorPlacement: function () {
|
38 |
-
return false;
|
39 |
-
},
|
40 |
-
submitHandler: function (form) {
|
41 |
-
jQuery('.b2s-settings-user-success').hide();
|
42 |
-
jQuery('.b2s-settings-user-error').hide();
|
43 |
-
jQuery(".b2s-loading-area").show();
|
44 |
-
jQuery(".b2s-user-settings-area").hide();
|
45 |
-
jQuery('.b2s-server-connection-fail').hide();
|
46 |
-
jQuery('.b2s-meta-tags-success').hide();
|
47 |
-
jQuery('.b2s-meta-tags-danger').hide();
|
48 |
-
jQuery.ajax({
|
49 |
-
processData: false,
|
50 |
-
url: ajaxurl,
|
51 |
-
type: "POST",
|
52 |
-
dataType: "json",
|
53 |
-
cache: false,
|
54 |
-
data: jQuery(form).serialize(),
|
55 |
-
error: function () {
|
56 |
-
jQuery('.b2s-server-connection-fail').show();
|
57 |
-
return false;
|
58 |
-
},
|
59 |
-
success: function (data) {
|
60 |
-
jQuery(".b2s-loading-area").hide();
|
61 |
-
jQuery(".b2s-user-settings-area").show();
|
62 |
-
if (data.result == true) {
|
63 |
-
jQuery('.b2s-settings-user-success').show();
|
64 |
-
if (data.b2s == true) {
|
65 |
-
if (data.yoast == true) {
|
66 |
-
jQuery('.b2s-meta-tags-yoast').show();
|
67 |
-
}
|
68 |
-
if (data.aioseop) {
|
69 |
-
jQuery('.b2s-meta-tags-aioseop').show();
|
70 |
-
}
|
71 |
-
if (data.webdados) {
|
72 |
-
jQuery('.b2s-meta-tags-webdados').show();
|
73 |
-
}
|
74 |
-
}
|
75 |
-
} else {
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
});
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
jQuery('
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
jQuery(
|
124 |
-
jQuery(
|
125 |
-
jQuery('.b2s-
|
126 |
-
jQuery.
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
},
|
138 |
-
|
139 |
-
jQuery(
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
return false;
|
183 |
-
});
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
jQuery(
|
211 |
-
jQuery(
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
jQuery('.b2s-settings-user-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
}
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
jQuery('
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
}
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
jQuery(
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
}
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
jQuery(
|
372 |
-
var
|
373 |
-
jQuery('
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
jQuery(
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
jQuery(
|
478 |
-
jQuery(
|
479 |
-
jQuery(
|
480 |
-
jQuery(
|
481 |
-
jQuery
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
'
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
}
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
jQuery(window).on("load", function () {
|
3 |
+
|
4 |
+
var showMeridian = true;
|
5 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
6 |
+
showMeridian = false;
|
7 |
+
}
|
8 |
+
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
9 |
+
minuteStep: 30,
|
10 |
+
appendWidgetTo: 'body',
|
11 |
+
showSeconds: false,
|
12 |
+
showMeridian: showMeridian,
|
13 |
+
defaultTime: 'current'
|
14 |
+
});
|
15 |
+
var b2sShowSection = jQuery('#b2sShowSection').val();
|
16 |
+
if (b2sShowSection != "") {
|
17 |
+
jQuery("." + b2sShowSection).trigger("click");
|
18 |
+
}
|
19 |
+
jQuery(".b2s-import-auto-post-type").chosen();
|
20 |
+
|
21 |
+
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
22 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
23 |
+
});
|
24 |
+
|
25 |
+
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
26 |
+
if (length > 0) {
|
27 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
28 |
+
}
|
29 |
+
|
30 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
31 |
+
checkNetworkTos(2);
|
32 |
+
|
33 |
+
});
|
34 |
+
|
35 |
+
jQuery('.b2sSaveSocialMetaTagsSettings').validate({
|
36 |
+
ignore: "",
|
37 |
+
errorPlacement: function () {
|
38 |
+
return false;
|
39 |
+
},
|
40 |
+
submitHandler: function (form) {
|
41 |
+
jQuery('.b2s-settings-user-success').hide();
|
42 |
+
jQuery('.b2s-settings-user-error').hide();
|
43 |
+
jQuery(".b2s-loading-area").show();
|
44 |
+
jQuery(".b2s-user-settings-area").hide();
|
45 |
+
jQuery('.b2s-server-connection-fail').hide();
|
46 |
+
jQuery('.b2s-meta-tags-success').hide();
|
47 |
+
jQuery('.b2s-meta-tags-danger').hide();
|
48 |
+
jQuery.ajax({
|
49 |
+
processData: false,
|
50 |
+
url: ajaxurl,
|
51 |
+
type: "POST",
|
52 |
+
dataType: "json",
|
53 |
+
cache: false,
|
54 |
+
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
55 |
+
error: function () {
|
56 |
+
jQuery('.b2s-server-connection-fail').show();
|
57 |
+
return false;
|
58 |
+
},
|
59 |
+
success: function (data) {
|
60 |
+
jQuery(".b2s-loading-area").hide();
|
61 |
+
jQuery(".b2s-user-settings-area").show();
|
62 |
+
if (data.result == true) {
|
63 |
+
jQuery('.b2s-settings-user-success').show();
|
64 |
+
if (data.b2s == true) {
|
65 |
+
if (data.yoast == true) {
|
66 |
+
jQuery('.b2s-meta-tags-yoast').show();
|
67 |
+
}
|
68 |
+
if (data.aioseop) {
|
69 |
+
jQuery('.b2s-meta-tags-aioseop').show();
|
70 |
+
}
|
71 |
+
if (data.webdados) {
|
72 |
+
jQuery('.b2s-meta-tags-webdados').show();
|
73 |
+
}
|
74 |
+
}
|
75 |
+
} else {
|
76 |
+
if (data.error == 'nonce') {
|
77 |
+
jQuery('.b2s-nonce-check-fail').show();
|
78 |
+
}
|
79 |
+
jQuery('.b2s-settings-user-error').show();
|
80 |
+
}
|
81 |
+
}
|
82 |
+
});
|
83 |
+
return false;
|
84 |
+
}
|
85 |
+
});
|
86 |
+
|
87 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
88 |
+
jQuery(document).on('change', '.b2s-network-tos-check', function () {
|
89 |
+
var networkId = jQuery(this).attr('data-network-id');
|
90 |
+
if (networkId == 2) {
|
91 |
+
checkNetworkTos(networkId, false);
|
92 |
+
}
|
93 |
+
return false;
|
94 |
+
});
|
95 |
+
|
96 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
97 |
+
function checkNetworkTos(networkId) {
|
98 |
+
var len = jQuery('.b2s-network-tos-check[data-network-id="' + networkId + '"]:checked').length;
|
99 |
+
if (len > 1) {
|
100 |
+
jQuery('.b2s-network-tos-auto-post-import-warning').show();
|
101 |
+
jQuery('#b2s-auto-post-import-settings-btn').attr('disabled', 'disabled');
|
102 |
+
return false;
|
103 |
+
} else {
|
104 |
+
jQuery('.b2s-network-tos-auto-post-import-warning').hide();
|
105 |
+
jQuery('#b2s-auto-post-import-settings-btn').attr('disabled', false);
|
106 |
+
return true;
|
107 |
+
}
|
108 |
+
}
|
109 |
+
|
110 |
+
jQuery(document).on('change', '.b2s-post-type-item-update', function () {
|
111 |
+
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
112 |
+
if (length == 0) {
|
113 |
+
jQuery('.b2s-auto-post-own-update-warning').hide();
|
114 |
+
} else {
|
115 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
116 |
+
}
|
117 |
+
return false;
|
118 |
+
});
|
119 |
+
|
120 |
+
|
121 |
+
jQuery(document).on('click', '.b2sClearSocialMetaTags', function () {
|
122 |
+
|
123 |
+
jQuery('.b2s-settings-user-success').hide();
|
124 |
+
jQuery('.b2s-settings-user-error').hide();
|
125 |
+
jQuery('.b2s-clear-meta-tags').hide();
|
126 |
+
jQuery(".b2s-loading-area").show();
|
127 |
+
jQuery(".b2s-user-settings-area").hide();
|
128 |
+
jQuery('.b2s-server-connection-fail').hide();
|
129 |
+
jQuery.ajax({
|
130 |
+
url: ajaxurl,
|
131 |
+
type: "POST",
|
132 |
+
dataType: "json",
|
133 |
+
cache: false,
|
134 |
+
data: {
|
135 |
+
'action': 'b2s_reset_social_meta_tags',
|
136 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
137 |
+
},
|
138 |
+
error: function () {
|
139 |
+
jQuery('.b2s-server-connection-fail').show();
|
140 |
+
return false;
|
141 |
+
},
|
142 |
+
success: function (data) {
|
143 |
+
jQuery(".b2s-loading-area").hide();
|
144 |
+
jQuery(".b2s-user-settings-area").show();
|
145 |
+
if (data.result == true) {
|
146 |
+
jQuery('.b2s-clear-meta-tags-success').show();
|
147 |
+
} else {
|
148 |
+
if (data.error == 'nonce') {
|
149 |
+
jQuery('.b2s-nonce-check-fail').show();
|
150 |
+
}
|
151 |
+
jQuery('.b2s-clear-meta-tags-error').show();
|
152 |
+
}
|
153 |
+
}
|
154 |
+
});
|
155 |
+
return false;
|
156 |
+
});
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
jQuery(document).on('click', '.b2s-upload-image', function () {
|
161 |
+
var targetId = jQuery(this).attr('data-id');
|
162 |
+
if (typeof wp !== 'undefined' && wp.media && wp.media.editor) {
|
163 |
+
wpMedia = wp.media({
|
164 |
+
title: jQuery('#b2s_wp_media_headline').val(),
|
165 |
+
button: {
|
166 |
+
text: jQuery('#b2s_wp_media_btn').val(),
|
167 |
+
},
|
168 |
+
multiple: false,
|
169 |
+
library: {type: 'image'}
|
170 |
+
});
|
171 |
+
wpMedia.open();
|
172 |
+
|
173 |
+
wpMedia.on('select', function () {
|
174 |
+
var validExtensions = ['jpg', 'jpeg', 'png'];
|
175 |
+
var attachment = wpMedia.state().get('selection').first().toJSON();
|
176 |
+
|
177 |
+
jQuery('#' + targetId).val(attachment.url);
|
178 |
+
});
|
179 |
+
} else {
|
180 |
+
jQuery('.b2s-upload-image-no-permission').show();
|
181 |
+
}
|
182 |
+
return false;
|
183 |
+
});
|
184 |
+
|
185 |
+
|
186 |
+
|
187 |
+
|
188 |
+
jQuery(document).on('click', '.b2s-save-settings-pro-info', function () {
|
189 |
+
return false;
|
190 |
+
});
|
191 |
+
|
192 |
+
jQuery(document).on('click', '#b2s-user-network-settings-short-url', function () {
|
193 |
+
jQuery('.b2s-settings-user-success').hide();
|
194 |
+
jQuery('.b2s-settings-user-error').hide();
|
195 |
+
jQuery('.b2s-server-connection-fail').hide();
|
196 |
+
|
197 |
+
if (jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val() == "0") {
|
198 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="0"]').trigger('click');
|
199 |
+
} else {
|
200 |
+
jQuery(".b2s-user-settings-area").hide();
|
201 |
+
jQuery(".b2s-loading-area").show();
|
202 |
+
|
203 |
+
jQuery.ajax({
|
204 |
+
url: ajaxurl,
|
205 |
+
type: "POST",
|
206 |
+
dataType: "json",
|
207 |
+
cache: false,
|
208 |
+
data: {
|
209 |
+
'action': 'b2s_user_network_settings',
|
210 |
+
'short_url': jQuery('#b2s-user-network-settings-short-url').val(),
|
211 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
212 |
+
},
|
213 |
+
error: function () {
|
214 |
+
jQuery('.b2s-server-connection-fail').show();
|
215 |
+
return false;
|
216 |
+
},
|
217 |
+
success: function (data) {
|
218 |
+
jQuery(".b2s-loading-area").hide();
|
219 |
+
jQuery(".b2s-user-settings-area").show();
|
220 |
+
if (data.result == true) {
|
221 |
+
jQuery('.b2s-settings-user-success').show();
|
222 |
+
jQuery('#b2s-user-network-settings-short-url').val(data.content);
|
223 |
+
if (jQuery("#b2s-user-network-settings-short-url").is(":checked")) {
|
224 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', false);
|
225 |
+
} else {
|
226 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', true);
|
227 |
+
}
|
228 |
+
} else {
|
229 |
+
if(data.error == 'nonce') {
|
230 |
+
jQuery('.b2s-nonce-check-fail').show();
|
231 |
+
}
|
232 |
+
jQuery('.b2s-settings-user-error').show();
|
233 |
+
}
|
234 |
+
}
|
235 |
+
});
|
236 |
+
}
|
237 |
+
return false;
|
238 |
+
});
|
239 |
+
|
240 |
+
jQuery(document).on('click', '.b2s-shortener-account-delete-btn', function () {
|
241 |
+
|
242 |
+
jQuery('.b2s-settings-user-success').hide();
|
243 |
+
jQuery('.b2s-settings-user-error').hide();
|
244 |
+
jQuery('.b2s-server-connection-fail').hide();
|
245 |
+
jQuery(".b2s-user-settings-area").hide();
|
246 |
+
jQuery(".b2s-loading-area").show();
|
247 |
+
|
248 |
+
var provider_id = jQuery(this).attr('data-provider-id');
|
249 |
+
jQuery.ajax({
|
250 |
+
url: ajaxurl,
|
251 |
+
type: "POST",
|
252 |
+
dataType: "json",
|
253 |
+
cache: false,
|
254 |
+
data: {
|
255 |
+
'action': 'b2s_user_network_settings',
|
256 |
+
'shortener_account_auth_delete': provider_id,
|
257 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
258 |
+
},
|
259 |
+
error: function () {
|
260 |
+
jQuery('.b2s-server-connection-fail').show();
|
261 |
+
return false;
|
262 |
+
},
|
263 |
+
success: function (data) {
|
264 |
+
jQuery(".b2s-loading-area").hide();
|
265 |
+
jQuery(".b2s-user-settings-area").show();
|
266 |
+
if (data.result == true) {
|
267 |
+
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + provider_id + '"]').hide();
|
268 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="' + provider_id + '"]').css('display', 'inline-block');
|
269 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', false);
|
270 |
+
jQuery('#b2s-user-network-settings-short-url').val("1");
|
271 |
+
jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val("0");
|
272 |
+
} else {
|
273 |
+
if(data.error == 'nonce') {
|
274 |
+
jQuery('.b2s-nonce-check-fail').show();
|
275 |
+
}
|
276 |
+
jQuery('.b2s-settings-user-error').show();
|
277 |
+
}
|
278 |
+
}
|
279 |
+
});
|
280 |
+
return false;
|
281 |
+
});
|
282 |
+
|
283 |
+
jQuery('#b2s-user-network-settings-auto-post-own').validate({
|
284 |
+
ignore: "",
|
285 |
+
errorPlacement: function () {
|
286 |
+
return false;
|
287 |
+
},
|
288 |
+
submitHandler: function (form) {
|
289 |
+
jQuery('.b2s-settings-user-success').hide();
|
290 |
+
jQuery('.b2s-settings-user-error').hide();
|
291 |
+
jQuery(".b2s-loading-area").show();
|
292 |
+
jQuery(".b2s-user-settings-area").hide();
|
293 |
+
jQuery('.b2s-server-connection-fail').hide();
|
294 |
+
jQuery.ajax({
|
295 |
+
processData: false,
|
296 |
+
url: ajaxurl,
|
297 |
+
type: "POST",
|
298 |
+
dataType: "json",
|
299 |
+
cache: false,
|
300 |
+
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
301 |
+
error: function () {
|
302 |
+
jQuery('.b2s-server-connection-fail').show();
|
303 |
+
return false;
|
304 |
+
},
|
305 |
+
success: function (data) {
|
306 |
+
jQuery(".b2s-loading-area").hide();
|
307 |
+
jQuery(".b2s-user-settings-area").show();
|
308 |
+
if (data.result == true) {
|
309 |
+
jQuery('.b2s-settings-user-success').show();
|
310 |
+
} else {
|
311 |
+
if(data.error == 'nonce') {
|
312 |
+
jQuery('.b2s-nonce-check-fail').show();
|
313 |
+
}
|
314 |
+
jQuery('.b2s-settings-user-error').show();
|
315 |
+
}
|
316 |
+
}
|
317 |
+
});
|
318 |
+
return false;
|
319 |
+
}
|
320 |
+
});
|
321 |
+
|
322 |
+
jQuery('#b2s-user-network-settings-auto-post-imported-own').validate({
|
323 |
+
ignore: "",
|
324 |
+
errorPlacement: function () {
|
325 |
+
return false;
|
326 |
+
},
|
327 |
+
submitHandler: function (form) {
|
328 |
+
jQuery('.b2s-settings-user-success').hide();
|
329 |
+
jQuery('.b2s-settings-user-error').hide();
|
330 |
+
jQuery('.b2s-settings-user-error-no-auth-selected').hide();
|
331 |
+
jQuery(".b2s-loading-area").show();
|
332 |
+
jQuery(".b2s-user-settings-area").hide();
|
333 |
+
jQuery('.b2s-server-connection-fail').hide();
|
334 |
+
jQuery.ajax({
|
335 |
+
processData: false,
|
336 |
+
url: ajaxurl,
|
337 |
+
type: "POST",
|
338 |
+
dataType: "json",
|
339 |
+
cache: false,
|
340 |
+
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
341 |
+
error: function () {
|
342 |
+
jQuery('.b2s-server-connection-fail').show();
|
343 |
+
return false;
|
344 |
+
},
|
345 |
+
success: function (data) {
|
346 |
+
jQuery(".b2s-loading-area").hide();
|
347 |
+
jQuery(".b2s-user-settings-area").show();
|
348 |
+
if (data.result == true) {
|
349 |
+
jQuery('.b2s-settings-user-success').show();
|
350 |
+
} else {
|
351 |
+
if(data.error == 'nonce') {
|
352 |
+
jQuery('.b2s-nonce-check-fail').show();
|
353 |
+
}
|
354 |
+
if (data.type == 'no-auth-selected') {
|
355 |
+
jQuery('.b2s-settings-user-error-no-auth-selected').show();
|
356 |
+
|
357 |
+
} else {
|
358 |
+
jQuery('.b2s-settings-user-error').show();
|
359 |
+
}
|
360 |
+
}
|
361 |
+
}
|
362 |
+
});
|
363 |
+
return false;
|
364 |
+
}
|
365 |
+
});
|
366 |
+
|
367 |
+
|
368 |
+
|
369 |
+
|
370 |
+
jQuery(document).on('click', '.b2s-post-type-select-btn', function () {
|
371 |
+
var type = jQuery(this).attr('data-post-type');
|
372 |
+
var tempCurText = jQuery(this).text();
|
373 |
+
if (jQuery(this).attr('data-select-toogle-state') == "0") { //0=select
|
374 |
+
jQuery('.b2s-post-type-item-' + type).prop('checked', true);
|
375 |
+
jQuery(this).attr('data-select-toogle-state', '1');
|
376 |
+
if (type == 'update') {
|
377 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
378 |
+
}
|
379 |
+
} else {
|
380 |
+
jQuery('.b2s-post-type-item-' + type).prop('checked', false);
|
381 |
+
jQuery(this).attr('data-select-toogle-state', '0');
|
382 |
+
if (type == 'update') {
|
383 |
+
jQuery('.b2s-auto-post-own-update-warning').hide();
|
384 |
+
}
|
385 |
+
}
|
386 |
+
jQuery(this).text(jQuery(this).attr('data-select-toogle-name'));
|
387 |
+
jQuery(this).attr('data-select-toogle-name', tempCurText);
|
388 |
+
return false;
|
389 |
+
});
|
390 |
+
|
391 |
+
|
392 |
+
jQuery(document).on('change', '#b2s-user-time-zone', function () {
|
393 |
+
var curUserTime = calcCurrentExternTimeByOffset(jQuery('option:selected', this).attr('data-offset'), jQuery('#b2sUserLang').val());
|
394 |
+
jQuery('#b2s-user-time').text(curUserTime);
|
395 |
+
|
396 |
+
jQuery('.b2s-settings-user-success').hide();
|
397 |
+
jQuery('.b2s-settings-user-error').hide();
|
398 |
+
jQuery(".b2s-loading-area").show();
|
399 |
+
jQuery(".b2s-user-settings-area").hide();
|
400 |
+
jQuery('.b2s-server-connection-fail').hide();
|
401 |
+
jQuery('.b2s-nonce-check-fail').hide();
|
402 |
+
|
403 |
+
jQuery.ajax({
|
404 |
+
url: ajaxurl,
|
405 |
+
type: "POST",
|
406 |
+
dataType: "json",
|
407 |
+
cache: false,
|
408 |
+
data: {
|
409 |
+
'action': 'b2s_user_network_settings',
|
410 |
+
'user_time_zone': jQuery(this).val(),
|
411 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
412 |
+
},
|
413 |
+
error: function () {
|
414 |
+
jQuery('.b2s-server-connection-fail').show();
|
415 |
+
return false;
|
416 |
+
},
|
417 |
+
success: function (data) {
|
418 |
+
jQuery(".b2s-loading-area").hide();
|
419 |
+
jQuery(".b2s-user-settings-area").show();
|
420 |
+
if (data.result == true) {
|
421 |
+
jQuery('.b2s-settings-user-success').show();
|
422 |
+
} else {
|
423 |
+
if (data.error == 'nonce') {
|
424 |
+
jQuery('.b2s-nonce-check-fail').show();
|
425 |
+
} else {
|
426 |
+
jQuery('.b2s-settings-user-error').show();
|
427 |
+
}
|
428 |
+
}
|
429 |
+
}
|
430 |
+
});
|
431 |
+
return false;
|
432 |
+
});
|
433 |
+
jQuery(document).on('click', '#b2s-user-network-settings-allow-shortcode', function () {
|
434 |
+
jQuery('.b2s-settings-user-success').hide();
|
435 |
+
jQuery('.b2s-settings-user-error').hide();
|
436 |
+
jQuery(".b2s-loading-area").show();
|
437 |
+
jQuery(".b2s-user-settings-area").hide();
|
438 |
+
jQuery('.b2s-server-connection-fail').hide();
|
439 |
+
jQuery.ajax({
|
440 |
+
url: ajaxurl,
|
441 |
+
type: "POST",
|
442 |
+
dataType: "json",
|
443 |
+
cache: false,
|
444 |
+
data: {
|
445 |
+
'action': 'b2s_user_network_settings',
|
446 |
+
'allow_shortcode': jQuery('#b2s-user-network-settings-allow-shortcode').val(),
|
447 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
448 |
+
},
|
449 |
+
error: function () {
|
450 |
+
jQuery('.b2s-server-connection-fail').show();
|
451 |
+
return false;
|
452 |
+
},
|
453 |
+
success: function (data) {
|
454 |
+
jQuery(".b2s-loading-area").hide();
|
455 |
+
jQuery(".b2s-user-settings-area").show();
|
456 |
+
if (data.result == true) {
|
457 |
+
jQuery('.b2s-settings-user-success').show();
|
458 |
+
jQuery('#b2s-user-network-settings-allow-shortcode').val(data.content);
|
459 |
+
if (jQuery("#b2s-user-network-settings-allow-shortcode").is(":checked")) {
|
460 |
+
jQuery('#b2s-user-network-settings-allow-shortcode').prop('checked', false);
|
461 |
+
} else {
|
462 |
+
jQuery('#b2s-user-network-settings-allow-shortcode').prop('checked', true);
|
463 |
+
}
|
464 |
+
} else {
|
465 |
+
if(data.error == 'nonce') {
|
466 |
+
jQuery('.b2s-nonce-check-fail').show();
|
467 |
+
}
|
468 |
+
jQuery('.b2s-settings-user-error').show();
|
469 |
+
}
|
470 |
+
}
|
471 |
+
});
|
472 |
+
return false;
|
473 |
+
});
|
474 |
+
|
475 |
+
jQuery(document).on('click', '#b2s-user-network-settings-allow-hashtag', function () {
|
476 |
+
jQuery('.b2s-settings-user-success').hide();
|
477 |
+
jQuery('.b2s-settings-user-error').hide();
|
478 |
+
jQuery(".b2s-loading-area").show();
|
479 |
+
jQuery(".b2s-user-settings-area").hide();
|
480 |
+
jQuery('.b2s-server-connection-fail').hide();
|
481 |
+
jQuery.ajax({
|
482 |
+
url: ajaxurl,
|
483 |
+
type: "POST",
|
484 |
+
dataType: "json",
|
485 |
+
cache: false,
|
486 |
+
data: {
|
487 |
+
'action': 'b2s_user_network_settings',
|
488 |
+
'allow_hashtag': jQuery('#b2s-user-network-settings-allow-hashtag').val(),
|
489 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
490 |
+
},
|
491 |
+
error: function () {
|
492 |
+
jQuery('.b2s-server-connection-fail').show();
|
493 |
+
return false;
|
494 |
+
},
|
495 |
+
success: function (data) {
|
496 |
+
if (data.result == true) {
|
497 |
+
window.location.href = window.location.pathname + "?page=blog2social-settings&b2s-settings-user-success=true";
|
498 |
+
} else {
|
499 |
+
if(data.error == 'nonce') {
|
500 |
+
jQuery('.b2s-nonce-check-fail').show();
|
501 |
+
}
|
502 |
+
jQuery(".b2s-loading-area").hide();
|
503 |
+
jQuery(".b2s-user-settings-area").show();
|
504 |
+
jQuery('.b2s-settings-user-error').show();
|
505 |
+
}
|
506 |
+
}
|
507 |
+
});
|
508 |
+
return false;
|
509 |
+
});
|
510 |
+
|
511 |
+
|
512 |
+
jQuery(document).on('click', '#b2s-general-settings-legacy-mode', function () {
|
513 |
+
jQuery('.b2s-settings-user-success').hide();
|
514 |
+
jQuery('.b2s-settings-user-error').hide();
|
515 |
+
jQuery(".b2s-loading-area").show();
|
516 |
+
jQuery(".b2s-user-settings-area").hide();
|
517 |
+
jQuery('.b2s-server-connection-fail').hide();
|
518 |
+
jQuery.ajax({
|
519 |
+
url: ajaxurl,
|
520 |
+
type: "POST",
|
521 |
+
dataType: "json",
|
522 |
+
cache: false,
|
523 |
+
data: {
|
524 |
+
'action': 'b2s_user_network_settings',
|
525 |
+
'legacy_mode': jQuery('#b2s-general-settings-legacy-mode').val(),
|
526 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
527 |
+
},
|
528 |
+
error: function () {
|
529 |
+
jQuery('.b2s-server-connection-fail').show();
|
530 |
+
return false;
|
531 |
+
},
|
532 |
+
success: function (data) {
|
533 |
+
jQuery(".b2s-loading-area").hide();
|
534 |
+
jQuery(".b2s-user-settings-area").show();
|
535 |
+
if (data.result == true) {
|
536 |
+
jQuery('.b2s-settings-user-success').show();
|
537 |
+
jQuery('#b2s-general-settings-legacy-mode').val(data.content);
|
538 |
+
if (jQuery("#b2s-general-settings-legacy-mode").is(":checked")) {
|
539 |
+
jQuery('#b2s-general-settings-legacy-mode').prop('checked', false);
|
540 |
+
} else {
|
541 |
+
jQuery('#b2s-general-settings-legacy-mode').prop('checked', true);
|
542 |
+
}
|
543 |
+
} else {
|
544 |
+
if(data.error == 'nonce') {
|
545 |
+
jQuery('.b2s-nonce-check-fail').show();
|
546 |
+
}
|
547 |
+
jQuery('.b2s-settings-user-error').show();
|
548 |
+
}
|
549 |
+
}
|
550 |
+
});
|
551 |
+
return false;
|
552 |
+
});
|
553 |
+
|
554 |
+
function padDate(n) {
|
555 |
+
return ("0" + n).slice(-2);
|
556 |
+
}
|
557 |
+
|
558 |
+
function calcCurrentExternTimeByOffset(offset, lang) {
|
559 |
+
|
560 |
+
var UTCstring = (new Date()).getTime() / 1000;
|
561 |
+
var neuerTimestamp = UTCstring + (offset * 3600);
|
562 |
+
neuerTimestamp = parseInt(neuerTimestamp);
|
563 |
+
var newDate = new Date(neuerTimestamp * 1000);
|
564 |
+
var year = newDate.getUTCFullYear();
|
565 |
+
var month = newDate.getUTCMonth() + 1;
|
566 |
+
if (month < 10) {
|
567 |
+
month = "0" + month;
|
568 |
+
}
|
569 |
+
|
570 |
+
var day = newDate.getUTCDate();
|
571 |
+
if (day < 10) {
|
572 |
+
day = "0" + day;
|
573 |
+
}
|
574 |
+
|
575 |
+
var mins = newDate.getUTCMinutes();
|
576 |
+
if (mins < 10) {
|
577 |
+
mins = "0" + mins;
|
578 |
+
}
|
579 |
+
|
580 |
+
var hours = newDate.getUTCHours();
|
581 |
+
if (lang == "de") {
|
582 |
+
if (hours < 10) {
|
583 |
+
hours = "0" + hours;
|
584 |
+
}
|
585 |
+
return day + "." + month + "." + year + " " + hours + ":" + mins;
|
586 |
+
}
|
587 |
+
var am_pm = "";
|
588 |
+
if (hours >= 12) {
|
589 |
+
am_pm = "PM";
|
590 |
+
} else {
|
591 |
+
am_pm = "AM";
|
592 |
+
}
|
593 |
+
|
594 |
+
if (hours == 0) {
|
595 |
+
hours = 12;
|
596 |
+
}
|
597 |
+
|
598 |
+
if (hours > 12) {
|
599 |
+
var newHour = hours - 12;
|
600 |
+
if (newHour < 10) {
|
601 |
+
newHour = "0" + newHour;
|
602 |
+
}
|
603 |
+
} else {
|
604 |
+
var newHour = hours;
|
605 |
+
}
|
606 |
+
return year + "/" + month + "/" + day + " " + newHour + ":" + mins + " " + am_pm;
|
607 |
+
}
|
608 |
+
|
609 |
+
|
610 |
+
function wopShortener(url, name) {
|
611 |
+
var location = encodeURI(window.location.protocol + '//' + window.location.hostname);
|
612 |
+
window.open(url + '&location=' + location, name, "width=900,height=600,scrollbars=yes,toolbar=no,status=no,resizable=no,menubar=no,location=no,directories=no,top=20,left=20");
|
613 |
+
}
|
614 |
+
|
615 |
+
window.addEventListener('message', function (e) {
|
616 |
+
if (e.origin == jQuery('#b2sServerUrl').val()) {
|
617 |
+
var data = JSON.parse(e.data);
|
618 |
+
loginSuccessShortener(data.providerId, data.displayName);
|
619 |
+
}
|
620 |
+
});
|
621 |
+
|
622 |
+
function loginSuccessShortener(providerId, displayName) {
|
623 |
+
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + providerId + '"]').css('display', 'inline-block');
|
624 |
+
jQuery('#b2s-shortener-account-display-name[data-provider-id="' + providerId + '"]').html(displayName);
|
625 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="' + providerId + '"]').hide();
|
626 |
+
jQuery('#b2s-user-network-settings-short-url').prop("checked", true);
|
627 |
+
jQuery('#b2s-user-network-settings-short-url').val("0");
|
628 |
+
jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val("1");
|
629 |
+
}
|
assets/js/b2s/ship.js
CHANGED
@@ -76,10 +76,15 @@ jQuery.sceditor.command.set(
|
|
76 |
data: {
|
77 |
'action': 'b2s_get_image_modal',
|
78 |
'id': b2s_current_post_id,
|
79 |
-
'image_url': ''
|
|
|
80 |
},
|
81 |
success: function (data) {
|
82 |
-
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
});
|
85 |
}
|
@@ -123,7 +128,7 @@ jQuery(document).on('click', '.b2s-toogle-calendar-btn', function () {
|
|
123 |
jQuery('.b2s-calendar-filter-area[data-network-auth-id="' + networkAuthId + '"]').removeClass('hide');
|
124 |
|
125 |
if (calendar.is(':empty')) {
|
126 |
-
b2s_cur_source_ship_calendar[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + networkId + '&filter_status=2';
|
127 |
|
128 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + networkAuthId + '"]').fullCalendar({
|
129 |
editable: false,
|
@@ -218,8 +223,8 @@ jQuery(document).on('click', '.b2s-calendar-add-schedule-btn', function () {
|
|
218 |
});
|
219 |
|
220 |
jQuery(document).on('change', '.b2s-calendar-filter-network-sel', function () {
|
221 |
-
var newSource = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).val() + '&filter_status=2';
|
222 |
-
var oldSource = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).attr('data-last-sel') + '&filter_status=2';
|
223 |
jQuery(this).attr('data-last-sel', jQuery(this).val());
|
224 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').fullCalendar('removeEventSource', oldSource);
|
225 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').fullCalendar('addEventSource', newSource);
|
@@ -236,6 +241,7 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function ()
|
|
236 |
cache: false,
|
237 |
data: {
|
238 |
'action': 'b2s_get_settings_sched_time_default',
|
|
|
239 |
},
|
240 |
error: function () {
|
241 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -297,6 +303,10 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function ()
|
|
297 |
});
|
298 |
}
|
299 |
});
|
|
|
|
|
|
|
|
|
300 |
}
|
301 |
}
|
302 |
});
|
@@ -383,6 +393,7 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
383 |
cache: false,
|
384 |
data: {
|
385 |
'action': 'b2s_get_settings_sched_time_user',
|
|
|
386 |
},
|
387 |
error: function () {
|
388 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -496,6 +507,9 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
496 |
});
|
497 |
}
|
498 |
} else {
|
|
|
|
|
|
|
499 |
//default load best Times
|
500 |
//jQuery('.b2s-get-settings-sched-time-default').trigger('click');
|
501 |
//set current time
|
@@ -775,6 +789,7 @@ jQuery(document).on("click", ".b2s-post-ship-item-full-text", function () {
|
|
775 |
'userLang': jQuery('#b2sUserLang').val(),
|
776 |
'networkAuthId': jQuery(this).attr('data-network-auth-id'),
|
777 |
'networkId': jQuery(this).attr('data-network-id'),
|
|
|
778 |
},
|
779 |
error: function () {
|
780 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -791,6 +806,10 @@ jQuery(document).on("click", ".b2s-post-ship-item-full-text", function () {
|
|
791 |
networkLimitAll(data.networkAuthId, data.networkId, networkTextLimit);
|
792 |
}
|
793 |
}
|
|
|
|
|
|
|
|
|
794 |
}
|
795 |
}
|
796 |
});
|
@@ -1017,7 +1036,8 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1017 |
'relayCount': jQuery('#b2sRelayCount').val(),
|
1018 |
'selSchedDate': jQuery('#selSchedDate').val(),
|
1019 |
'b2sPostType': jQuery('#b2sPostType').val(),
|
1020 |
-
'b2sIsDraft': jQuery('#b2sIsDraft').val()
|
|
|
1021 |
},
|
1022 |
beforeSend: function (jqXHR) { // before jQuery send the request we will push it to our array
|
1023 |
jQuery.xhrPool.push(jqXHR);
|
@@ -1443,6 +1463,9 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1443 |
jQuery('.b2s-content-info[data-network-auth-id="' + data.networkAuthId + '"').show();
|
1444 |
|
1445 |
} else {
|
|
|
|
|
|
|
1446 |
//TOS XING Groups
|
1447 |
if (typeof data.reason !== "undefined") {
|
1448 |
if (data.reason == 'tos_xing_group_exists') {
|
@@ -1776,7 +1799,7 @@ jQuery(document).on("keyup", ".complete_network_url", function () {
|
|
1776 |
jQuery(this).val(url);
|
1777 |
}
|
1778 |
} else if (jQuery(this).hasClass("required_network_url")) {
|
1779 |
-
if (!(jQuery(this).attr('data-network-id') == 1 && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + jQuery(this).attr('data-network-auth-id') + ']').val() == 1)) { //Facebook Imagepost don't require Link
|
1780 |
url = jQuery("#b2sDefault_url").val();
|
1781 |
jQuery(this).val(url);
|
1782 |
}
|
@@ -1809,7 +1832,8 @@ jQuery(document).on('click', '.b2s-post-item-details-preview-url-reload', functi
|
|
1809 |
'networkAuthId': networkAuthId,
|
1810 |
'postId': jQuery('#b2sPostId').val(),
|
1811 |
'defaultUrl': jQuery('#b2sDefault_url').val(),
|
1812 |
-
'url': url
|
|
|
1813 |
},
|
1814 |
error: function () {
|
1815 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -1837,6 +1861,10 @@ jQuery(document).on('click', '.b2s-post-item-details-preview-url-reload', functi
|
|
1837 |
jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + data.networkAuthId + '"]').val(jQuery('#b2sDefaultNoImage').val());
|
1838 |
}
|
1839 |
}
|
|
|
|
|
|
|
|
|
1840 |
}
|
1841 |
}
|
1842 |
|
@@ -2309,12 +2337,16 @@ jQuery("#b2sNetworkSent").validate({
|
|
2309 |
type: "POST",
|
2310 |
dataType: "json",
|
2311 |
cache: false,
|
2312 |
-
data: jQuery(form).serialize(),
|
2313 |
error: function () {
|
2314 |
jQuery('.b2s-server-connection-fail').show();
|
2315 |
return false;
|
2316 |
},
|
2317 |
success: function (data) {
|
|
|
|
|
|
|
|
|
2318 |
var content = data.content;
|
2319 |
jQuery(".b2s-loading-area").hide();
|
2320 |
for (var i = 0; i < content.length; i++) {
|
@@ -2371,7 +2403,8 @@ jQuery(document).on('click', '.b2s-loading-area-save-profile-change', function (
|
|
2371 |
data: {
|
2372 |
'action': 'b2s_ship_navbar_save_settings',
|
2373 |
'mandantId': jQuery('.b2s-network-details-mandant-select').val(),
|
2374 |
-
'selectedAuth': selectedAuth
|
|
|
2375 |
},
|
2376 |
error: function () {
|
2377 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -2402,6 +2435,10 @@ jQuery(document).on('click', '.b2s-loading-area-save-profile-change', function (
|
|
2402 |
}
|
2403 |
}
|
2404 |
});
|
|
|
|
|
|
|
|
|
2405 |
}
|
2406 |
}
|
2407 |
});
|
@@ -2422,6 +2459,7 @@ window.addEventListener('message', function (e) {
|
|
2422 |
'post_id': data.post_id,
|
2423 |
'publish_link': data.publish_link,
|
2424 |
'publish_error_code': data.publish_error_code,
|
|
|
2425 |
},
|
2426 |
success: function (data) {
|
2427 |
}
|
@@ -2448,6 +2486,7 @@ jQuery(document).on('click', '.b2s-approve-publish-confirm-btn', function () {
|
|
2448 |
'post_id': postId,
|
2449 |
'publish_link': "",
|
2450 |
'publish_error_code': "",
|
|
|
2451 |
},
|
2452 |
success: function (data) {
|
2453 |
}
|
@@ -3093,7 +3132,7 @@ function networkLimitAll(networkAuthId, networkId, limit) {
|
|
3093 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3094 |
}
|
3095 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3096 |
-
if (!(jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook Imagepost don't require Link
|
3097 |
url = jQuery("#b2sDefault_url").val();
|
3098 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3099 |
}
|
@@ -3147,7 +3186,7 @@ function networkCount(networkAuthId) {
|
|
3147 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3148 |
}
|
3149 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3150 |
-
if (!(jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook Imagepost don't require Link
|
3151 |
url = jQuery("#b2sDefault_url").val();
|
3152 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3153 |
}
|
@@ -3302,7 +3341,8 @@ function loginSuccess(networkId, networkType, displayName, networkAuthId, mandan
|
|
3302 |
'displayName': displayName,
|
3303 |
'networkAuthId': networkAuthId,
|
3304 |
'instant_sharing': instant_sharing,
|
3305 |
-
'mandandId': mandandId
|
|
|
3306 |
},
|
3307 |
error: function () {
|
3308 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -3312,6 +3352,10 @@ function loginSuccess(networkId, networkType, displayName, networkAuthId, mandan
|
|
3312 |
if (data.result == true) {
|
3313 |
jQuery(data.content).insertAfter('.b2s-sidbar-network-auth-btn');
|
3314 |
jQuery('.b2s-network-select-btn[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
|
|
|
|
|
|
|
|
3315 |
}
|
3316 |
}
|
3317 |
});
|
@@ -3403,7 +3447,8 @@ jQuery(document).on("click", ".b2s-draft-btn", function (event) {
|
|
3403 |
cache: false,
|
3404 |
data: {
|
3405 |
action: 'b2s_check_draft_exists',
|
3406 |
-
postId: jQuery('#post_id').val()
|
|
|
3407 |
},
|
3408 |
error: function () {
|
3409 |
saveDraft();
|
@@ -3414,6 +3459,10 @@ jQuery(document).on("click", ".b2s-draft-btn", function (event) {
|
|
3414 |
if (result.result == true) {
|
3415 |
jQuery('#b2s-save-draft-modal').modal('show');
|
3416 |
return true;
|
|
|
|
|
|
|
|
|
3417 |
}
|
3418 |
saveDraft();
|
3419 |
return false;
|
@@ -3428,7 +3477,7 @@ jQuery(document).on('click', '.b2s-draft-btn-scroll', function () {
|
|
3428 |
|
3429 |
function saveDraft() {
|
3430 |
jQuery('#action').val('b2s_save_draft_data');
|
3431 |
-
var data = jQuery('#b2sNetworkSent').serialize();
|
3432 |
jQuery('#action').val('b2s_save_ship_data');
|
3433 |
jQuery.ajax({
|
3434 |
url: ajaxurl,
|
@@ -3454,6 +3503,9 @@ function saveDraft() {
|
|
3454 |
jQuery('.b2s-post-draft-saved-success').fadeOut();
|
3455 |
}, 5000);
|
3456 |
} else {
|
|
|
|
|
|
|
3457 |
jQuery('.b2s-post-draft-saved-fail').show();
|
3458 |
window.setTimeout(function () {
|
3459 |
jQuery('.b2s-post-draft-saved-fail').fadeOut();
|
@@ -3475,4 +3527,131 @@ jQuery(document).on('click', '.b2s-save-draft-confirm-btn', function () {
|
|
3475 |
saveDraft();
|
3476 |
jQuery('#b2s-save-draft-modal').modal('hide');
|
3477 |
return true;
|
3478 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
data: {
|
77 |
'action': 'b2s_get_image_modal',
|
78 |
'id': b2s_current_post_id,
|
79 |
+
'image_url': '',
|
80 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
81 |
},
|
82 |
success: function (data) {
|
83 |
+
if (data.error == 'nonce') {
|
84 |
+
jQuery('.b2s-nonce-check-fail').show();
|
85 |
+
} else {
|
86 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
87 |
+
}
|
88 |
}
|
89 |
});
|
90 |
}
|
128 |
jQuery('.b2s-calendar-filter-area[data-network-auth-id="' + networkAuthId + '"]').removeClass('hide');
|
129 |
|
130 |
if (calendar.is(':empty')) {
|
131 |
+
b2s_cur_source_ship_calendar[0] = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + networkId + '&filter_status=2' + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
132 |
|
133 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + networkAuthId + '"]').fullCalendar({
|
134 |
editable: false,
|
223 |
});
|
224 |
|
225 |
jQuery(document).on('change', '.b2s-calendar-filter-network-sel', function () {
|
226 |
+
var newSource = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).val() + '&filter_status=2' + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
227 |
+
var oldSource = ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=' + jQuery(this).attr('data-last-sel') + '&filter_status=2' + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
228 |
jQuery(this).attr('data-last-sel', jQuery(this).val());
|
229 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').fullCalendar('removeEventSource', oldSource);
|
230 |
jQuery('.b2s-post-item-calendar-area[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').fullCalendar('addEventSource', newSource);
|
241 |
cache: false,
|
242 |
data: {
|
243 |
'action': 'b2s_get_settings_sched_time_default',
|
244 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
245 |
},
|
246 |
error: function () {
|
247 |
jQuery('.b2s-server-connection-fail').show();
|
303 |
});
|
304 |
}
|
305 |
});
|
306 |
+
} else {
|
307 |
+
if (data.error == 'nonce') {
|
308 |
+
jQuery('.b2s-nonce-check-fail').show();
|
309 |
+
}
|
310 |
}
|
311 |
}
|
312 |
});
|
393 |
cache: false,
|
394 |
data: {
|
395 |
'action': 'b2s_get_settings_sched_time_user',
|
396 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
397 |
},
|
398 |
error: function () {
|
399 |
jQuery('.b2s-server-connection-fail').show();
|
507 |
});
|
508 |
}
|
509 |
} else {
|
510 |
+
if (data.error == 'nonce') {
|
511 |
+
jQuery('.b2s-nonce-check-fail').show();
|
512 |
+
}
|
513 |
//default load best Times
|
514 |
//jQuery('.b2s-get-settings-sched-time-default').trigger('click');
|
515 |
//set current time
|
789 |
'userLang': jQuery('#b2sUserLang').val(),
|
790 |
'networkAuthId': jQuery(this).attr('data-network-auth-id'),
|
791 |
'networkId': jQuery(this).attr('data-network-id'),
|
792 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
793 |
},
|
794 |
error: function () {
|
795 |
jQuery('.b2s-server-connection-fail').show();
|
806 |
networkLimitAll(data.networkAuthId, data.networkId, networkTextLimit);
|
807 |
}
|
808 |
}
|
809 |
+
} else {
|
810 |
+
if (data.error == 'nonce') {
|
811 |
+
jQuery('.b2s-nonce-check-fail').show();
|
812 |
+
}
|
813 |
}
|
814 |
}
|
815 |
});
|
1036 |
'relayCount': jQuery('#b2sRelayCount').val(),
|
1037 |
'selSchedDate': jQuery('#selSchedDate').val(),
|
1038 |
'b2sPostType': jQuery('#b2sPostType').val(),
|
1039 |
+
'b2sIsDraft': jQuery('#b2sIsDraft').val(),
|
1040 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1041 |
},
|
1042 |
beforeSend: function (jqXHR) { // before jQuery send the request we will push it to our array
|
1043 |
jQuery.xhrPool.push(jqXHR);
|
1463 |
jQuery('.b2s-content-info[data-network-auth-id="' + data.networkAuthId + '"').show();
|
1464 |
|
1465 |
} else {
|
1466 |
+
if (data.error == 'nonce') {
|
1467 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1468 |
+
}
|
1469 |
//TOS XING Groups
|
1470 |
if (typeof data.reason !== "undefined") {
|
1471 |
if (data.reason == 'tos_xing_group_exists') {
|
1799 |
jQuery(this).val(url);
|
1800 |
}
|
1801 |
} else if (jQuery(this).hasClass("required_network_url")) {
|
1802 |
+
if (!((jQuery(this).attr('data-network-id') == 1 || jQuery(this).attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + jQuery(this).attr('data-network-auth-id') + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
1803 |
url = jQuery("#b2sDefault_url").val();
|
1804 |
jQuery(this).val(url);
|
1805 |
}
|
1832 |
'networkAuthId': networkAuthId,
|
1833 |
'postId': jQuery('#b2sPostId').val(),
|
1834 |
'defaultUrl': jQuery('#b2sDefault_url').val(),
|
1835 |
+
'url': url,
|
1836 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1837 |
},
|
1838 |
error: function () {
|
1839 |
jQuery('.b2s-server-connection-fail').show();
|
1861 |
jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + data.networkAuthId + '"]').val(jQuery('#b2sDefaultNoImage').val());
|
1862 |
}
|
1863 |
}
|
1864 |
+
} else {
|
1865 |
+
if (data.error == 'nonce') {
|
1866 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1867 |
+
}
|
1868 |
}
|
1869 |
}
|
1870 |
|
2337 |
type: "POST",
|
2338 |
dataType: "json",
|
2339 |
cache: false,
|
2340 |
+
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
2341 |
error: function () {
|
2342 |
jQuery('.b2s-server-connection-fail').show();
|
2343 |
return false;
|
2344 |
},
|
2345 |
success: function (data) {
|
2346 |
+
if(data.error == 'nonce') {
|
2347 |
+
jQuery('.b2s-nonce-check-fail').show();
|
2348 |
+
return false;
|
2349 |
+
}
|
2350 |
var content = data.content;
|
2351 |
jQuery(".b2s-loading-area").hide();
|
2352 |
for (var i = 0; i < content.length; i++) {
|
2403 |
data: {
|
2404 |
'action': 'b2s_ship_navbar_save_settings',
|
2405 |
'mandantId': jQuery('.b2s-network-details-mandant-select').val(),
|
2406 |
+
'selectedAuth': selectedAuth,
|
2407 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
2408 |
},
|
2409 |
error: function () {
|
2410 |
jQuery('.b2s-server-connection-fail').show();
|
2435 |
}
|
2436 |
}
|
2437 |
});
|
2438 |
+
} else {
|
2439 |
+
if (data.error == 'nonce') {
|
2440 |
+
jQuery('.b2s-nonce-check-fail').show();
|
2441 |
+
}
|
2442 |
}
|
2443 |
}
|
2444 |
});
|
2459 |
'post_id': data.post_id,
|
2460 |
'publish_link': data.publish_link,
|
2461 |
'publish_error_code': data.publish_error_code,
|
2462 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
2463 |
},
|
2464 |
success: function (data) {
|
2465 |
}
|
2486 |
'post_id': postId,
|
2487 |
'publish_link': "",
|
2488 |
'publish_error_code': "",
|
2489 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
2490 |
},
|
2491 |
success: function (data) {
|
2492 |
}
|
3132 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3133 |
}
|
3134 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3135 |
+
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3136 |
url = jQuery("#b2sDefault_url").val();
|
3137 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3138 |
}
|
3186 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3187 |
}
|
3188 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3189 |
+
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3190 |
url = jQuery("#b2sDefault_url").val();
|
3191 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3192 |
}
|
3341 |
'displayName': displayName,
|
3342 |
'networkAuthId': networkAuthId,
|
3343 |
'instant_sharing': instant_sharing,
|
3344 |
+
'mandandId': mandandId,
|
3345 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3346 |
},
|
3347 |
error: function () {
|
3348 |
jQuery('.b2s-server-connection-fail').show();
|
3352 |
if (data.result == true) {
|
3353 |
jQuery(data.content).insertAfter('.b2s-sidbar-network-auth-btn');
|
3354 |
jQuery('.b2s-network-select-btn[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
3355 |
+
} else {
|
3356 |
+
if (data.error == 'nonce') {
|
3357 |
+
jQuery('.b2s-nonce-check-fail').show();
|
3358 |
+
}
|
3359 |
}
|
3360 |
}
|
3361 |
});
|
3447 |
cache: false,
|
3448 |
data: {
|
3449 |
action: 'b2s_check_draft_exists',
|
3450 |
+
postId: jQuery('#post_id').val(),
|
3451 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3452 |
},
|
3453 |
error: function () {
|
3454 |
saveDraft();
|
3459 |
if (result.result == true) {
|
3460 |
jQuery('#b2s-save-draft-modal').modal('show');
|
3461 |
return true;
|
3462 |
+
} else {
|
3463 |
+
if (result.error == 'nonce') {
|
3464 |
+
jQuery('.b2s-nonce-check-fail').show();
|
3465 |
+
}
|
3466 |
}
|
3467 |
saveDraft();
|
3468 |
return false;
|
3477 |
|
3478 |
function saveDraft() {
|
3479 |
jQuery('#action').val('b2s_save_draft_data');
|
3480 |
+
var data = jQuery('#b2sNetworkSent').serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val();
|
3481 |
jQuery('#action').val('b2s_save_ship_data');
|
3482 |
jQuery.ajax({
|
3483 |
url: ajaxurl,
|
3503 |
jQuery('.b2s-post-draft-saved-success').fadeOut();
|
3504 |
}, 5000);
|
3505 |
} else {
|
3506 |
+
if (result.error == 'nonce') {
|
3507 |
+
jQuery('.b2s-nonce-check-fail').show();
|
3508 |
+
}
|
3509 |
jQuery('.b2s-post-draft-saved-fail').show();
|
3510 |
window.setTimeout(function () {
|
3511 |
jQuery('.b2s-post-draft-saved-fail').fadeOut();
|
3527 |
saveDraft();
|
3528 |
jQuery('#b2s-save-draft-modal').modal('hide');
|
3529 |
return true;
|
3530 |
+
});
|
3531 |
+
|
3532 |
+
jQuery('#b2sAuthNetwork6Modal').on('hidden.bs.modal', function () {
|
3533 |
+
jQuery('body').addClass('modal-open');
|
3534 |
+
});
|
3535 |
+
|
3536 |
+
// START Pinterest
|
3537 |
+
jQuery(document).on('click', '.b2s-auth-network-6-login-btn', function() {
|
3538 |
+
jQuery('.b2s-loading-area').show();
|
3539 |
+
jQuery('.b2s-auth-network-6-login-area').hide();
|
3540 |
+
jQuery('.b2s-auth-network-6-login-btn').hide();
|
3541 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
3542 |
+
jQuery('.b2s-auth-network-6-info').hide();
|
3543 |
+
jQuery.ajax({
|
3544 |
+
url: ajaxurl,
|
3545 |
+
type: "POST",
|
3546 |
+
dataType: "json",
|
3547 |
+
cache: false,
|
3548 |
+
data: {
|
3549 |
+
'action': 'b2s_auth_network_login',
|
3550 |
+
'username': jQuery('#b2s-auth-network-6-username').val(),
|
3551 |
+
'password': jQuery('#b2s-auth-network-6-password').val(),
|
3552 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3553 |
+
},
|
3554 |
+
error: function () {
|
3555 |
+
jQuery('.b2s-loading-area').hide();
|
3556 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
3557 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
3558 |
+
return false;
|
3559 |
+
},
|
3560 |
+
success: function (data) {
|
3561 |
+
jQuery('.b2s-loading-area').hide();
|
3562 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
3563 |
+
if (data.result == true) {
|
3564 |
+
jQuery('#b2s-auth-network-6-board').html(data.boards);
|
3565 |
+
jQuery('#b2s-auth-network-6-ident-data').val(data.identData);
|
3566 |
+
jQuery('.b2s-auth-network-6-board-area').show();
|
3567 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
3568 |
+
jQuery('.b2s-auth-network-6-info[data-info="success"]').show();
|
3569 |
+
} else {
|
3570 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
3571 |
+
if (data.error == 'nonce') {
|
3572 |
+
jQuery('.b2s-nonce-check-fail').show();
|
3573 |
+
}
|
3574 |
+
if(typeof data.error != 'undefined' && data.error != ''){
|
3575 |
+
jQuery('.b2s-auth-network-6-info[data-info="'+data.error+'"]').show();
|
3576 |
+
return false;
|
3577 |
+
}
|
3578 |
+
jQuery('.b2s-auth-network-6-info[data-info="login"]').show();
|
3579 |
+
}
|
3580 |
+
}
|
3581 |
+
});
|
3582 |
+
});
|
3583 |
+
|
3584 |
+
jQuery(document).on('click', '.b2s-auth-network-6-confirm-btn', function() {
|
3585 |
+
jQuery('.b2s-loading-area').show();
|
3586 |
+
jQuery('.b2s-auth-network-6-login-area').hide();
|
3587 |
+
jQuery('.b2s-auth-network-6-login-btn').hide();
|
3588 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
3589 |
+
jQuery.ajax({
|
3590 |
+
url: ajaxurl,
|
3591 |
+
type: "POST",
|
3592 |
+
dataType: "json",
|
3593 |
+
cache: false,
|
3594 |
+
data: {
|
3595 |
+
'action': 'b2s_auth_network_confirm',
|
3596 |
+
'username': jQuery('#b2s-auth-network-6-username').val(),
|
3597 |
+
'password': jQuery('#b2s-auth-network-6-password').val(),
|
3598 |
+
'boardId': jQuery('#b2s-auth-network-6-board').val(),
|
3599 |
+
'identData': jQuery('#b2s-auth-network-6-ident-data').val(),
|
3600 |
+
'mandantId': jQuery('.b2s-network-details-mandant-select').val(),
|
3601 |
+
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
3602 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3603 |
+
},
|
3604 |
+
error: function () {
|
3605 |
+
jQuery('.b2s-loading-area').hide();
|
3606 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
3607 |
+
return false;
|
3608 |
+
},
|
3609 |
+
success: function (data) {
|
3610 |
+
jQuery('.b2s-loading-area').hide();
|
3611 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
3612 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
3613 |
+
if (data.result == true) {
|
3614 |
+
jQuery('#b2sAuthNetwork6Modal').modal('hide');
|
3615 |
+
loginSuccess(data.networkId, data.networkType, data.displayName, data.networkAuthId, data.mandandId);
|
3616 |
+
} else {
|
3617 |
+
if (data.error == 'nonce') {
|
3618 |
+
jQuery('.b2s-nonce-check-fail').show();
|
3619 |
+
}
|
3620 |
+
if (typeof data.error != 'undefined' && data.error != '') {
|
3621 |
+
jQuery('.b2s-auth-network-6-info[data-info="'+data.error+'"]').show();
|
3622 |
+
return false;
|
3623 |
+
}
|
3624 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
3625 |
+
}
|
3626 |
+
}
|
3627 |
+
});
|
3628 |
+
});
|
3629 |
+
|
3630 |
+
jQuery(document).on('click', '.b2s-network-list-add-btn[data-auth-method="client"]', function() {
|
3631 |
+
jQuery('#b2sAuthNetwork6Modal').modal('show');
|
3632 |
+
});
|
3633 |
+
|
3634 |
+
jQuery('#b2sAuthNetwork6Modal').on('hidden.bs.modal', function () {
|
3635 |
+
jQuery('.b2s-loading-area').hide();
|
3636 |
+
jQuery('.b2s-auth-network-6-login-area').show();
|
3637 |
+
jQuery('#b2s-auth-network-6-auth-id').val('');
|
3638 |
+
jQuery('#b2s-auth-network-6-board').html('');
|
3639 |
+
jQuery('#b2s-auth-network-6-ident-data').val('');
|
3640 |
+
jQuery('.b2s-auth-network-6-info').hide();
|
3641 |
+
jQuery('.b2s-auth-network-6-confirm-btn').hide();
|
3642 |
+
jQuery('.b2s-auth-network-6-login-btn').show();
|
3643 |
+
jQuery('.b2s-auth-network-6-board-area').hide();
|
3644 |
+
jQuery('#b2s-auth-network-6-username').val('');
|
3645 |
+
jQuery('#b2s-auth-network-6-password').val('');
|
3646 |
+
});
|
3647 |
+
|
3648 |
+
jQuery(".b2s-auth-network-6-reveal").mousedown(function () {
|
3649 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'text'));
|
3650 |
+
});
|
3651 |
+
jQuery(".b2s-auth-network-6-reveal").mouseup(function () {
|
3652 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'password'));
|
3653 |
+
});
|
3654 |
+
jQuery(".b2s-auth-network-6-reveal").mouseout(function () {
|
3655 |
+
jQuery("#b2s-auth-network-6-password").replaceWith(jQuery('#b2s-auth-network-6-password').clone().attr('type', 'password'));
|
3656 |
+
});
|
3657 |
+
// END Pinterest
|
assets/js/b2s/start.js
CHANGED
@@ -1,280 +1,290 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
/* Calendar-Widget */
|
4 |
-
jQuery(document).ready(function () {
|
5 |
-
jQuery('.b2s-widget-calendar').fullCalendar({
|
6 |
-
editable: false,
|
7 |
-
locale: b2s_calendar_locale,
|
8 |
-
eventLimit: 2,
|
9 |
-
contentHeight: 475,
|
10 |
-
timeFormat: 'H:mm',
|
11 |
-
customButtons: {
|
12 |
-
showall: {
|
13 |
-
text: 'show full calendar',
|
14 |
-
click: function () {
|
15 |
-
window.open('admin.php?page=blog2social-calendar',"_self");
|
16 |
-
}
|
17 |
-
}
|
18 |
-
},
|
19 |
-
header: {
|
20 |
-
left: 'title',
|
21 |
-
center: '',
|
22 |
-
right: 'showall today prev,next'
|
23 |
-
},
|
24 |
-
eventSources: ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=all',
|
25 |
-
eventRender: function (event, element) {
|
26 |
-
show = true;
|
27 |
-
$header = jQuery("<div>").addClass("b2s-calendar-header");
|
28 |
-
$isRelayPost = '';
|
29 |
-
$isCuratedPost = '';
|
30 |
-
if (event.post_type == 'b2s_ex_post') {
|
31 |
-
$isCuratedPost = ' (Curated Post)';
|
32 |
-
}
|
33 |
-
if (event.relay_primary_post_id > 0) {
|
34 |
-
$isRelayPost = ' (Retweet)';
|
35 |
-
}
|
36 |
-
$network_name = jQuery("<span>").text(event.author + $isRelayPost + $isCuratedPost).addClass("network-name").css("display", "block");
|
37 |
-
element.find(".fc-time").after($network_name);
|
38 |
-
element.html(element.html());
|
39 |
-
$parent = element.parent();
|
40 |
-
$header.append(element.find(".fc-content"));
|
41 |
-
element.append($header);
|
42 |
-
$body = jQuery("<div>").addClass("b2s-calendar-body");
|
43 |
-
$body.append(event.avatar);
|
44 |
-
$body.append(element.find(".fc-title"));
|
45 |
-
$body.append(jQuery("<br>"));
|
46 |
-
var $em = jQuery("<em>").css("padding-top", "5px").css("display", "block");
|
47 |
-
$em.append("<img src='" + b2s_plugin_url + "assets/images/portale/" + event.network_id + "_flat.png' style='height: 16px;width: 16px;display: inline-block;padding-right: 2px;padding-left: 2px;' />")
|
48 |
-
$em.append(event.network_name);
|
49 |
-
$em.append(jQuery("<span>").text(": " + event.profile));
|
50 |
-
$body.append($em);
|
51 |
-
element.append($body);
|
52 |
-
},
|
53 |
-
eventClick: function (calEvent, jsEvent, view) {
|
54 |
-
window.location.href = window.location.pathname + "?page=blog2social-calendar&rfd=true&b2s_id=" + calEvent.b2s_id;
|
55 |
-
}
|
56 |
-
});
|
57 |
-
|
58 |
-
drawBasic();
|
59 |
-
|
60 |
-
jQuery('#b2s-activity-date-picker').b2sdatepicker({
|
61 |
-
'autoClose': true,
|
62 |
-
'toggleSelected': true,
|
63 |
-
'minutesStep': 15
|
64 |
-
});
|
65 |
-
jQuery('#b2s-activity-date-picker').on("selectDate", function () {
|
66 |
-
setTimeout(drawBasic);
|
67 |
-
});
|
68 |
-
getWidgetContent();
|
69 |
-
});
|
70 |
-
|
71 |
-
/* EMail-Widget */
|
72 |
-
jQuery(document).on('click', '.b2s-mail-btn', function () {
|
73 |
-
if (isMail(jQuery('#b2s-mail-update-input').val())) {
|
74 |
-
jQuery.ajax({
|
75 |
-
url: ajaxurl,
|
76 |
-
type: "POST",
|
77 |
-
dataType: "json",
|
78 |
-
cache: false,
|
79 |
-
data: {
|
80 |
-
'action': 'b2s_post_mail_update',
|
81 |
-
'email': jQuery('#b2s-mail-update-input').val(),
|
82 |
-
'lang': jQuery('#user_lang').val()
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
jQuery('.b2s-mail-update-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
}
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
var
|
109 |
-
var
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
jQuery('.b2s-
|
130 |
-
}
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
widget.
|
154 |
-
|
155 |
-
|
156 |
-
}
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
var
|
198 |
-
var
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
}
|
280 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
/* Calendar-Widget */
|
4 |
+
jQuery(document).ready(function () {
|
5 |
+
jQuery('.b2s-widget-calendar').fullCalendar({
|
6 |
+
editable: false,
|
7 |
+
locale: b2s_calendar_locale,
|
8 |
+
eventLimit: 2,
|
9 |
+
contentHeight: 475,
|
10 |
+
timeFormat: 'H:mm',
|
11 |
+
customButtons: {
|
12 |
+
showall: {
|
13 |
+
text: 'show full calendar',
|
14 |
+
click: function () {
|
15 |
+
window.open('admin.php?page=blog2social-calendar', "_self");
|
16 |
+
}
|
17 |
+
}
|
18 |
+
},
|
19 |
+
header: {
|
20 |
+
left: 'title',
|
21 |
+
center: '',
|
22 |
+
right: 'showall today prev,next'
|
23 |
+
},
|
24 |
+
eventSources: ajaxurl + '?action=b2s_get_calendar_events&filter_network_auth=all&filter_network=all' + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
25 |
+
eventRender: function (event, element) {
|
26 |
+
show = true;
|
27 |
+
$header = jQuery("<div>").addClass("b2s-calendar-header");
|
28 |
+
$isRelayPost = '';
|
29 |
+
$isCuratedPost = '';
|
30 |
+
if (event.post_type == 'b2s_ex_post') {
|
31 |
+
$isCuratedPost = ' (Curated Post)';
|
32 |
+
}
|
33 |
+
if (event.relay_primary_post_id > 0) {
|
34 |
+
$isRelayPost = ' (Retweet)';
|
35 |
+
}
|
36 |
+
$network_name = jQuery("<span>").text(event.author + $isRelayPost + $isCuratedPost).addClass("network-name").css("display", "block");
|
37 |
+
element.find(".fc-time").after($network_name);
|
38 |
+
element.html(element.html());
|
39 |
+
$parent = element.parent();
|
40 |
+
$header.append(element.find(".fc-content"));
|
41 |
+
element.append($header);
|
42 |
+
$body = jQuery("<div>").addClass("b2s-calendar-body");
|
43 |
+
$body.append(event.avatar);
|
44 |
+
$body.append(element.find(".fc-title"));
|
45 |
+
$body.append(jQuery("<br>"));
|
46 |
+
var $em = jQuery("<em>").css("padding-top", "5px").css("display", "block");
|
47 |
+
$em.append("<img src='" + b2s_plugin_url + "assets/images/portale/" + event.network_id + "_flat.png' style='height: 16px;width: 16px;display: inline-block;padding-right: 2px;padding-left: 2px;' />")
|
48 |
+
$em.append(event.network_name);
|
49 |
+
$em.append(jQuery("<span>").text(": " + event.profile));
|
50 |
+
$body.append($em);
|
51 |
+
element.append($body);
|
52 |
+
},
|
53 |
+
eventClick: function (calEvent, jsEvent, view) {
|
54 |
+
window.location.href = window.location.pathname + "?page=blog2social-calendar&rfd=true&b2s_id=" + calEvent.b2s_id;
|
55 |
+
}
|
56 |
+
});
|
57 |
+
|
58 |
+
drawBasic();
|
59 |
+
|
60 |
+
jQuery('#b2s-activity-date-picker').b2sdatepicker({
|
61 |
+
'autoClose': true,
|
62 |
+
'toggleSelected': true,
|
63 |
+
'minutesStep': 15
|
64 |
+
});
|
65 |
+
jQuery('#b2s-activity-date-picker').on("selectDate", function () {
|
66 |
+
setTimeout(drawBasic);
|
67 |
+
});
|
68 |
+
getWidgetContent();
|
69 |
+
});
|
70 |
+
|
71 |
+
/* EMail-Widget */
|
72 |
+
jQuery(document).on('click', '.b2s-mail-btn', function () {
|
73 |
+
if (isMail(jQuery('#b2s-mail-update-input').val())) {
|
74 |
+
jQuery.ajax({
|
75 |
+
url: ajaxurl,
|
76 |
+
type: "POST",
|
77 |
+
dataType: "json",
|
78 |
+
cache: false,
|
79 |
+
data: {
|
80 |
+
'action': 'b2s_post_mail_update',
|
81 |
+
'email': jQuery('#b2s-mail-update-input').val(),
|
82 |
+
'lang': jQuery('#user_lang').val(),
|
83 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
84 |
+
}
|
85 |
+
});
|
86 |
+
jQuery('.b2s-mail-update-area').hide();
|
87 |
+
jQuery('.b2s-mail-update-success').show();
|
88 |
+
} else {
|
89 |
+
jQuery('#b2s-mail-update-input').addClass('error');
|
90 |
+
}
|
91 |
+
return false;
|
92 |
+
});
|
93 |
+
|
94 |
+
/*Post-Widget Position**/
|
95 |
+
jQuery(document).on('click', '.b2s-post-btn', function () {
|
96 |
+
var target = jQuery(".b2s-post");
|
97 |
+
if (target.length) {
|
98 |
+
jQuery('html,body').animate({
|
99 |
+
scrollTop: target.offset().top - 50
|
100 |
+
}, 1000);
|
101 |
+
}
|
102 |
+
});
|
103 |
+
|
104 |
+
/* Content-Widget */
|
105 |
+
function getWidgetContent() {
|
106 |
+
if (jQuery('.b2s-dashboard-multi-widget').length > 0)
|
107 |
+
{
|
108 |
+
var data = [];
|
109 |
+
var widget = jQuery('.b2s-dashboard-multi-widget');
|
110 |
+
var legacyMode = jQuery('#isLegacyMode').val();
|
111 |
+
if (legacyMode == "1") {
|
112 |
+
legacyMode = false; // loading is sync (stack)
|
113 |
+
} else {
|
114 |
+
legacyMode = true; // loading is async (parallel)
|
115 |
+
}
|
116 |
+
jQuery.ajax({
|
117 |
+
url: ajaxurl,
|
118 |
+
type: "GET",
|
119 |
+
dataType: "json",
|
120 |
+
async: legacyMode,
|
121 |
+
cache: false,
|
122 |
+
data: {
|
123 |
+
'action': 'b2s_get_multi_widget_content',
|
124 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
125 |
+
},
|
126 |
+
success: function (content) {
|
127 |
+
data = content;
|
128 |
+
if (data.error == 'nonce') {
|
129 |
+
jQuery('.b2s-nonce-check-fail').show();
|
130 |
+
} else {
|
131 |
+
widget.data('position', 0); //random: new Date().getSeconds() % data.length;
|
132 |
+
show();
|
133 |
+
setInterval(function () {
|
134 |
+
jQuery('.b2s-dashboard-multi-widget .glyphicon-chevron-left').trigger("click");
|
135 |
+
}, 30000);
|
136 |
+
}
|
137 |
+
}
|
138 |
+
});
|
139 |
+
|
140 |
+
jQuery('.b2s-dashboard-multi-widget .glyphicon-chevron-right').on("click", function () {
|
141 |
+
widget.data('position', widget.data('position') * 1 + 1);
|
142 |
+
show(widget);
|
143 |
+
});
|
144 |
+
jQuery('.b2s-dashboard-multi-widget .glyphicon-chevron-left').on("click", function () {
|
145 |
+
widget.data('position', widget.data('position') * 1 - 1);
|
146 |
+
show(widget);
|
147 |
+
});
|
148 |
+
function show()
|
149 |
+
{
|
150 |
+
if (widget.data('position') < 0)
|
151 |
+
{
|
152 |
+
widget.data('position', data.length - 1);
|
153 |
+
} else if (widget.data('position') > data.length - 1)
|
154 |
+
{
|
155 |
+
widget.data('position', 0);
|
156 |
+
}
|
157 |
+
var id = widget.data('position');
|
158 |
+
widget.find('.b2s-dashboard-multi-widget-content').html(data[id]['content']);
|
159 |
+
widget.find('.b2s-dashboard-h5').text(data[id]['title']);
|
160 |
+
}
|
161 |
+
}
|
162 |
+
}
|
163 |
+
|
164 |
+
/* Aktivity-Chart*/
|
165 |
+
function drawBasic() {
|
166 |
+
jQuery('#chart_div').html("<div class=\"b2s-loading-area\">\n" +
|
167 |
+
" <br>\n" +
|
168 |
+
" <div class=\"b2s-loader-impulse b2s-loader-impulse-md\"></div>\n" +
|
169 |
+
" <div class=\"clearfix\"></div>\n" +
|
170 |
+
" </div>");
|
171 |
+
var legacyMode = jQuery('#isLegacyMode').val();
|
172 |
+
if (legacyMode == "1") {
|
173 |
+
legacyMode = false; // loading is sync (stack)
|
174 |
+
} else {
|
175 |
+
legacyMode = true; // loading is async (parallel)
|
176 |
+
}
|
177 |
+
|
178 |
+
jQuery.ajax({
|
179 |
+
url: ajaxurl,
|
180 |
+
type: "GET",
|
181 |
+
dataType: "json",
|
182 |
+
async: legacyMode,
|
183 |
+
cache: false,
|
184 |
+
data: {
|
185 |
+
'action': 'b2s_get_stats',
|
186 |
+
'from': jQuery('#b2s-activity-date-picker').val(),
|
187 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
188 |
+
},
|
189 |
+
success: function (content) {
|
190 |
+
if (content.error == 'nonce') {
|
191 |
+
jQuery('.b2s-nonce-check-fail').show();
|
192 |
+
} else {
|
193 |
+
jQuery('#chart_div').html("<canvas id=\"b2s_activity_chart\" style=\"max-width:690px !important; max-height:320px !important;\"></canvas>");
|
194 |
+
var ctx = document.getElementById("b2s_activity_chart").getContext('2d');
|
195 |
+
var published = [];
|
196 |
+
var published_colors = [];
|
197 |
+
var scheduled = [];
|
198 |
+
var scheduled_colors = [];
|
199 |
+
function dateToYMD(date) {
|
200 |
+
var d = date.getUTCDate();
|
201 |
+
var m = date.getUTCMonth() + 1;
|
202 |
+
var y = date.getUTCFullYear();
|
203 |
+
return '' + y + '-' + (m <= 9 ? '0' + m : m) + '-' + (d <= 9 ? '0' + d : d);
|
204 |
+
}
|
205 |
+
|
206 |
+
function dateToDMY(date) {
|
207 |
+
var d = date.getUTCDate();
|
208 |
+
var m = date.getUTCMonth() + 1;
|
209 |
+
var y = date.getUTCFullYear();
|
210 |
+
return '' + (d <= 9 ? '0' + d : d) + '.' + (m <= 9 ? '0' + m : m) + '.' + y;
|
211 |
+
}
|
212 |
+
|
213 |
+
jQuery(Object.keys(content)).each(function () {
|
214 |
+
if (published.length > 0) {
|
215 |
+
var diff = parseInt((new Date(published[published.length - 1].x).getTime() - new Date(this).getTime()) / (24 * 3600 * 1000));
|
216 |
+
while (diff < -1) {
|
217 |
+
var date = new Date(published[published.length - 1].x.toString());
|
218 |
+
var newDate = new Date(date.setTime(date.getTime() + 86400000));
|
219 |
+
published.push({x: dateToYMD(newDate), y: 0});
|
220 |
+
published_colors.push('rgba(121,178,50,0.8)');
|
221 |
+
scheduled_colors.push('rgba(192,192,192,0.8)');
|
222 |
+
scheduled.push({x: dateToYMD(newDate), y: 0});
|
223 |
+
diff = parseInt((new Date(published[published.length - 1].x).getTime() - new Date(this).getTime()) / (24 * 3600 * 1000));
|
224 |
+
}
|
225 |
+
}
|
226 |
+
|
227 |
+
published.push({x: this.toString(), y: content[this][0]});
|
228 |
+
published_colors.push('rgba(121,178,50,0.8)');
|
229 |
+
scheduled_colors.push('rgba(192,192,192,0.8)');
|
230 |
+
scheduled.push({x: this.toString(), y: content[this][1]});
|
231 |
+
});
|
232 |
+
var unit = "day";
|
233 |
+
if (published.length > 100)
|
234 |
+
{
|
235 |
+
unit = "month";
|
236 |
+
}
|
237 |
+
|
238 |
+
var myChart = new Chart(ctx, {
|
239 |
+
type: 'bar',
|
240 |
+
data: {
|
241 |
+
datasets: [{
|
242 |
+
label: jQuery("#chart_div").data('text-published'),
|
243 |
+
data: published,
|
244 |
+
backgroundColor: published_colors
|
245 |
+
}, {
|
246 |
+
label: jQuery("#chart_div").data('text-scheduled'),
|
247 |
+
data: scheduled,
|
248 |
+
backgroundColor: scheduled_colors
|
249 |
+
}]
|
250 |
+
},
|
251 |
+
options: {
|
252 |
+
tooltips: {
|
253 |
+
callbacks: {
|
254 |
+
title: function (tooltipItem) {
|
255 |
+
if (jQuery("#chart_div").data('language') == "de") {
|
256 |
+
var date = new Date(tooltipItem[0].xLabel);
|
257 |
+
return dateToDMY(date);
|
258 |
+
} else {
|
259 |
+
return tooltipItem[0].xLabel
|
260 |
+
}
|
261 |
+
}
|
262 |
+
}
|
263 |
+
},
|
264 |
+
scales: {
|
265 |
+
xAxes: [{
|
266 |
+
type: "time",
|
267 |
+
time: {
|
268 |
+
unit: unit
|
269 |
+
}
|
270 |
+
}
|
271 |
+
],
|
272 |
+
yAxes: [{
|
273 |
+
ticks: {
|
274 |
+
beginAtZero: true
|
275 |
+
}
|
276 |
+
}]
|
277 |
+
}
|
278 |
+
}
|
279 |
+
});
|
280 |
+
}
|
281 |
+
}
|
282 |
+
});
|
283 |
+
}
|
284 |
+
|
285 |
+
|
286 |
+
function isMail(mail) {
|
287 |
+
var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
288 |
+
return regex.test(mail);
|
289 |
+
}
|
290 |
+
|
assets/js/b2s/support.js
CHANGED
@@ -1,132 +1,140 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
-
|
3 |
-
|
4 |
-
jQuery(document).ready(function () {
|
5 |
-
getWidgetFaq();
|
6 |
-
initTroubleshootTool();
|
7 |
-
if (window.location.href.match('b2s-support-system-check') != null) {
|
8 |
-
jQuery('.b2s-support-check-sytem').trigger('click');
|
9 |
-
}
|
10 |
-
if (window.location.href.match('b2s-support-sharing-debugger') != null) {
|
11 |
-
jQuery('.b2s-support-sharing-debugger').trigger('click');
|
12 |
-
}
|
13 |
-
jQuery(document).on('click', '.b2s-btn-sharing-debugger', function () {
|
14 |
-
var networkId = jQuery(this).attr('data-network-id');
|
15 |
-
if (networkId != 2) {
|
16 |
-
var url = jQuery(this).attr('b2s-url-query') + encodeURIComponent(jQuery('#b2s-debug-url[data-network-id="' + networkId + '"').val());
|
17 |
-
} else {
|
18 |
-
var url = jQuery(this).attr('b2s-url-query');
|
19 |
-
}
|
20 |
-
window.open(url, '_blank');
|
21 |
-
return false;
|
22 |
-
});
|
23 |
-
});
|
24 |
-
|
25 |
-
function getWidgetFaq() {
|
26 |
-
jQuery('.b2s-faq-area').show();
|
27 |
-
if (typeof wp.heartbeat == "undefined") {
|
28 |
-
jQuery('#b2s-heartbeat-fail').show();
|
29 |
-
}
|
30 |
-
jQuery.ajax({
|
31 |
-
url: ajaxurl,
|
32 |
-
type: "POST",
|
33 |
-
dataType: "json",
|
34 |
-
cache: false,
|
35 |
-
data: {
|
36 |
-
'action': 'b2s_get_faq_entries'
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
jQuery('.b2s-faq
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
jQuery.
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
jQuery('.b2s-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
jQuery('
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
jQuery('#b2s-debug-export').addClass('b2s-support-link-not-active');
|
117 |
-
}
|
118 |
-
jQuery('.b2s-loading-area').hide();
|
119 |
-
jQuery('#b2s-main-debug').show();
|
120 |
-
return true;
|
121 |
-
} else {
|
122 |
-
jQuery('.b2s-server-connection-fail').show();
|
123 |
-
jQuery('.b2s-loading-area').hide();
|
124 |
-
jQuery('#b2s-main-debug').show();
|
125 |
-
return false;
|
126 |
-
}
|
127 |
-
}
|
128 |
-
}
|
129 |
-
});
|
130 |
-
|
131 |
-
});
|
1 |
+
jQuery.noConflict();
|
2 |
+
|
3 |
+
|
4 |
+
jQuery(document).ready(function () {
|
5 |
+
getWidgetFaq();
|
6 |
+
initTroubleshootTool();
|
7 |
+
if (window.location.href.match('b2s-support-system-check') != null) {
|
8 |
+
jQuery('.b2s-support-check-sytem').trigger('click');
|
9 |
+
}
|
10 |
+
if (window.location.href.match('b2s-support-sharing-debugger') != null) {
|
11 |
+
jQuery('.b2s-support-sharing-debugger').trigger('click');
|
12 |
+
}
|
13 |
+
jQuery(document).on('click', '.b2s-btn-sharing-debugger', function () {
|
14 |
+
var networkId = jQuery(this).attr('data-network-id');
|
15 |
+
if (networkId != 2) {
|
16 |
+
var url = jQuery(this).attr('b2s-url-query') + encodeURIComponent(jQuery('#b2s-debug-url[data-network-id="' + networkId + '"').val());
|
17 |
+
} else {
|
18 |
+
var url = jQuery(this).attr('b2s-url-query');
|
19 |
+
}
|
20 |
+
window.open(url, '_blank');
|
21 |
+
return false;
|
22 |
+
});
|
23 |
+
});
|
24 |
+
|
25 |
+
function getWidgetFaq() {
|
26 |
+
jQuery('.b2s-faq-area').show();
|
27 |
+
if (typeof wp.heartbeat == "undefined") {
|
28 |
+
jQuery('#b2s-heartbeat-fail').show();
|
29 |
+
}
|
30 |
+
jQuery.ajax({
|
31 |
+
url: ajaxurl,
|
32 |
+
type: "POST",
|
33 |
+
dataType: "json",
|
34 |
+
cache: false,
|
35 |
+
data: {
|
36 |
+
'action': 'b2s_get_faq_entries',
|
37 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
38 |
+
},
|
39 |
+
error: function () {
|
40 |
+
jQuery('.b2s-faq-area').hide();
|
41 |
+
return false;
|
42 |
+
},
|
43 |
+
success: function (data) {
|
44 |
+
if (data.result == true) {
|
45 |
+
jQuery('.b2s-loading-area-faq').hide();
|
46 |
+
jQuery('.b2s-faq-content').html(data.content);
|
47 |
+
} else {
|
48 |
+
if (data.error == 'nonce') {
|
49 |
+
jQuery('.b2s-nonce-check-fail').show();
|
50 |
+
}
|
51 |
+
jQuery('.b2s-faq-area').hide();
|
52 |
+
}
|
53 |
+
}
|
54 |
+
});
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
+
function base64EncodeUnicode(str) {
|
59 |
+
var utf8Bytes = encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function (match, p1) {
|
60 |
+
return String.fromCharCode('0x' + p1);
|
61 |
+
});
|
62 |
+
|
63 |
+
return btoa(utf8Bytes);
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
+
function initTroubleshootTool() {
|
68 |
+
firstClick = false;
|
69 |
+
jQuery(document).on('click', '.b2s-support-check-sytem', function () {
|
70 |
+
if (!firstClick) {
|
71 |
+
jQuery('#b2s-reload-debug-btn').trigger('click');
|
72 |
+
firstClick = true;
|
73 |
+
}
|
74 |
+
});
|
75 |
+
|
76 |
+
jQuery(document).on('click', '#b2s-reload-debug-btn', function () {
|
77 |
+
jQuery('.b2s-server-connection-fail').hide();
|
78 |
+
jQuery('.b2s-support-fail').hide();
|
79 |
+
jQuery('#b2s-main-debug').hide();
|
80 |
+
jQuery('.b2s-loading-area').show();
|
81 |
+
|
82 |
+
jQuery.ajax({
|
83 |
+
url: ajaxurl,
|
84 |
+
type: "GET",
|
85 |
+
dataType: "json",
|
86 |
+
cache: false,
|
87 |
+
data: {'action': 'b2s_support_systemrequirements', 'b2s_security_nonce': jQuery('#b2s_security_nonce').val()},
|
88 |
+
error: function () {
|
89 |
+
jQuery('.b2s-server-connection-fail').show();
|
90 |
+
jQuery('.b2s-loading-area').hide();
|
91 |
+
jQuery('#b2s-main-debug').show();
|
92 |
+
return false;
|
93 |
+
},
|
94 |
+
success: function (data) {
|
95 |
+
if (typeof data === 'undefined' || data === null) {
|
96 |
+
jQuery('.b2s-server-connection-fail').show();
|
97 |
+
jQuery('.b2s-loading-area').hide();
|
98 |
+
jQuery('#b2s-main-debug').show();
|
99 |
+
return false;
|
100 |
+
} else if (data.result != true) {
|
101 |
+
if (data.error == 'nonce') {
|
102 |
+
jQuery('.b2s-nonce-check-fail').show();
|
103 |
+
}
|
104 |
+
if (data.error == 'admin') {
|
105 |
+
jQuery('.b2s-loading-area').hide();
|
106 |
+
jQuery('#b2s-support-no-admin').show();
|
107 |
+
} else {
|
108 |
+
jQuery('.b2s-server-connection-fail').show();
|
109 |
+
jQuery('.b2s-loading-area').hide();
|
110 |
+
jQuery('#b2s-main-debug').show();
|
111 |
+
return false;
|
112 |
+
}
|
113 |
+
} else {
|
114 |
+
if (typeof data.htmlData !== 'undefined') {
|
115 |
+
jQuery('#b2s-debug-htmlData').h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|