Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit 7774404

Browse files
committed
add missing less file in dist
1 parent 19c81dd commit 7774404

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

dist/less/variables.less

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
// operations colors
3+
@swagger-ui-color-get-method: #0f6ab4;
4+
@swagger-ui-color-get-border: #c3d9ec;
5+
@swagger-ui-color-get-hide: #6fa5d2;
6+
@swagger-ui-color-get-bg: #e7f0f7;
7+
8+
@swagger-ui-color-post-method: #10a54a;
9+
@swagger-ui-color-post-border: #c3e8d1;
10+
@swagger-ui-color-post-hide: #6fc992;
11+
@swagger-ui-color-post-bg: #ebf7f0;
12+
13+
@swagger-ui-color-put-method: #c5862b;
14+
@swagger-ui-color-put-border: #f0e0ca;
15+
@swagger-ui-color-put-hide: #dcb67f;
16+
@swagger-ui-color-put-bg: #f9f2e9;
17+
18+
@swagger-ui-color-delete-method: #a41e22;
19+
@swagger-ui-color-delete-border: #e8c6c7;
20+
@swagger-ui-color-delete-hide: #c8787a;
21+
@swagger-ui-color-delete-bg: #f5e8e8;
22+
23+
@swagger-ui-color-patch-method: #d38042;
24+
@swagger-ui-color-patch-border: #f5d5c3;
25+
@swagger-ui-color-patch-hide: #dcb67f;
26+
@swagger-ui-color-patch-bg: #fce9e3;
27+
28+
@swagger-ui-color-head-method: #ffd20f;
29+
@swagger-ui-color-head-border: #ffd20f;
30+
@swagger-ui-color-head-hide: #6fc992;
31+
@swagger-ui-color-head-bg: #fcffcd;

grunt/options/copy.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ module.exports = {
1111
src: [
1212
'scripts/{,*/}*.js',
1313
'!scripts/swagger-ui-templates.js',
14-
'less/swagger-ui.less'
14+
'less/swagger-ui.less',
15+
'less/variables.less'
1516
]
1617
}]
1718
}

0 commit comments

Comments
 (0)