\
252 | //
\
253 | //
'+labels+' '+$("").html(data.title).text()+'
\
254 | //
\
255 | //
\
256 | //
\
257 | // \
258 | //
').data("issue", data);
259 | },
260 | label : function(data){
261 | return '
'+data.name+'';
262 | },
263 | bigIssue : function(data, showComment){
264 | // var commentLink = (data.comments != 0 && showComment) ? '' : "";
265 |
266 | // return $(''+commentLink).data("issue", data);
282 | },
283 | comment : function(data){
284 | // return '';
308 | }
309 | }
310 | })(jQuery);
--------------------------------------------------------------------------------
/source/layouts/layout.erb:
--------------------------------------------------------------------------------
1 | <%#
2 | Copyright 2008-2013 Concur Technologies, Inc.
3 |
4 | Licensed under the Apache License, Version 2.0 (the "License"); you may
5 | not use this file except in compliance with the License. You may obtain
6 | a copy of the License at
7 |
8 | http://www.apache.org/licenses/LICENSE-2.0
9 |
10 | Unless required by applicable law or agreed to in writing, software
11 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 | License for the specific language governing permissions and limitations
14 | under the License.
15 | %>
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
<%= current_page.data.title || "钉钉开放平台" %>
24 |
25 | <%= stylesheet_link_tag :screen, media: :screen %>
26 | <%= stylesheet_link_tag :print, media: :print %>
27 | <%= stylesheet_link_tag :nav, media: :nav %>
28 |
29 | <% if current_page.data.search %>
30 | <%= javascript_include_tag "all" %>
31 | <% else %>
32 | <%= javascript_include_tag "all_nosearch" %>
33 | <% end %>
34 |
35 |
38 |
39 |
40 |
56 |
57 |
58 |
59 |
60 |
61 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | 菜单
85 | <%= image_tag('navbar.png') %>
86 |
87 |
88 |
89 | <%= image_tag "logo.png" %>
90 |
91 |
92 | <% if current_page.data.toc_footers %>
93 |
98 | <% end %>
99 |
100 |
101 |
102 |
103 | <%= yield %>
104 | <% current_page.data.includes && current_page.data.includes.each do |include| %>
105 | <%= partial "includes/#{include}" %>
106 | <% end %>
107 |
108 |
110 |
111 |
--------------------------------------------------------------------------------
/source/stylesheets/_icon-font.scss:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'slate';
3 | src:font-url('slate.eot?-syv14m');
4 | src:font-url('slate.eot?#iefix-syv14m') format('embedded-opentype'),
5 | font-url('slate.woff2?-syv14m') format('woff2'),
6 | font-url('slate.woff?-syv14m') format('woff'),
7 | font-url('slate.ttf?-syv14m') format('truetype'),
8 | font-url('slate.svg?-syv14m#slate') format('svg');
9 | font-weight: normal;
10 | font-style: normal;
11 | }
12 |
13 | %icon {
14 | font-family: 'slate';
15 | speak: none;
16 | font-style: normal;
17 | font-weight: normal;
18 | font-variant: normal;
19 | text-transform: none;
20 | line-height: 1;
21 | }
22 |
23 | %icon-exclamation-sign {
24 | @extend %icon;
25 | content: "\e600";
26 | }
27 | %icon-info-sign {
28 | @extend %icon;
29 | content: "\e602";
30 | }
31 | %icon-ok-sign {
32 | @extend %icon;
33 | content: "\e606";
34 | }
35 | %icon-search {
36 | @extend %icon;
37 | content: "\e607";
38 | }
39 |
--------------------------------------------------------------------------------
/source/stylesheets/_nav.scss:
--------------------------------------------------------------------------------
1 | .navbar {
2 | width: 100%; }
3 |
4 | nav {
5 | display: -webkit-flex;
6 | display: -ms-flexbox;
7 | display: flex;
8 | position: absolute;
9 | top: 0;
10 | left: 0; }
11 | @media (min-width: 48em) {
12 | nav {
13 | -webkit-justify-content: space-between;
14 | -ms-flex-pack: justify;
15 | justify-content: space-between; } }
16 | nav .logo-container {
17 | width: 100%; }
18 | @media (min-width: 48em) {
19 | nav .logo-container {
20 | width: auto; } }
21 | nav .logo {
22 | height: 60px;
23 | width: 200px;
24 | margin: 0 auto;
25 | /* background-image: url("../images/logo.svg"); */
26 | background-repeat: no-repeat;
27 | background-position: center center;
28 | background-size: 100%;
29 | color: transparent;
30 | text-shadow: none;
31 | position: relative; }
32 | @media (min-width: 48em) {
33 | nav .logo {
34 | display: inline-block;
35 | margin: 6px 0 0 15px; } }
36 |
37 | nav li {
38 | list-style: none !important;
39 | color: #FFF;
40 | padding: 10px;
41 | font-size: 12px;
42 | letter-spacing: 1px;
43 | font-family: 'proxima-nova';
44 | font-weight: bold;
45 | text-transform: uppercase;
46 | text-decoration: none; }
47 |
48 | .caret {
49 | margin-top: 4px;
50 | margin-left: 4px;
51 | display: inline-block;
52 | width: 0;
53 | height: 0;
54 | vertical-align: top;
55 | border-top: 4px solid white;
56 | border-right: 4px solid transparent;
57 | border-left: 4px solid transparent;
58 | content: ""; }
59 |
60 | nav li > a:only-child:after {
61 | content: ''; }
62 |
63 | nav li {
64 | list-style: none !important;
65 | color: #FFF;
66 | padding: 10px;
67 | text-decoration: none; }
68 |
69 | nav ul {
70 | padding: 0;
71 | margin-top: 20px;
72 | display: none; }
73 | @media (min-width: 48em) {
74 | nav ul {
75 | display: block; } }
76 |
77 | nav ul li {
78 | list-style: none;
79 | float: left; }
80 |
81 | nav ul li a {
82 | color: #fff;
83 | padding: 10px;
84 | text-decoration: none; }
85 |
86 | nav ul li ul {
87 | display: none; }
88 |
89 | nav ul li:hover ul {
90 | position: absolute;
91 | z-index: 1000;
92 | margin-top: 10px;
93 | margin-left: 8px;
94 | list-style: none;
95 | display: list-item !important;
96 | border-radius: 2px;
97 | background-color: white;
98 | box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25); }
99 | nav ul li:hover ul:before {
100 | display: block;
101 | position: absolute;
102 | top: -5px;
103 | left: 12px;
104 | width: 10px;
105 | height: 10px;
106 | background-color: white;
107 | content: '';
108 | -webkit-transform: rotate(45deg);
109 | transform: rotate(45deg); }
110 |
111 | nav ul li ul li a {
112 | text-transform: none;
113 | letter-spacing: 0;
114 | color: #3e4552;
115 | font-family: 'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
116 | font-weight: 500; }
117 |
118 | nav ul li:hover ul li {
119 | padding-left: 0px;
120 | float: none; }
--------------------------------------------------------------------------------
/source/stylesheets/_normalize.css:
--------------------------------------------------------------------------------
1 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2 |
3 | /**
4 | * 1. Set default font family to sans-serif.
5 | * 2. Prevent iOS text size adjust after orientation change, without disabling
6 | * user zoom.
7 | */
8 |
9 | html {
10 | font-family: sans-serif; /* 1 */
11 | -ms-text-size-adjust: 100%; /* 2 */
12 | -webkit-text-size-adjust: 100%; /* 2 */
13 | }
14 |
15 | /**
16 | * Remove default margin.
17 | */
18 |
19 | body {
20 | margin: 0;
21 | }
22 |
23 | /* HTML5 display definitions
24 | ========================================================================== */
25 |
26 | /**
27 | * Correct `block` display not defined for any HTML5 element in IE 8/9.
28 | * Correct `block` display not defined for `details` or `summary` in IE 10/11
29 | * and Firefox.
30 | * Correct `block` display not defined for `main` in IE 11.
31 | */
32 |
33 | article,
34 | aside,
35 | details,
36 | figcaption,
37 | figure,
38 | footer,
39 | header,
40 | hgroup,
41 | main,
42 | menu,
43 | nav,
44 | section,
45 | summary {
46 | display: block;
47 | }
48 |
49 | /**
50 | * 1. Correct `inline-block` display not defined in IE 8/9.
51 | * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52 | */
53 |
54 | audio,
55 | canvas,
56 | progress,
57 | video {
58 | display: inline-block; /* 1 */
59 | vertical-align: baseline; /* 2 */
60 | }
61 |
62 | /**
63 | * Prevent modern browsers from displaying `audio` without controls.
64 | * Remove excess height in iOS 5 devices.
65 | */
66 |
67 | audio:not([controls]) {
68 | display: none;
69 | height: 0;
70 | }
71 |
72 | /**
73 | * Address `[hidden]` styling not present in IE 8/9/10.
74 | * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
75 | */
76 |
77 | [hidden],
78 | template {
79 | display: none;
80 | }
81 |
82 | /* Links
83 | ========================================================================== */
84 |
85 | /**
86 | * Remove the gray background color from active links in IE 10.
87 | */
88 |
89 | a {
90 | background-color: transparent;
91 | }
92 |
93 | /**
94 | * Improve readability when focused and also mouse hovered in all browsers.
95 | */
96 |
97 | a:active,
98 | a:hover {
99 | outline: 0;
100 | }
101 |
102 | /* Text-level semantics
103 | ========================================================================== */
104 |
105 | /**
106 | * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
107 | */
108 |
109 | abbr[title] {
110 | border-bottom: 1px dotted;
111 | }
112 |
113 | /**
114 | * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
115 | */
116 |
117 | b,
118 | strong {
119 | font-weight: bold;
120 | }
121 |
122 | /**
123 | * Address styling not present in Safari and Chrome.
124 | */
125 |
126 | dfn {
127 | font-style: italic;
128 | }
129 |
130 | /**
131 | * Address variable `h1` font-size and margin within `section` and `article`
132 | * contexts in Firefox 4+, Safari, and Chrome.
133 | */
134 |
135 | h1 {
136 | font-size: 2em;
137 | margin: 0.67em 0;
138 | }
139 |
140 | /**
141 | * Address styling not present in IE 8/9.
142 | */
143 |
144 | mark {
145 | background: #ff0;
146 | color: #000;
147 | }
148 |
149 | /**
150 | * Address inconsistent and variable font size in all browsers.
151 | */
152 |
153 | small {
154 | font-size: 80%;
155 | }
156 |
157 | /**
158 | * Prevent `sub` and `sup` affecting `line-height` in all browsers.
159 | */
160 |
161 | sub,
162 | sup {
163 | font-size: 75%;
164 | line-height: 0;
165 | position: relative;
166 | vertical-align: baseline;
167 | }
168 |
169 | sup {
170 | top: -0.5em;
171 | }
172 |
173 | sub {
174 | bottom: -0.25em;
175 | }
176 |
177 | /* Embedded content
178 | ========================================================================== */
179 |
180 | /**
181 | * Remove border when inside `a` element in IE 8/9/10.
182 | */
183 |
184 | img {
185 | border: 0;
186 | }
187 |
188 | /**
189 | * Correct overflow not hidden in IE 9/10/11.
190 | */
191 |
192 | svg:not(:root) {
193 | overflow: hidden;
194 | }
195 |
196 | /* Grouping content
197 | ========================================================================== */
198 |
199 | /**
200 | * Address margin not present in IE 8/9 and Safari.
201 | */
202 |
203 | figure {
204 | margin: 1em 40px;
205 | }
206 |
207 | /**
208 | * Address differences between Firefox and other browsers.
209 | */
210 |
211 | hr {
212 | -moz-box-sizing: content-box;
213 | box-sizing: content-box;
214 | height: 0;
215 | }
216 |
217 | /**
218 | * Contain overflow in all browsers.
219 | */
220 |
221 | pre {
222 | overflow: auto;
223 | }
224 |
225 | /**
226 | * Address odd `em`-unit font size rendering in all browsers.
227 | */
228 |
229 | code,
230 | kbd,
231 | pre,
232 | samp {
233 | font-family: monospace, monospace;
234 | font-size: 1em;
235 | }
236 |
237 | /* Forms
238 | ========================================================================== */
239 |
240 | /**
241 | * Known limitation: by default, Chrome and Safari on OS X allow very limited
242 | * styling of `select`, unless a `border` property is set.
243 | */
244 |
245 | /**
246 | * 1. Correct color not being inherited.
247 | * Known issue: affects color of disabled elements.
248 | * 2. Correct font properties not being inherited.
249 | * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250 | */
251 |
252 | button,
253 | input,
254 | optgroup,
255 | select,
256 | textarea {
257 | color: inherit; /* 1 */
258 | font: inherit; /* 2 */
259 | margin: 0; /* 3 */
260 | }
261 |
262 | /**
263 | * Address `overflow` set to `hidden` in IE 8/9/10/11.
264 | */
265 |
266 | button {
267 | overflow: visible;
268 | }
269 |
270 | /**
271 | * Address inconsistent `text-transform` inheritance for `button` and `select`.
272 | * All other form control elements do not inherit `text-transform` values.
273 | * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274 | * Correct `select` style inheritance in Firefox.
275 | */
276 |
277 | button,
278 | select {
279 | text-transform: none;
280 | }
281 |
282 | /**
283 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284 | * and `video` controls.
285 | * 2. Correct inability to style clickable `input` types in iOS.
286 | * 3. Improve usability and consistency of cursor style between image-type
287 | * `input` and others.
288 | */
289 |
290 | button,
291 | html input[type="button"], /* 1 */
292 | input[type="reset"],
293 | input[type="submit"] {
294 | -webkit-appearance: button; /* 2 */
295 | cursor: pointer; /* 3 */
296 | }
297 |
298 | /**
299 | * Re-set default cursor for disabled elements.
300 | */
301 |
302 | button[disabled],
303 | html input[disabled] {
304 | cursor: default;
305 | }
306 |
307 | /**
308 | * Remove inner padding and border in Firefox 4+.
309 | */
310 |
311 | button::-moz-focus-inner,
312 | input::-moz-focus-inner {
313 | border: 0;
314 | padding: 0;
315 | }
316 |
317 | /**
318 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in
319 | * the UA stylesheet.
320 | */
321 |
322 | input {
323 | line-height: normal;
324 | }
325 |
326 | /**
327 | * It's recommended that you don't attempt to style these elements.
328 | * Firefox's implementation doesn't respect box-sizing, padding, or width.
329 | *
330 | * 1. Address box sizing set to `content-box` in IE 8/9/10.
331 | * 2. Remove excess padding in IE 8/9/10.
332 | */
333 |
334 | input[type="checkbox"],
335 | input[type="radio"] {
336 | box-sizing: border-box; /* 1 */
337 | padding: 0; /* 2 */
338 | }
339 |
340 | /**
341 | * Fix the cursor style for Chrome's increment/decrement buttons. For certain
342 | * `font-size` values of the `input`, it causes the cursor style of the
343 | * decrement button to change from `default` to `text`.
344 | */
345 |
346 | input[type="number"]::-webkit-inner-spin-button,
347 | input[type="number"]::-webkit-outer-spin-button {
348 | height: auto;
349 | }
350 |
351 | /**
352 | * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353 | * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
354 | * (include `-moz` to future-proof).
355 | */
356 |
357 | input[type="search"] {
358 | -webkit-appearance: textfield; /* 1 */
359 | -moz-box-sizing: content-box;
360 | -webkit-box-sizing: content-box; /* 2 */
361 | box-sizing: content-box;
362 | }
363 |
364 | /**
365 | * Remove inner padding and search cancel button in Safari and Chrome on OS X.
366 | * Safari (but not Chrome) clips the cancel button when the search input has
367 | * padding (and `textfield` appearance).
368 | */
369 |
370 | input[type="search"]::-webkit-search-cancel-button,
371 | input[type="search"]::-webkit-search-decoration {
372 | -webkit-appearance: none;
373 | }
374 |
375 | /**
376 | * Define consistent border, margin, and padding.
377 | */
378 |
379 | fieldset {
380 | border: 1px solid #c0c0c0;
381 | margin: 0 2px;
382 | padding: 0.35em 0.625em 0.75em;
383 | }
384 |
385 | /**
386 | * 1. Correct `color` not being inherited in IE 8/9/10/11.
387 | * 2. Remove padding so people aren't caught out if they zero out fieldsets.
388 | */
389 |
390 | legend {
391 | border: 0; /* 1 */
392 | padding: 0; /* 2 */
393 | }
394 |
395 | /**
396 | * Remove default vertical scrollbar in IE 8/9/10/11.
397 | */
398 |
399 | textarea {
400 | overflow: auto;
401 | }
402 |
403 | /**
404 | * Don't inherit the `font-weight` (applied by a rule above).
405 | * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
406 | */
407 |
408 | optgroup {
409 | font-weight: bold;
410 | }
411 |
412 | /* Tables
413 | ========================================================================== */
414 |
415 | /**
416 | * Remove most spacing between table cells.
417 | */
418 |
419 | table {
420 | border-collapse: collapse;
421 | border-spacing: 0;
422 | }
423 |
424 | td,
425 | th {
426 | padding: 0;
427 | }
428 |
--------------------------------------------------------------------------------
/source/stylesheets/_syntax.scss.erb:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2008-2013 Concur Technologies, Inc.
3 |
4 | Licensed under the Apache License, Version 2.0 (the "License"); you may
5 | not use this file except in compliance with the License. You may obtain
6 | a copy of the License at
7 |
8 | http://www.apache.org/licenses/LICENSE-2.0
9 |
10 | Unless required by applicable law or agreed to in writing, software
11 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 | License for the specific language governing permissions and limitations
14 | under the License.
15 | */
16 |
17 | @import 'variables';
18 |
19 | <%= Rouge::Themes::Base16::Monokai.render(:scope => '.highlight') %>
20 |
21 | .highlight .c, .highlight .cm, .highlight .c1, .highlight .cs {
22 | color: #909090;
23 | }
24 |
25 | .highlight, .highlight .w {
26 | background-color: $code-bg;
27 | }
--------------------------------------------------------------------------------
/source/stylesheets/_variables.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright 2008-2013 Concur Technologies, Inc.
3 |
4 | Licensed under the Apache License, Version 2.0 (the "License"); you may
5 | not use this file except in compliance with the License. You may obtain
6 | a copy of the License at
7 |
8 | http://www.apache.org/licenses/LICENSE-2.0
9 |
10 | Unless required by applicable law or agreed to in writing, software
11 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 | License for the specific language governing permissions and limitations
14 | under the License.
15 | */
16 |
17 |
18 | ////////////////////////////////////////////////////////////////////////////////
19 | // CUSTOMIZE SLATE
20 | ////////////////////////////////////////////////////////////////////////////////
21 | // Use these settings to help adjust the appearance of Slate
22 |
23 |
24 | // BACKGROUND COLORS
25 | ////////////////////
26 | $nav-bg: #393939;
27 | $examples-bg: #393939;
28 | $code-bg: #292929;
29 | $code-annotation-bg: #1c1c1c;
30 | $nav-subitem-bg: #262626;
31 | $nav-active-bg: #2467af;
32 | $lang-select-border: #000;
33 | $lang-select-bg: #222;
34 | $lang-select-active-bg: $examples-bg; // feel free to change this to blue or something
35 | $lang-select-pressed-bg: #111; // color of language tab bg when mouse is pressed
36 | $main-bg: #eaf2f6;
37 | $aside-notice-bg: #8fbcd4;
38 | $aside-warning-bg: #c97a7e;
39 | $aside-success-bg: #6ac174;
40 | $search-notice-bg: #c97a7e;
41 |
42 |
43 | // TEXT COLORS
44 | ////////////////////
45 | $main-text: #333; // main content text color
46 | $nav-text: #fff;
47 | $nav-active-text: #fff;
48 | $lang-select-text: #fff; // color of unselected language tab text
49 | $lang-select-active-text: #fff; // color of selected language tab text
50 | $lang-select-pressed-text: #fff; // color of language tab text when mouse is pressed
51 |
52 |
53 | // SIZES
54 | ////////////////////
55 | $nav-width: 230px; // width of the navbar
56 | $examples-width: 30%; // portion of the screen taken up by code examples
57 | $logo-margin: 20px; // margin between nav items and logo, ignored if search is active
58 | $main-padding: 28px; // padding to left and right of content & examples
59 | $nav-padding: 15px; // padding to left and right of navbar
60 | $nav-v-padding: 10px; // padding used vertically around search boxes and results
61 | $nav-indent: 10px; // extra padding for ToC subitems
62 | $code-annotation-padding: 13px; // padding inside code annotations
63 | $h1-margin-bottom: 21px; // padding under the largest header tags
64 | $tablet-width: 930px; // min width before reverting to tablet size
65 | $phone-width: $tablet-width - $nav-width; // min width before reverting to mobile size
66 |
67 |
68 | // FONTS
69 | ////////////////////
70 | %default-font {
71 | font-family: 'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
72 | font-size: 14px;
73 | }
74 |
75 | %header-font {
76 | @extend %default-font;
77 | font-weight: bold;
78 | }
79 |
80 | %code-font {
81 | font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
82 | font-size: 12px;
83 | line-height: 1.5;
84 | }
85 |
86 |
87 | // OTHER
88 | ////////////////////
89 | $nav-active-shadow: #000;
90 | $nav-footer-border-color: #666;
91 | $nav-embossed-border-top: #000;
92 | $nav-embossed-border-bottom: #939393;
93 | $main-embossed-text-shadow: 0px 1px 0px #fff;
94 | $search-box-border-color: #666;
95 |
96 |
97 | ////////////////////////////////////////////////////////////////////////////////
98 | // INTERNAL
99 | ////////////////////////////////////////////////////////////////////////////////
100 | // These settings are probably best left alone.
101 |
102 | %break-words {
103 | word-break: break-all;
104 |
105 | /* Non standard for webkit */
106 | word-break: break-word;
107 |
108 | hyphens: auto;
109 | }
110 |
--------------------------------------------------------------------------------
/source/stylesheets/nav.scss:
--------------------------------------------------------------------------------
1 | .navbar {
2 | width: 100%; }
3 |
4 | nav {
5 | display: -webkit-flex;
6 | display: -ms-flexbox;
7 | display: flex;
8 | position: absolute;
9 | top: 0;
10 | left: 0; }
11 | @media (min-width: 48em) {
12 | nav {
13 | -webkit-justify-content: space-between;
14 | -ms-flex-pack: justify;
15 | justify-content: space-between; } }
16 | nav .logo-container {
17 | width: 100%; }
18 | @media (min-width: 48em) {
19 | nav .logo-container {
20 | width: auto; } }
21 | nav .logo {
22 | height: 60px;
23 | width: 200px;
24 | margin: 0 auto;
25 | /* background-image: url("../images/logo.svg"); */
26 | background-repeat: no-repeat;
27 | background-position: center center;
28 | background-size: 100%;
29 | color: #fff;
30 | font-size: 28px;
31 | line-height: 60px;
32 | text-shadow: none;
33 | position: relative; }
34 | @media (min-width: 48em) {
35 | nav .logo {
36 | display: inline-block;
37 | margin: 6px 0 0 15px; } }
38 |
39 | nav li {
40 | list-style: none !important;
41 | color: #FFF;
42 | padding: 10px;
43 | font-size: 12px;
44 | letter-spacing: 1px;
45 | font-family: 'proxima-nova';
46 | font-weight: bold;
47 | text-transform: uppercase;
48 | text-decoration: none; }
49 |
50 | .caret {
51 | margin-top: 4px;
52 | margin-left: 4px;
53 | display: inline-block;
54 | width: 0;
55 | height: 0;
56 | vertical-align: top;
57 | border-top: 4px solid white;
58 | border-right: 4px solid transparent;
59 | border-left: 4px solid transparent;
60 | content: ""; }
61 |
62 | nav li > a:only-child:after {
63 | content: ''; }
64 |
65 | nav li {
66 | list-style: none !important;
67 | color: #FFF;
68 | padding: 10px;
69 | text-decoration: none; }
70 |
71 | nav ul {
72 | padding: 0;
73 | margin-top: 20px;
74 | display: none; }
75 | @media (min-width: 48em) {
76 | nav ul {
77 | display: block; } }
78 |
79 | nav ul li {
80 | list-style: none;
81 | float: left; }
82 |
83 | nav ul li a {
84 | color: #fff;
85 | padding: 10px;
86 | text-decoration: none; }
87 |
88 | nav ul li ul {
89 | display: none; }
90 |
91 | nav ul li:hover ul {
92 | position: absolute;
93 | z-index: 1000;
94 | margin-top: 10px;
95 | margin-left: 8px;
96 | list-style: none;
97 | display: list-item !important;
98 | border-radius: 2px;
99 | background-color: white;
100 | box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25); }
101 | nav ul li:hover ul:before {
102 | display: block;
103 | position: absolute;
104 | top: -5px;
105 | left: 12px;
106 | width: 10px;
107 | height: 10px;
108 | background-color: white;
109 | content: '';
110 | -webkit-transform: rotate(45deg);
111 | transform: rotate(45deg); }
112 |
113 | nav ul li ul li a {
114 | text-transform: none;
115 | letter-spacing: 0;
116 | color: #3e4552;
117 | font-family: 'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
118 | font-weight: 500; }
119 |
120 | nav ul li:hover ul li {
121 | padding-left: 0px;
122 | float: none; }
--------------------------------------------------------------------------------
/source/stylesheets/print.css.scss:
--------------------------------------------------------------------------------
1 | @charset "utf-8";
2 | @import 'normalize';
3 | @import 'compass';
4 | @import 'variables';
5 | @import 'icon-font';
6 |
7 | /*
8 | Copyright 2008-2013 Concur Technologies, Inc.
9 |
10 | Licensed under the Apache License, Version 2.0 (the "License"); you may
11 | not use this file except in compliance with the License. You may obtain
12 | a copy of the License at
13 |
14 | http://www.apache.org/licenses/LICENSE-2.0
15 |
16 | Unless required by applicable law or agreed to in writing, software
17 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19 | License for the specific language governing permissions and limitations
20 | under the License.
21 | */
22 |
23 | $print-color: #999;
24 | $print-color-light: #ccc;
25 | $print-font-size: 12px;
26 |
27 | body {
28 | @extend %default-font;
29 | }
30 |
31 | .tocify, .toc-footer, .lang-selector, .search, #nav-button {
32 | display: none;
33 | }
34 |
35 | .tocify-wrapper>img {
36 | margin: 0 auto;
37 | display: block;
38 | }
39 |
40 | .content {
41 | font-size: 12px;
42 |
43 | pre, code {
44 | @extend %code-font;
45 | @extend %break-words;
46 | border: 1px solid $print-color;
47 | border-radius: 5px;
48 | font-size: 0.8em;
49 | }
50 |
51 | pre {
52 | padding: 1.3em;
53 | }
54 |
55 | code {
56 | padding: 0.2em;
57 | }
58 |
59 | table {
60 | border: 1px solid $print-color;
61 | tr {
62 | border-bottom: 1px solid $print-color;
63 | }
64 | td,th {
65 | padding: 0.7em;
66 | }
67 | }
68 |
69 | p {
70 | line-height: 1.5;
71 | }
72 |
73 | a {
74 | text-decoration: none;
75 | color: #000;
76 | }
77 |
78 | h1 {
79 | @extend %header-font;
80 | font-size: 2.5em;
81 | padding-top: 0.5em;
82 | padding-bottom: 0.5em;
83 | margin-top: 1em;
84 | margin-bottom: $h1-margin-bottom;
85 | border: 2px solid $print-color-light;
86 | border-width: 2px 0;
87 | text-align: center;
88 | }
89 |
90 | h2 {
91 | @extend %header-font;
92 | font-size: 1.8em;
93 | margin-top: 2em;
94 | border-top: 2px solid $print-color-light;
95 | padding-top: 0.8em;
96 | }
97 |
98 | h1+h2, h1+div+h2 {
99 | border-top: none;
100 | padding-top: 0;
101 | margin-top: 0;
102 | }
103 |
104 | h3, h4 {
105 | @extend %header-font;
106 | font-size: 0.8em;
107 | margin-top: 1.5em;
108 | margin-bottom: 0.8em;
109 | text-transform: uppercase;
110 | }
111 |
112 | h5, h6 {
113 | text-transform: uppercase;
114 | }
115 |
116 | aside {
117 | padding: 1em;
118 | border: 1px solid $print-color-light;
119 | border-radius: 5px;
120 | margin-top: 1.5em;
121 | margin-bottom: 1.5em;
122 | line-height: 1.6;
123 | }
124 |
125 | aside:before {
126 | vertical-align: middle;
127 | padding-right: 0.5em;
128 | font-size: 14px;
129 | }
130 |
131 | aside.notice:before {
132 | @extend %icon-info-sign;
133 | }
134 |
135 | aside.warning:before {
136 | @extend %icon-exclamation-sign;
137 | }
138 |
139 | aside.success:before {
140 | @extend %icon-ok-sign;
141 | }
142 | }
--------------------------------------------------------------------------------
/source/stylesheets/releasenotes.plugin.css:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | .milestoneContainer{
6 | padding-bottom:35px;
7 | margin-bottom:10px;
8 | }
9 | .milestoneContainer.separator{background:url("../images/lineseparator.png") bottom center no-repeat;}
10 | .milestoneContainer .cursor:hover{cursor:pointer;}
11 |
12 | h3.release {margin:0 0 2px 0;font-size:18px;}
13 | p.dateRelease{margin:0 0 10px 0; font-size:14px;}
14 |
15 | .milestoneContainer .body p{padding:5px 0; margin:0;}
16 | .milestoneContainer pre {
17 | display: block;
18 | padding: 8.5px;
19 | margin: 0 0 9px;
20 | font-size: 12.025px;
21 | line-height: 18px;
22 | background-color: whiteSmoke;
23 | border: 1px solid #CCC;
24 | border: 1px solid rgba(0, 0, 0, 0.15);
25 | -webkit-border-radius: 4px;
26 | -moz-border-radius: 4px;
27 | border-radius: 4px;
28 | white-space: pre;
29 | white-space: pre-wrap;
30 | word-break: break-all;
31 | word-wrap: break-word;
32 | }
33 | .milestoneContainer code, .milestoneContainer pre {
34 | padding: 0 3px 2px;
35 | font-family: Menlo,Monaco,"Courier New",monospace;
36 | font-size: 12px;
37 | color: #333;
38 | -webkit-border-radius: 3px;
39 | -moz-border-radius: 3px;
40 | border-radius: 3px;
41 | }
42 |
43 |
44 | /* BUTTONS */
45 | .milestoneContainer .btn {
46 | display: inline-block;
47 | text-decoration:none;
48 | *display: inline;
49 | /* IE7 inline-block hack */
50 |
51 | *zoom: 1;
52 | padding: 4px 10px 4px;
53 | margin-bottom: 0;
54 | font-size: 13px;
55 | line-height: 18px;
56 | color: #333333;
57 | text-align: center;
58 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
59 | vertical-align: middle;
60 | background-color: #f5f5f5;
61 | background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
62 | background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
63 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
64 | background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
65 | background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
66 | background-image: linear-gradient(top, #ffffff, #e6e6e6);
67 | background-repeat: repeat-x;
68 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
69 | border-color: #e6e6e6 #e6e6e6 #bfbfbf;
70 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
71 | filter: progid:dximagetransform.microsoft.gradient(enabled=false);
72 | border: 1px solid #cccccc;
73 | border-bottom-color: #b3b3b3;
74 | -webkit-border-radius: 4px;
75 | -moz-border-radius: 4px;
76 | border-radius: 4px;
77 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
78 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
79 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
80 | cursor: pointer;
81 | *margin-left: .3em;
82 | }
83 | .milestoneContainer .btn:hover,
84 | .milestoneContainer .btn:active{
85 | background-color: #e6e6e6;
86 | }
87 | .milestoneContainer .btn:active,
88 | .milestoneContainer .btn.active {
89 | background-color: #cccccc \9;
90 | }
91 | .milestoneContainer .btn:first-child {
92 | *margin-left: 0;
93 | }
94 | .milestoneContainer .btn:hover {
95 | color: #333333;
96 | text-decoration: none;
97 | background-color: #e6e6e6;
98 | background-position: 0 -15px;
99 | -webkit-transition: background-position 0.1s linear;
100 | -moz-transition: background-position 0.1s linear;
101 | -ms-transition: background-position 0.1s linear;
102 | -o-transition: background-position 0.1s linear;
103 | transition: background-position 0.1s linear;
104 | }
105 | .milestoneContainer .btn:focus {
106 | outline: thin dotted #333;
107 | outline: 5px auto -webkit-focus-ring-color;
108 | outline-offset: -2px;
109 | }
110 | .milestoneContainer .btn:active {
111 | background-image: none;
112 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
113 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
114 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
115 | background-color: #e6e6e6;
116 | background-color: #d9d9d9 \9;
117 | outline: 0;
118 | }
119 |
120 |
121 | /* ISSUE DESCRIPTION */
122 | .milestoneContainer .date{
123 | font-size:14px;
124 | }
125 | .milestoneContainer .cmeta .date {font-size:11px;}
126 | .milestoneContainer .issue{
127 | padding-bottom: 3px;
128 | }
129 | .milestoneContainer .issues{
130 | color:#555;
131 | }
132 | .milestoneContainer .issueTitle{
133 | line-height:24px;
134 | font-size:13px;
135 | }
136 | .milestoneContainer .label{
137 | display:inline-block;
138 | font-family: arial;
139 | font-weight:normal;
140 | line-height: 13px;
141 | color: white;
142 | vertical-align: middle;
143 | white-space: nowrap;
144 | font-size:12px;
145 | color:#fff;
146 | text-shadow: 1px 1px 1px #333;
147 | padding:3px 4px;
148 | border-radius:5px;
149 | margin-top: -6px;
150 | margin-right:5px;
151 | }
152 |
153 |
154 | .milestoneContainer .btnComments{
155 | margin:-8px 0 15px 63px ;
156 | }
157 |
158 | .milestoneContainer .hidden{display:none;}
159 | .milestoneContainer .content-body{
160 | padding-top:10px;
161 | margin-top:15px;
162 | border-top:1px solid #CACACA;
163 | }
164 | .milestoneContainer .normal-comment .content-body{
165 | padding-top: 0px;
166 | margin-top: 0px;
167 | border-top: none;
168 | }
169 |
170 | /* COMMENTS */
171 |
172 | .milestoneContainer .new-comments .bubble .comment { margin: 0 }
173 | .milestoneContainer .view-pull-request .new-comments .bubble .commit-comment { margin-top: 3px }
174 | .milestoneContainer .new-comments .bubble .commit-comment.thread-start { margin-top: 0 }
175 | .milestoneContainer .bubble .comment-form { margin: 0 }
176 |
177 | .milestoneContainer .avatar-bubble {
178 | margin: 20px 0;
179 | padding-left: 60px;
180 | background: url('../images/bubble-arrow.png') 51px 20px no-repeat;
181 | }
182 | .milestoneContainer .avatar-bubble>.avatar {
183 | position: relative;
184 | float: left;
185 | margin-left: -60px;
186 | }
187 | .bubble {
188 | padding: 3px;
189 | background: #eee;
190 | border-radius: 3px;
191 | }
192 | .milestoneContainer .avatar-bubble .form-actions { margin-top: 10px }
193 | .milestoneContainer .bubble .file-box { margin-bottom: 0 }
194 |
195 | .milestoneContainer .avatar img { border-radius: 3px }
196 |
197 | .milestoneContainer .starting-comment {
198 | margin: 0;
199 | background: #fff;
200 | padding:0px;
201 | border: 1px solid #CACACA;
202 | border-radius: 2px;
203 | }
204 | .milestoneContainer .normal-comment .starting-comment{ padding:10px;}
205 | .milestoneContainer .starting-comment .content-title { border-bottom: none }
206 | .milestoneContainer .starting-comment h2.content-title {
207 | margin: 0 0 -6px;
208 | font-size: 20px;
209 | font-weight: bold;
210 | }
211 | .milestoneContainer .starting-comment .body p.author {
212 | margin: 0px 0 0;
213 | color: #666;
214 | font-size: 12px;
215 | }
216 | .milestoneContainer .starting-comment p.author a {
217 | font-weight: bold;
218 | color: #666;
219 | }
220 | .milestoneContainer .new-comments .starting-comment .body {
221 | padding: 0 10px;
222 | font-size: 13px;
223 | background: #fff;
224 | }
225 | .milestoneContainer .comment .cmeta {
226 | height: 33px;
227 | padding: 0 10px;
228 | border-bottom: 1px solid #CCC;
229 | background-color: #F8F8F8;
230 | background-image: -moz-linear-gradient(#F8F8F8,#E1E1E1);
231 | background-image: -webkit-linear-gradient(#F8F8F8,#E1E1E1);
232 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8',endColorstr='#e1e1e1',GradientType=0)";
233 | }
234 | .milestoneContainer .comment .cmeta p.author {
235 | margin: 0;
236 | float: left;
237 | max-width: 600px;
238 | font-size: 12px;
239 | height: 33px;
240 | line-height: 33px;
241 | text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
242 | overflow: hidden;
243 | white-space: nowrap;
244 | text-overflow: ellipsis;
245 | }
246 |
247 | .milestoneContainer .comment .cmeta .icon {
248 | display: inline-block;
249 | margin-top: -2px;
250 | margin-left: 0px;
251 | width: 16px;
252 | height: 16px;
253 | vertical-align: middle;
254 | background: url('../images/icons.png') 0 0 no-repeat;
255 | }
256 | .milestoneContainer .comment .cmeta p.author a {
257 | color: #222;
258 | }
259 |
260 | .milestoneContainer .comment .cmeta p.info {
261 | float: right;
262 | margin: 0;
263 | font-size: 11px;
264 | height: 33px;
265 | line-height: 33px;
266 | }
267 |
268 | .milestoneContainer .comment > .body {
269 | position: relative;
270 | padding: 10px;
271 | color: #333;
272 | font-size: 12px;
273 | background: #FBFBFB;
274 | }
--------------------------------------------------------------------------------
/source/stylesheets/style.css:
--------------------------------------------------------------------------------
1 | body{
2 | background:url(../images/bg.jpg);
3 | text-shadow: 1px 1px 0px white;
4 | margin: 0;
5 | font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
6 | font-size: 13px;
7 | line-height: 18px;
8 | color: #333;
9 | }
10 |
11 | h1, h2, h3, h4, h5, h6 {
12 | margin: 0;
13 | font-family: inherit;
14 | font-weight: bold;
15 | color: inherit;
16 | text-rendering: optimizelegibility;
17 | }
18 | h1 {
19 | font-size: 30px;
20 | line-height: 36px;
21 | padding: 50px 0 20px;
22 | }
23 | #websiteContainer{
24 | background:url(../images/bg2.png) top left no-repeat;
25 | height: 529px;
26 | }
27 | .containerRelease{
28 | width:780px;
29 | margin-left:230px;
30 | }
31 |
--------------------------------------------------------------------------------
/stylesheets/nav.css:
--------------------------------------------------------------------------------
1 | .navbar{width:100%}nav{display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;top:0;left:0}@media (min-width: 48em){nav{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}}nav .logo-container{width:100%}@media (min-width: 48em){nav .logo-container{width:auto}}nav .logo{height:60px;width:200px;margin:0 auto;background-repeat:no-repeat;background-position:center center;background-size:100%;color:#fff;font-size:28px;line-height:60px;text-shadow:none;position:relative}@media (min-width: 48em){nav .logo{display:inline-block;margin:6px 0 0 15px}}nav li{list-style:none !important;color:#FFF;padding:10px;font-size:12px;letter-spacing:1px;font-family:'proxima-nova';font-weight:bold;text-transform:uppercase;text-decoration:none}.caret{margin-top:4px;margin-left:4px;display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid white;border-right:4px solid transparent;border-left:4px solid transparent;content:""}nav li>a:only-child:after{content:''}nav li{list-style:none !important;color:#FFF;padding:10px;text-decoration:none}nav ul{padding:0;margin-top:20px;display:none}@media (min-width: 48em){nav ul{display:block}}nav ul li{list-style:none;float:left}nav ul li a{color:#fff;padding:10px;text-decoration:none}nav ul li ul{display:none}nav ul li:hover ul{position:absolute;z-index:1000;margin-top:10px;margin-left:8px;list-style:none;display:list-item !important;border-radius:2px;background-color:white;box-shadow:0px 2px 3px rgba(0,0,0,0.25)}nav ul li:hover ul:before{display:block;position:absolute;top:-5px;left:12px;width:10px;height:10px;background-color:white;content:'';-webkit-transform:rotate(45deg);transform:rotate(45deg)}nav ul li ul li a{text-transform:none;letter-spacing:0;color:#3e4552;font-family:'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';font-weight:500}nav ul li:hover ul li{padding-left:0px;float:none}
--------------------------------------------------------------------------------
/stylesheets/print.css:
--------------------------------------------------------------------------------
1 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.content h1,.content h2,.content h3,.content h4,body{font-family:'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';font-size:14px}.content h1,.content h2,.content h3,.content h4{font-weight:bold}.content pre,.content code{font-family:Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;font-size:12px;line-height:1.5}.content pre,.content code{word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}@font-face{font-family:'slate';src:url("../fonts/slate.eot?-syv14m");src:url("../fonts/slate.eot?#iefix-syv14m") format("embedded-opentype"),url("../fonts/slate.woff2?-syv14m") format("woff2"),url("../fonts/slate.woff?-syv14m") format("woff"),url("../fonts/slate.ttf?-syv14m") format("truetype"),url("../fonts/slate.svg?-syv14m#slate") format("svg");font-weight:normal;font-style:normal}.content aside.warning:before,.content aside.notice:before,.content aside.success:before{font-family:'slate';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1}.content aside.warning:before{content:"\e600"}.content aside.notice:before{content:"\e602"}.content aside.success:before{content:"\e606"}.tocify,.toc-footer,.lang-selector,.search,#nav-button{display:none}.tocify-wrapper>img{margin:0 auto;display:block}.content{font-size:12px}.content pre,.content code{border:1px solid #999;border-radius:5px;font-size:0.8em}.content pre{padding:1.3em}.content code{padding:0.2em}.content table{border:1px solid #999}.content table tr{border-bottom:1px solid #999}.content table td,.content table th{padding:0.7em}.content p{line-height:1.5}.content a{text-decoration:none;color:#000}.content h1{font-size:2.5em;padding-top:0.5em;padding-bottom:0.5em;margin-top:1em;margin-bottom:21px;border:2px solid #ccc;border-width:2px 0;text-align:center}.content h2{font-size:1.8em;margin-top:2em;border-top:2px solid #ccc;padding-top:0.8em}.content h1+h2,.content h1+div+h2{border-top:none;padding-top:0;margin-top:0}.content h3,.content h4{font-size:0.8em;margin-top:1.5em;margin-bottom:0.8em;text-transform:uppercase}.content h5,.content h6{text-transform:uppercase}.content aside{padding:1em;border:1px solid #ccc;border-radius:5px;margin-top:1.5em;margin-bottom:1.5em;line-height:1.6}.content aside:before{vertical-align:middle;padding-right:0.5em;font-size:14px}
--------------------------------------------------------------------------------
/stylesheets/releasenotes.plugin.css:
--------------------------------------------------------------------------------
1 | .milestoneContainer{padding-bottom:35px;margin-bottom:10px}.milestoneContainer.separator{background:url("../images/lineseparator.png") bottom center no-repeat}.milestoneContainer .cursor:hover{cursor:pointer}h3.release{margin:0 0 2px 0;font-size:18px}p.dateRelease{margin:0 0 10px 0;font-size:14px}.milestoneContainer .body p{padding:5px 0;margin:0}.milestoneContainer pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:whiteSmoke;border:1px solid #CCC;border:1px solid rgba(0,0,0,0.15);border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word}.milestoneContainer code,.milestoneContainer pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333;border-radius:3px}.milestoneContainer .btn{display:inline-block;text-decoration:none;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;background-color:#f5f5f5;background-image:linear-gradient(top, #fff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);-webkit-filter:progid:dximagetransform.microsoft.gradient(enabled=false);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;border-radius:4px;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);cursor:pointer;*margin-left:.3em}.milestoneContainer .btn:hover,.milestoneContainer .btn:active{background-color:#e6e6e6}.milestoneContainer .btn:active,.milestoneContainer .btn.active{background-color:#cccccc \9}.milestoneContainer .btn:first-child{*margin-left:0}.milestoneContainer .btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;transition:background-position 0.1s linear}.milestoneContainer .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.milestoneContainer .btn:active{background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0}.milestoneContainer .date{font-size:14px}.milestoneContainer .cmeta .date{font-size:11px}.milestoneContainer .issue{padding-bottom:3px}.milestoneContainer .issues{color:#555}.milestoneContainer .issueTitle{line-height:24px;font-size:13px}.milestoneContainer .label{display:inline-block;font-family:arial;font-weight:normal;line-height:13px;color:white;vertical-align:middle;white-space:nowrap;font-size:12px;color:#fff;text-shadow:1px 1px 1px #333;padding:3px 4px;border-radius:5px;margin-top:-6px;margin-right:5px}.milestoneContainer .btnComments{margin:-8px 0 15px 63px}.milestoneContainer .hidden{display:none}.milestoneContainer .content-body{padding-top:10px;margin-top:15px;border-top:1px solid #CACACA}.milestoneContainer .normal-comment .content-body{padding-top:0px;margin-top:0px;border-top:none}.milestoneContainer .new-comments .bubble .comment{margin:0}.milestoneContainer .view-pull-request .new-comments .bubble .commit-comment{margin-top:3px}.milestoneContainer .new-comments .bubble .commit-comment.thread-start{margin-top:0}.milestoneContainer .bubble .comment-form{margin:0}.milestoneContainer .avatar-bubble{margin:20px 0;padding-left:60px;background:url('../images/bubble-arrow.png') 51px 20px no-repeat}.milestoneContainer .avatar-bubble>.avatar{position:relative;float:left;margin-left:-60px}.bubble{padding:3px;background:#eee;border-radius:3px}.milestoneContainer .avatar-bubble .form-actions{margin-top:10px}.milestoneContainer .bubble .file-box{margin-bottom:0}.milestoneContainer .avatar img{border-radius:3px}.milestoneContainer .starting-comment{margin:0;background:#fff;padding:0px;border:1px solid #CACACA;border-radius:2px}.milestoneContainer .normal-comment .starting-comment{padding:10px}.milestoneContainer .starting-comment .content-title{border-bottom:none}.milestoneContainer .starting-comment h2.content-title{margin:0 0 -6px;font-size:20px;font-weight:bold}.milestoneContainer .starting-comment .body p.author{margin:0px 0 0;color:#666;font-size:12px}.milestoneContainer .starting-comment p.author a{font-weight:bold;color:#666}.milestoneContainer .new-comments .starting-comment .body{padding:0 10px;font-size:13px;background:#fff}.milestoneContainer .comment .cmeta{height:33px;padding:0 10px;border-bottom:1px solid #CCC;background-color:#F8F8F8;background-image:-webkit-linear-gradient(#F8F8F8, #E1E1E1);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8',endColorstr='#e1e1e1',GradientType=0)"}.milestoneContainer .comment .cmeta p.author{margin:0;float:left;max-width:600px;font-size:12px;height:33px;line-height:33px;text-shadow:1px 1px 0 rgba(255,255,255,0.7);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.milestoneContainer .comment .cmeta .icon{display:inline-block;margin-top:-2px;margin-left:0px;width:16px;height:16px;vertical-align:middle;background:url('../images/icons.png') 0 0 no-repeat}.milestoneContainer .comment .cmeta p.author a{color:#222}.milestoneContainer .comment .cmeta p.info{float:right;margin:0;font-size:11px;height:33px;line-height:33px}.milestoneContainer .comment>.body{position:relative;padding:10px;color:#333;font-size:12px;background:#FBFBFB}
--------------------------------------------------------------------------------
/stylesheets/screen.css:
--------------------------------------------------------------------------------
1 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6,html,body{font-family:'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';font-size:14px}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{font-weight:bold}.content code,.content pre{font-family:Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;font-size:12px;line-height:1.5}.content code{word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.highlight table td{padding:5px}.highlight table pre{margin:0}.highlight,.highlight .w{color:#f8f8f2;background-color:#272822}.highlight .err{color:#151515;background-color:#ac4142}.highlight .c,.highlight .cd,.highlight .cm,.highlight .c1,.highlight .cs{color:#505050}.highlight .cp{color:#f4bf75}.highlight .nt{color:#f4bf75}.highlight .o,.highlight .ow{color:#d0d0d0}.highlight .p,.highlight .pi{color:#d0d0d0}.highlight .gi{color:#90a959}.highlight .gd{color:#ac4142}.highlight .gh{color:#6a9fb5;background-color:#151515;font-weight:bold}.highlight .k,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kv{color:#aa759f}.highlight .kc{color:#d28445}.highlight .kt{color:#d28445}.highlight .kd{color:#d28445}.highlight .s,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .sh,.highlight .sx,.highlight .s1{color:#90a959}.highlight .sr{color:#75b5aa}.highlight .si{color:#8f5536}.highlight .se{color:#8f5536}.highlight .nn{color:#f4bf75}.highlight .nc{color:#f4bf75}.highlight .no{color:#f4bf75}.highlight .na{color:#6a9fb5}.highlight .m,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .il,.highlight .mo,.highlight .mb,.highlight .mx{color:#90a959}.highlight .ss{color:#90a959}.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs{color:#909090}.highlight,.highlight .w{background-color:#292929}@font-face{font-family:'slate';src:url("../fonts/slate.eot?-syv14m");src:url("../fonts/slate.eot?#iefix-syv14m") format("embedded-opentype"),url("../fonts/slate.woff2?-syv14m") format("woff2"),url("../fonts/slate.woff?-syv14m") format("woff"),url("../fonts/slate.ttf?-syv14m") format("truetype"),url("../fonts/slate.svg?-syv14m#slate") format("svg");font-weight:normal;font-style:normal}.content aside.warning:before,.content aside.notice:before,.content aside.success:before,.tocify-wrapper>.search:before{font-family:'slate';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1}.content aside.warning:before{content:"\e600"}.content aside.notice:before{content:"\e602"}.content aside.success:before{content:"\e606"}.tocify-wrapper>.search:before{content:"\e607"}.navbar{width:100%}nav{display:-webkit-flex;display:-ms-flexbox;display:flex;position:absolute;top:0;left:0}@media (min-width: 48em){nav{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}}nav .logo-container{width:100%}@media (min-width: 48em){nav .logo-container{width:auto}}nav .logo{height:60px;width:200px;margin:0 auto;background-repeat:no-repeat;background-position:center center;background-size:100%;color:#fff;font-size:28px;line-height:60px;text-shadow:none;position:relative}@media (min-width: 48em){nav .logo{display:inline-block;margin:6px 0 0 15px}}nav li{list-style:none !important;color:#FFF;padding:10px;font-size:12px;letter-spacing:1px;font-family:'proxima-nova';font-weight:bold;text-transform:uppercase;text-decoration:none}.caret{margin-top:4px;margin-left:4px;display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid white;border-right:4px solid transparent;border-left:4px solid transparent;content:""}nav li>a:only-child:after{content:''}nav li{list-style:none !important;color:#FFF;padding:10px;text-decoration:none}nav ul{padding:0;margin-top:20px;display:none}@media (min-width: 48em){nav ul{display:block}}nav ul li{list-style:none;float:left}nav ul li a{color:#fff;padding:10px;text-decoration:none}nav ul li ul{display:none}nav ul li:hover ul{position:absolute;z-index:1000;margin-top:10px;margin-left:8px;list-style:none;display:list-item !important;border-radius:2px;background-color:white;box-shadow:0px 2px 3px rgba(0,0,0,0.25)}nav ul li:hover ul:before{display:block;position:absolute;top:-5px;left:12px;width:10px;height:10px;background-color:white;content:'';-webkit-transform:rotate(45deg);transform:rotate(45deg)}nav ul li ul li a{text-transform:none;letter-spacing:0;color:#3e4552;font-family:'Microsoft YaHei','Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';font-weight:500}nav ul li:hover ul li{padding-left:0px;float:none}html,body{color:#333;padding:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#eaf2f6;height:100%;-webkit-text-size-adjust:none}#toc>ul>li>a>span{float:right;background-color:#2484FF;border-radius:40px;width:20px}.tocify-wrapper{padding-top:5px;transition:left 0.3s ease-in-out;overflow-y:auto;overflow-x:hidden;position:fixed;z-index:30;top:0;left:0;bottom:0;width:230px;background-color:#393939;font-size:14px;font-weight:bold}.tocify-wrapper .lang-selector{display:none}.tocify-wrapper .lang-selector a{padding-top:0.5em;padding-bottom:0.5em}.tocify-wrapper>img{display:block}.tocify-wrapper>.search{position:relative}.tocify-wrapper>.search input{background:#393939;border-width:0 0 1px 0;border-color:#666;padding:6px 0 6px 20px;box-sizing:border-box;margin:10px 15px;width:200px;outline:none;color:#fff;border-radius:0}.tocify-wrapper>.search:before{position:absolute;top:17px;left:15px;color:#fff}.tocify-wrapper img+.tocify{margin-top:20px}.tocify-wrapper .search-results{margin-top:0;box-sizing:border-box;height:0;overflow-y:auto;overflow-x:hidden;transition-property:height, margin;transition-duration:180ms;transition-timing-function:ease-in-out;background:linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 8px),linear-gradient(to top, rgba(0,0,0,0.2), transparent 8px),linear-gradient(to bottom, #000, transparent 1.5px),linear-gradient(to top, #939393, rgba(147,147,147,0) 1.5px),#262626}.tocify-wrapper .search-results.visible{height:30%;margin-bottom:1em}.tocify-wrapper .search-results li{margin:1em 15px;line-height:1}.tocify-wrapper .search-results a{color:#fff;text-decoration:none}.tocify-wrapper .search-results a:hover{text-decoration:underline}.tocify-wrapper .tocify-item>a,.tocify-wrapper .toc-footer li{padding:0 15px 0 15px;display:block;overflow-x:hidden;white-space:nowrap;text-overflow:ellipsis}.tocify-wrapper ul,.tocify-wrapper li{list-style:none;margin:0;padding:0;line-height:28px}.tocify-wrapper li{color:#fff;transition-property:background;transition-timing-function:linear;transition-duration:230ms}.tocify-wrapper .tocify-focus{box-shadow:0px 1px 0px #000;background-color:#2467af;color:#fff}.tocify-wrapper .tocify-subheader{display:none;background-color:#262626;font-weight:500;background:linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 8px),linear-gradient(to top, rgba(0,0,0,0.2), transparent 8px),linear-gradient(to bottom, #000, transparent 1.5px),linear-gradient(to top, #939393, rgba(147,147,147,0) 1.5px),#262626}.tocify-wrapper .tocify-subheader .tocify-item>a{padding-left:25px;font-size:13px}.tocify-wrapper .tocify-subheader>li:last-child{box-shadow:none}.tocify-wrapper .tocify-subheader .tocify-subheader .tocify-item>a{padding-left:35px;font-size:13px}.tocify-wrapper .toc-footer{padding:1em 0;margin-top:1em;border-top:1px dashed #666}.tocify-wrapper .toc-footer li,.tocify-wrapper .toc-footer a{color:#fff;text-decoration:none}.tocify-wrapper .toc-footer a:hover{text-decoration:underline}.tocify-wrapper .toc-footer li{font-size:0.8em;line-height:1.7;text-decoration:none}#nav-button{padding:0 1.5em 5em 0;display:none;position:fixed;top:0;left:0;z-index:100;color:#000;text-decoration:none;font-weight:bold;opacity:0.7;line-height:16px;transition:left 0.3s ease-in-out}#nav-button span{display:block;padding:6px 6px 6px;background-color:rgba(234,242,246,0.7);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:rotate(-90deg) translate(-100%, 0);transform:rotate(-90deg) translate(-100%, 0);border-radius:0 0 0 5px}#nav-button img{height:16px;vertical-align:bottom}#nav-button:hover{opacity:1}#nav-button.open{left:230px}.page-wrapper{margin-left:230px;position:relative;z-index:10;background-color:#eaf2f6;min-height:100%;padding-bottom:1px}.page-wrapper .dark-box{width:30%;background-color:#393939;position:absolute;right:0;top:0;bottom:0}.page-wrapper .lang-selector{position:fixed;z-index:50;border-bottom:5px solid #393939}.lang-selector{background-color:#222;width:100%;font-weight:bold}.lang-selector a{display:block;float:left;color:#fff;text-decoration:none;padding:0 10px;line-height:30px;outline:0}.lang-selector a:active,.lang-selector a:focus{background-color:#111;color:#fff}.lang-selector a.active{background-color:#393939;color:#fff}.lang-selector:after{content:'';clear:both;display:block}.content{position:relative;z-index:30;margin-top:0px}.content:after{content:'';display:block;clear:both}.content>h1,.content>h2,.content>h3,.content>h4,.content>h5,.content>h6,.content>p,.content>table,.content>ul,.content>ol,.content>aside,.content>dl{margin-right:30%;padding:0 28px;box-sizing:border-box;display:block;text-shadow:0px 1px 0px #fff}.content>ul,.content>ol{padding-left:43px}.content>h1,.content>h2,.content>div{clear:both}.content h1{font-size:24px;padding-top:0.83em;padding-bottom:0.83em;border-bottom:1px solid #ccc;margin-bottom:2em;margin-top:2em;border-top:1px solid #ddd;background-image:linear-gradient(to bottom, #fff, #f9f9f9)}.content h1:first-child,.content div:first-child+h1{border-top-width:0;margin-top:0}.content h2{font-size:20px;margin-top:0.8em;margin-bottom:0.8em;border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding-top:0.75em;padding-bottom:0.75em;background-image:linear-gradient(to bottom, #fff, #f9f9f9)}.content h1+h2,.content h1+div+h2{margin-top:-21px;border-top:none}.content h3,.content h4,.content h5,.content h6{font-size:16px;margin-top:1em;margin-bottom:0.8em}.content h4,.content h5,.content h6{font-size:14px}.content h5,.content h6{font-size:13px}.content hr{margin:2em 0;border-top:2px solid #393939;border-bottom:2px solid #eaf2f6}.content table{margin-bottom:1em;overflow:auto}.content table th,.content table td{text-align:left;vertical-align:top;line-height:1.6}.content table th{padding:5px 10px;border-bottom:1px solid #ccc;vertical-align:bottom}.content table td{padding:10px}.content table tr:last-child{border-bottom:1px solid #ccc}.content table tr:nth-child(odd)>td{background-color:#f9fbfc}.content table tr:nth-child(even)>td{background-color:#f3f7fa}.content dt{font-weight:bold}.content dd{margin-left:15px}.content p,.content li,.content dt,.content dd{line-height:1.6;margin-top:0}.content img{max-width:100%}.content code{background-color:rgba(0,0,0,0.05);padding:3px;border-radius:3px}.content pre>code{background-color:transparent;padding:0}.content aside{padding-top:1em;padding-bottom:1em;text-shadow:0 1px 0 #c6dde9;margin-top:1.5em;margin-bottom:1.5em;background:#8fbcd4;line-height:1.6}.content aside.warning{background-color:#c97a7e;text-shadow:0 1px 0 #dfb0b3}.content aside.success{background-color:#6ac174;text-shadow:0 1px 0 #a0d7a6}.content aside:before{vertical-align:middle;padding-right:0.5em;font-size:14px}.content .search-highlight{padding:2px;margin:-2px;border-radius:4px;border:1px solid #F7E633;text-shadow:1px 1px 0 #666;background:linear-gradient(to top left, #f7e633 0%, #f1d32f 100%)}.content pre,.content blockquote{background-color:#292929;color:#fff;padding:2em 28px;margin:0;width:30%;float:right;clear:right;box-sizing:border-box;text-shadow:0px 1px 2px rgba(0,0,0,0.4)}.content pre>p,.content blockquote>p{margin:0}.content pre a,.content blockquote a{color:#fff;text-decoration:none;border-bottom:dashed 1px #ccc}.content blockquote>p{background-color:#1c1c1c;border-radius:5px;padding:13px;color:#ccc;border-top:1px solid #000;border-bottom:1px solid #404040}@media (max-width: 930px){.tocify-wrapper{left:-230px}.tocify-wrapper.open{left:0}.page-wrapper{margin-left:0}#nav-button{display:block}.tocify-wrapper .tocify-item>a{padding-top:0.3em;padding-bottom:0.3em}}@media (max-width: 700px){.dark-box{display:none}.navbar-container{display:none}.content>h1,.content>h2,.content>h3,.content>h4,.content>h5,.content>h6,.content>p,.content>table,.content>ul,.content>ol,.content>aside,.content>dl{margin-right:0}.tocify-wrapper .lang-selector{display:block}.page-wrapper .lang-selector{display:none}.content pre,.content blockquote{width:auto;float:none}.content>pre+h1,.content>blockquote+h1,.content>pre+h2,.content>blockquote+h2,.content>pre+h3,.content>blockquote+h3,.content>pre+h4,.content>blockquote+h4,.content>pre+h5,.content>blockquote+h5,.content>pre+h6,.content>blockquote+h6,.content>pre+p,.content>blockquote+p,.content>pre+table,.content>blockquote+table,.content>pre+ul,.content>blockquote+ul,.content>pre+ol,.content>blockquote+ol,.content>pre+aside,.content>blockquote+aside,.content>pre+dl,.content>blockquote+dl{margin-top:28px}}
--------------------------------------------------------------------------------
/stylesheets/style.css:
--------------------------------------------------------------------------------
1 | body{background:url(../images/bg.jpg);text-shadow:1px 1px 0px white;margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333}h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility}h1{font-size:30px;line-height:36px;padding:50px 0 20px}#websiteContainer{background:url(../images/bg2.png) top left no-repeat;height:529px}.containerRelease{width:780px;margin-left:230px}
--------------------------------------------------------------------------------
Opened by '+data.user.login+', issue closed on '+data.prettyDate+'
\ 272 | //'+$("").html(data.title).text()+'
\ 273 | //