inl-ui 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/conf/cp.js +51 -0
- package/dist/index.js +55 -2
- package/dist/index.js.map +1 -1
- package/dist/style.css +0 -1
- package/dist/theme/dark copy.less +448 -0
- package/dist/theme/dark.less +182 -0
- package/dist/theme/default.less +1067 -0
- package/dist/types/src/pageComponent/api/auth/menuManager.d.ts +5 -5
- package/dist/types/src/pageComponent/api/auth/roleManager.d.ts +6 -6
- package/dist/types/src/pageComponent/api/auth/userManager.d.ts +10 -10
- package/dist/types/src/pageComponent/api/axios.d.ts +1 -1
- package/dist/types/src/pageComponent/api/index.d.ts +4 -4
- package/dist/types/src/pageComponent/api/logManager.d.ts +2 -2
- package/dist/types/src/pageComponent/api/org/depManager.d.ts +13 -13
- package/dist/types/src/pageComponent/api/org/postManager.d.ts +5 -5
- package/dist/types/src/pageComponent/api/org/teamManager.d.ts +7 -7
- package/dist/types/src/pageComponent/api/param.d.ts +6 -6
- package/dist/types/src/pageComponent/components/EditPasswordForm.d.ts +1 -1
- package/dist/types/src/pageComponent/components/ProFormItem.d.ts +2 -2
- package/dist/types/src/pageComponent/components/SearchSelect.d.ts +2 -2
- package/dist/types/src/pageComponent/views/systemManager/authManager/userManager/updateUserDialog.d.ts +2 -2
- package/dist/types/src/pageComponent/views/systemManager/orgManager/depManager/updateDepDialog.d.ts +1 -1
- package/dist/types/src/pageComponent/views/systemManager/orgManager/depManager/updateEmployeeDialog.d.ts +1 -1
- package/dist/types/src/pageComponent/views/systemManager/orgManager/postManager/updatePostDialog.d.ts +1 -1
- package/dist/types/src/pageComponent/views/systemManager/orgManager/teamManager/updateTeamDialog.d.ts +1 -1
- package/dist/types/src/utils/className.d.ts +2 -0
- package/dist/types/src/utils/config.d.ts +4 -0
- package/dist/types/src/utils/getSlots.d.ts +3 -0
- package/dist/types/src/utils/index.d.ts +10 -0
- package/dist/types/src/utils/installComponent.d.ts +3 -0
- package/package.json +4 -2
- package/src/{gl.ts → gl.d.ts} +6 -0
- package/src/ht/ht-widget.d.ts +11327 -0
- package/src/ht/ht.d.ts +11410 -0
- package/src/ht/index.d.ts +4 -0
- package/src/pageComponent/api/axios.ts +18 -18
- package/src/pageComponent/components/CommonTree.tsx +31 -31
- package/src/pageComponent/components/EditPasswordForm.tsx +20 -20
- package/src/pageComponent/components/IconSelect.tsx +12 -12
- package/src/pageComponent/components/Navbar.tsx +9 -9
- package/src/pageComponent/components/ProFormItem.tsx +18 -18
- package/src/pageComponent/components/SearchSelect.tsx +20 -20
- package/src/pageComponent/components/Sidebar.tsx +11 -11
- package/src/pageComponent/config/htconfig.ts +5 -5
- package/dist/types/src/gl.d.ts +0 -8
- package/dist/types/src/utll.d.ts +0 -2
package/conf/cp.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// cp 文件
|
|
2
|
+
const fs = require("fs");
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
const gitPath = (p = "./") => {
|
|
6
|
+
return path.resolve(__dirname, p);
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const cpFiles = (file1, file2) => {
|
|
10
|
+
fs.readFile(file1, "utf8", (err, res) => {
|
|
11
|
+
if (!err) {
|
|
12
|
+
fs.writeFile(file2, res, (err, rr) => {
|
|
13
|
+
if (err) {
|
|
14
|
+
throw Error("写入文件失败.");
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
} else {
|
|
18
|
+
throw Error("读取主题文件失败.");
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
const readDir = () => {
|
|
24
|
+
const pp = gitPath("../../../site/src/theme");
|
|
25
|
+
const pp2 = gitPath("../dist/theme");
|
|
26
|
+
fs.readdir(pp, (err, res) => {
|
|
27
|
+
if (!err) {
|
|
28
|
+
for (let i of res) {
|
|
29
|
+
const ll = i.split(".");
|
|
30
|
+
|
|
31
|
+
if (ll.length > 1) {
|
|
32
|
+
const item = {
|
|
33
|
+
file1: `${pp}/${ll[0]}.less`,
|
|
34
|
+
file2: `${pp2}/${ll[0]}.less`,
|
|
35
|
+
};
|
|
36
|
+
cpFiles(item.file1, item.file2);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
};
|
|
42
|
+
const createDir = () => {
|
|
43
|
+
const path = gitPath("../dist/theme");
|
|
44
|
+
fs.stat(path, (err, res) => {
|
|
45
|
+
if (err) {
|
|
46
|
+
fs.mkdirSync(path);
|
|
47
|
+
}
|
|
48
|
+
readDir();
|
|
49
|
+
});
|
|
50
|
+
};
|
|
51
|
+
createDir();
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,64 @@
|
|
|
1
1
|
import { defineComponent, ref, reactive, createVNode, createTextVNode } from 'vue';
|
|
2
2
|
import { Popconfirm, Button, Card } from 'ant-design-vue';
|
|
3
|
-
import utils from 'inl-util';
|
|
4
3
|
|
|
5
|
-
var version = "0.0.
|
|
4
|
+
var version = "0.0.3";
|
|
6
5
|
|
|
7
6
|
var components = [];
|
|
8
7
|
|
|
8
|
+
const config = {
|
|
9
|
+
prefix: "inl"
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const {
|
|
13
|
+
prefix: prefix$1
|
|
14
|
+
} = config;
|
|
15
|
+
var className = (classNames => {
|
|
16
|
+
const ty = typeof classNames;
|
|
17
|
+
|
|
18
|
+
if (ty === "object") {
|
|
19
|
+
return classNames.map(item => {
|
|
20
|
+
if (item === "") return "";
|
|
21
|
+
return `${prefix$1}-${item}`;
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return `${prefix$1}-${classNames}`;
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
const {
|
|
29
|
+
prefix
|
|
30
|
+
} = config;
|
|
31
|
+
var installComponent = ((component, name) => {
|
|
32
|
+
component.install = app => {
|
|
33
|
+
app.component(`${prefix}-${name}`, component);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
return component;
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
var getSlots = (_context => {
|
|
40
|
+
const slots = _context.slots;
|
|
41
|
+
const useSlots = {};
|
|
42
|
+
|
|
43
|
+
for (let i in slots) {
|
|
44
|
+
useSlots[i] = slots[i];
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (!useSlots.default) {
|
|
48
|
+
useSlots.default = () => {
|
|
49
|
+
return "";
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
return useSlots;
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
const utils = {
|
|
57
|
+
className,
|
|
58
|
+
installComponent,
|
|
59
|
+
getSlots
|
|
60
|
+
};
|
|
61
|
+
|
|
9
62
|
const About = defineComponent({
|
|
10
63
|
setup(prop, context) {
|
|
11
64
|
ref(false);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/components/index.ts","../../src/pageComponent/views/systemManager/about.tsx","../../src/pageComponent/index.ts","../../src/index.ts"],"sourcesContent":[null,null,null,null],"names":["About","defineComponent","setup","prop","context","ref","reactive","showContent","loading","confirm","e","console","log","cancel","
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/components/index.ts","../../src/utils/config.ts","../../src/utils/className.ts","../../src/utils/installComponent.ts","../../src/utils/getSlots.ts","../../src/utils/index.ts","../../src/pageComponent/views/systemManager/about.tsx","../../src/pageComponent/index.ts","../../src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"names":["config","prefix","conf","classNames","ty","map","item","component","name","install","app","_context","slots","useSlots","i","default","utils","className","installComponent","getSlots","About","defineComponent","setup","prop","context","ref","reactive","showContent","loading","confirm","e","console","log","cancel","comps","pageComponents","components","use","version"],"mappings":"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"}
|
package/dist/style.css
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
1
|
html{overflow:auto}#app{height:100vh;width:100vw}.flex{display:flex}.flex-center{align-items:center;display:flex}.flex-colume{flex-direction:column}.layout .LayoutHeader{background:#fff;display:flex;height:55px;line-height:55px}.layout .LayoutHeader.blue{background:linear-gradient(90deg,#3297ff,#286be6)}.layout .LayoutHeader.blue .logo{color:#fff;font-size:20px;font-weight:900}.layout .LayoutHeader.blue .ant-menu{color:hsla(0,0%,100%,.6)}.layout .LayoutHeader.blue .ant-menu .ant-menu-item-active,.layout .LayoutHeader.blue .ant-menu .ant-menu-item-open,.layout .LayoutHeader.blue .ant-menu .ant-menu-item-selected,.layout .LayoutHeader.blue .ant-menu .ant-menu-item:hover,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-active,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-open,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-selected,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu:hover{color:#fff}.layout .LayoutHeader.blue .ant-menu .ant-menu-item-active:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-item-open:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-item-selected:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-item:hover:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-active:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-open:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu-selected:after,.layout .LayoutHeader.blue .ant-menu .ant-menu-submenu:hover:after{border-bottom:0}.layout .LayoutHeader.blue .ant-menu .ant-menu-item.ant-menu-item-selected{background:hsla(0,0%,100%,.1)}.layout .LayoutHeader.blue .avatarBox .username{color:#fff;font-size:16px}.layout .LayoutHeader .logo{width:200px}.layout .LayoutHeader ul.topMenu{background:transparent;border-bottom:0;flex:1;line-height:60px}.layout .LayoutHeader ul.topMenu li{border-bottom:0}.layout .LayoutHeader .avatarBox .ant-dropdown-trigger{font-size:22px;height:100%}.layout .LayoutHeader .avatarBox .ant-dropdown-trigger .username{height:30px;line-height:30px}.layout .LayoutHeader .avatarBox .ant-dropdown-trigger .anticon{font-size:20px}.layout .LayoutHeader .avatarBox .avatar{margin-left:10px}.layout .LayoutContent{padding:14px}.ant-menu-root.ant-menu-inline{border-right:0;overflow-x:hidden}.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item-open,.ant-menu-horizontal>.ant-menu-item-selected,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu-active,.ant-menu-horizontal>.ant-menu-submenu-open,.ant-menu-horizontal>.ant-menu-submenu-selected,.ant-menu-horizontal>.ant-menu-submenu:hover{border-bottom:none}.ant-menu-item .anticon,.ant-menu-submenu-title .anticon{margin-right:0}.ant-menu-root>li>.ant-menu-submenu-title,.ant-menu-root>li>.ant-menu-title-content{font-weight:600}.ant-tabs-bottom>.ant-tabs-nav:before,.ant-tabs-bottom>div>.ant-tabs-nav:before,.ant-tabs-top>.ant-tabs-nav:before,.ant-tabs-top>div>.ant-tabs-nav:before{display:block}.ant-tabs-nav .ant-tabs-tab{margin:0}.ant-table .ant-table-thead>tr>th{font-weight:600}.login_box{background-color:#fff;box-shadow:1px 1px 20px rgba(0,0,0,.3);display:flex;flex-direction:column;height:29rem;overflow:hidden;width:25rem}.login_box .ant-form{padding:0 1rem}.login_box .ant-form-item{margin-bottom:.5rem}.login_box .ant-form-item .ant-btn,.login_box .ant-form-item input{border-radius:.5rem;height:40px}.login_box h3{font-weight:400;padding:2rem 0;text-align:center}.login_box .login_tab{display:flex;height:3rem}.login_box .login_tab .item{background:#ebf8ff;cursor:pointer;flex:1;line-height:2.8rem;opacity:.5;text-align:center;transition:all .3s ease}.login_box .login_tab .item.active,.login_box .login_tab .item:hover{background:linear-gradient(90deg,#2eb2ff,#6d71ff);color:#fff;opacity:.8}.login{display:flex;flex-direction:column;height:100vh}.login .title{align-items:center;display:flex;height:4.3rem;padding:0 5rem}.login .title img{width:42px}.login .title span{font-size:1.57rem;font-weight:400;padding-left:1rem}@media screen{.login .content_login{align-items:center;background-image:url(../img/loginBackground.png);background-position:center 0;background-size:cover;display:flex;flex:1;position:relative}.login .content_login .login_box{position:absolute;right:10rem}}@media screen and (max-width:768px){.login .content_login{justify-content:center}.login .content_login .login_box{position:static;right:0}}.login .copyright-information{color:#666;font-size:14px;height:30px;line-height:30px;margin:0 10px;padding:0;text-align:center}.login .copyright-information a{color:#666;text-decoration:none}.menu-manager{display:flex;gap:32px;height:100%}.menu-manager .tree{width:300px}.menu-manager .tree .menu-select-tree .utils-container{display:flex;gap:8px;justify-content:flex-end}.menu-manager .tree .menu-select-tree .tree-container{padding:8px}.menu-manager .tree .menu-select-tree .tree-container .ant-tree-show-line .ant-tree-indent-unit:before{border-right:1px dashed #d9d9d9}.menu-manager .right-detail{flex:auto}.menu-manager .right-detail .menu-detail .header{align-items:center;display:flex;justify-content:space-between;margin-bottom:16px}.menu-manager .right-detail .menu-detail .header .header-text{font-size:16px;font-weight:700}.menu-manager .right-detail .menu-detail .form{max-width:500px}.tree-cotextmenu .context-utils{display:flex;gap:8px}.util-item{border:1px solid #ccc;border-radius:50%;color:#ccc;cursor:pointer;line-height:1;margin:8px 0;padding:4px}.param-manager .tab-item .operation{text-align:right}.param-manager .tab-item .operation>.ant-space{position:absolute;right:0;top:0}.param-manager .tab-item .group-container .group-item-title{font-size:14px;font-weight:600}.param-manager .tab-item .group-container .collapse-container{margin:16px 0}.param-manager .tab-item .group-container .collapse-container .header{align-items:center;display:flex;line-height:1;padding-left:16px;position:relative}.param-manager .tab-item .group-container .collapse-container .header .container-title{font-size:14px;font-weight:600}.param-manager .tab-item .group-container .collapse-container .header:before{background-color:#4b7ff7;bottom:0;content:" ";left:0;position:absolute;top:0;width:2px}.systemManager{height:100%;width:100%}.systemManager .LayoutSider{background:#fff;margin-right:14px;overflow:auto}.depManager,.logManager,.personalSetting,.postManager,.role-manager,.userManager{display:flex;flex-direction:column}.depManager .control,.logManager .control,.personalSetting .control,.postManager .control,.role-manager .control,.userManager .control{margin-bottom:16px}.depManager .titleLine,.logManager .titleLine,.personalSetting .titleLine,.postManager .titleLine,.role-manager .titleLine,.userManager .titleLine{display:flex;justify-content:space-between;margin-bottom:10px}.depManager .titleLine .title,.logManager .titleLine .title,.personalSetting .titleLine .title,.postManager .titleLine .title,.role-manager .titleLine .title,.userManager .titleLine .title{font-weight:bolder}.depManager .searchLine,.logManager .searchLine,.personalSetting .searchLine,.postManager .searchLine,.role-manager .searchLine,.userManager .searchLine{justify-content:space-between;margin-bottom:10px}.logModal .col{display:flex;margin-bottom:10px}.logModal .col .label{color:gray;min-width:140px;padding:0 10px;text-align:right}.depManager{flex-direction:row}.depManager .left{margin-right:20px;width:300px}.depManager .right{flex:1}.depManager .right .basic-info .basic-info-header{display:flex;font-weight:600;justify-content:space-between}.depManager .right .basic-info .basic-info-header .basic-info-title,.depManager .right .employee-container .title{color:#31363c;font-size:18px;font-weight:600}.depManager .right .employee-container .operation{display:flex;justify-content:space-between;margin-bottom:16px}.about{display:flex;flex-direction:column;padding:40px}.about .logoLine{justify-content:space-between}.about .logoLine .logo{margin-bottom:40px;width:600px}.about .titleLine{display:flex;justify-content:space-between;margin-bottom:10px}.about .titleLine .title{font-weight:bolder}.about .titleLine .title:before{border-left:2px solid #37f;content:"";height:10px;margin-right:12px}.about .card{background:#f8f7fc;color:rgba(0,0,0,.45);margin:0 0 20px 16px}.about .litTitle{margin:0 0 4px 20px}.about .down{margin:10px 0 20px 16px}.about .info{width:800px}.about .infoBtn{margin:10px 0}.about .update{position:absolute;right:65px;top:220px}.tp_box{display:flex;flex-direction:column;height:100vh;width:100vw}.tp_box #tp{flex:1}
|
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
@import './default.less';
|
|
2
|
+
@theme: dark;
|
|
3
|
+
// color palettes
|
|
4
|
+
@blue-1: mix(color(~`colorPalette('@{blue-base}', 8) `), @component-background, 15%);
|
|
5
|
+
@blue-2: mix(color(~`colorPalette('@{blue-base}', 7) `), @component-background, 25%);
|
|
6
|
+
@blue-3: mix(@blue-base, @component-background, 30%);
|
|
7
|
+
@blue-4: mix(@blue-base, @component-background, 45%);
|
|
8
|
+
@blue-5: mix(@blue-base, @component-background, 65%);
|
|
9
|
+
@blue-6: mix(@blue-base, @component-background, 85%);
|
|
10
|
+
@blue-7: mix(color(~`colorPalette('@{blue-base}', 5) `), @component-background, 90%);
|
|
11
|
+
@blue-8: mix(color(~`colorPalette('@{blue-base}', 4) `), @component-background, 95%);
|
|
12
|
+
@blue-9: mix(color(~`colorPalette('@{blue-base}', 3) `), @component-background, 97%);
|
|
13
|
+
@blue-10: mix(color(~`colorPalette('@{blue-base}', 2) `), @component-background, 98%);
|
|
14
|
+
|
|
15
|
+
@purple-1: mix(color(~`colorPalette('@{purple-base}', 8) `), @component-background, 15%);
|
|
16
|
+
@purple-2: mix(color(~`colorPalette('@{purple-base}', 7) `), @component-background, 25%);
|
|
17
|
+
@purple-3: mix(@purple-base, @component-background, 30%);
|
|
18
|
+
@purple-4: mix(@purple-base, @component-background, 45%);
|
|
19
|
+
@purple-5: mix(@purple-base, @component-background, 65%);
|
|
20
|
+
@purple-6: mix(@purple-base, @component-background, 85%);
|
|
21
|
+
@purple-7: mix(color(~`colorPalette('@{purple-base}', 5) `), @component-background, 90%);
|
|
22
|
+
@purple-8: mix(color(~`colorPalette('@{purple-base}', 4) `), @component-background, 95%);
|
|
23
|
+
@purple-9: mix(color(~`colorPalette('@{purple-base}', 3) `), @component-background, 97%);
|
|
24
|
+
@purple-10: mix(color(~`colorPalette('@{purple-base}', 2) `), @component-background, 98%);
|
|
25
|
+
|
|
26
|
+
@cyan-1: mix(color(~`colorPalette('@{cyan-base}', 8) `), @component-background, 15%);
|
|
27
|
+
@cyan-2: mix(color(~`colorPalette('@{cyan-base}', 7) `), @component-background, 25%);
|
|
28
|
+
@cyan-3: mix(@cyan-base, @component-background, 30%);
|
|
29
|
+
@cyan-4: mix(@cyan-base, @component-background, 45%);
|
|
30
|
+
@cyan-5: mix(@cyan-base, @component-background, 65%);
|
|
31
|
+
@cyan-6: mix(@cyan-base, @component-background, 85%);
|
|
32
|
+
@cyan-7: mix(color(~`colorPalette('@{cyan-base}', 5) `), @component-background, 90%);
|
|
33
|
+
@cyan-8: mix(color(~`colorPalette('@{cyan-base}', 4) `), @component-background, 95%);
|
|
34
|
+
@cyan-9: mix(color(~`colorPalette('@{cyan-base}', 3) `), @component-background, 97%);
|
|
35
|
+
@cyan-10: mix(color(~`colorPalette('@{cyan-base}', 2) `), @component-background, 98%);
|
|
36
|
+
|
|
37
|
+
@green-1: mix(color(~`colorPalette('@{green-base}', 8) `), @component-background, 15%);
|
|
38
|
+
@green-2: mix(color(~`colorPalette('@{green-base}', 7) `), @component-background, 25%);
|
|
39
|
+
@green-3: mix(@green-base, @component-background, 30%);
|
|
40
|
+
@green-4: mix(@green-base, @component-background, 45%);
|
|
41
|
+
@green-5: mix(@green-base, @component-background, 65%);
|
|
42
|
+
@green-6: mix(@green-base, @component-background, 85%);
|
|
43
|
+
@green-7: mix(color(~`colorPalette('@{green-base}', 5) `), @component-background, 90%);
|
|
44
|
+
@green-8: mix(color(~`colorPalette('@{green-base}', 4) `), @component-background, 95%);
|
|
45
|
+
@green-9: mix(color(~`colorPalette('@{green-base}', 3) `), @component-background, 97%);
|
|
46
|
+
@green-10: mix(color(~`colorPalette('@{green-base}', 2) `), @component-background, 98%);
|
|
47
|
+
|
|
48
|
+
@magenta-1: mix(color(~`colorPalette('@{magenta-base}', 8) `), @component-background, 15%);
|
|
49
|
+
@magenta-2: mix(color(~`colorPalette('@{magenta-base}', 7) `), @component-background, 25%);
|
|
50
|
+
@magenta-3: mix(@magenta-base, @component-background, 30%);
|
|
51
|
+
@magenta-4: mix(@magenta-base, @component-background, 45%);
|
|
52
|
+
@magenta-5: mix(@magenta-base, @component-background, 65%);
|
|
53
|
+
@magenta-6: mix(@magenta-base, @component-background, 85%);
|
|
54
|
+
@magenta-7: mix(color(~`colorPalette('@{magenta-base}', 5) `), @component-background, 90%);
|
|
55
|
+
@magenta-8: mix(color(~`colorPalette('@{magenta-base}', 4) `), @component-background, 95%);
|
|
56
|
+
@magenta-9: mix(color(~`colorPalette('@{magenta-base}', 3) `), @component-background, 97%);
|
|
57
|
+
@magenta-10: mix(color(~`colorPalette('@{magenta-base}', 2) `), @component-background, 98%);
|
|
58
|
+
|
|
59
|
+
@pink-1: mix(color(~`colorPalette('@{pink-base}', 8) `), @component-background, 15%);
|
|
60
|
+
@pink-2: mix(color(~`colorPalette('@{pink-base}', 7) `), @component-background, 25%);
|
|
61
|
+
@pink-3: mix(@pink-base, @component-background, 30%);
|
|
62
|
+
@pink-4: mix(@pink-base, @component-background, 45%);
|
|
63
|
+
@pink-5: mix(@pink-base, @component-background, 65%);
|
|
64
|
+
@pink-6: mix(@pink-base, @component-background, 85%);
|
|
65
|
+
@pink-7: mix(color(~`colorPalette('@{pink-base}', 5) `), @component-background, 90%);
|
|
66
|
+
@pink-8: mix(color(~`colorPalette('@{pink-base}', 4) `), @component-background, 95%);
|
|
67
|
+
@pink-9: mix(color(~`colorPalette('@{pink-base}', 3) `), @component-background, 97%);
|
|
68
|
+
@pink-10: mix(color(~`colorPalette('@{pink-base}', 2) `), @component-background, 98%);
|
|
69
|
+
|
|
70
|
+
@red-1: mix(color(~`colorPalette('@{red-base}', 8) `), @component-background, 15%);
|
|
71
|
+
@red-2: mix(color(~`colorPalette('@{red-base}', 7) `), @component-background, 25%);
|
|
72
|
+
@red-3: mix(@red-base, @component-background, 30%);
|
|
73
|
+
@red-4: mix(@red-base, @component-background, 45%);
|
|
74
|
+
@red-5: mix(@red-base, @component-background, 65%);
|
|
75
|
+
@red-6: mix(@red-base, @component-background, 85%);
|
|
76
|
+
@red-7: mix(color(~`colorPalette('@{red-base}', 5) `), @component-background, 90%);
|
|
77
|
+
@red-8: mix(color(~`colorPalette('@{red-base}', 4) `), @component-background, 95%);
|
|
78
|
+
@red-9: mix(color(~`colorPalette('@{red-base}', 3) `), @component-background, 97%);
|
|
79
|
+
@red-10: mix(color(~`colorPalette('@{red-base}', 2) `), @component-background, 98%);
|
|
80
|
+
|
|
81
|
+
@orange-1: mix(color(~`colorPalette('@{orange-base}', 8) `), @component-background, 15%);
|
|
82
|
+
@orange-2: mix(color(~`colorPalette('@{orange-base}', 7) `), @component-background, 25%);
|
|
83
|
+
@orange-3: mix(@orange-base, @component-background, 30%);
|
|
84
|
+
@orange-4: mix(@orange-base, @component-background, 45%);
|
|
85
|
+
@orange-5: mix(@orange-base, @component-background, 65%);
|
|
86
|
+
@orange-6: mix(@orange-base, @component-background, 85%);
|
|
87
|
+
@orange-7: mix(color(~`colorPalette('@{orange-base}', 5) `), @component-background, 90%);
|
|
88
|
+
@orange-8: mix(color(~`colorPalette('@{orange-base}', 4) `), @component-background, 95%);
|
|
89
|
+
@orange-9: mix(color(~`colorPalette('@{orange-base}', 3) `), @component-background, 97%);
|
|
90
|
+
@orange-10: mix(color(~`colorPalette('@{orange-base}', 2) `), @component-background, 98%);
|
|
91
|
+
|
|
92
|
+
@yellow-1: mix(color(~`colorPalette('@{yellow-base}', 8) `), @component-background, 15%);
|
|
93
|
+
@yellow-2: mix(color(~`colorPalette('@{yellow-base}', 7) `), @component-background, 25%);
|
|
94
|
+
@yellow-3: mix(@yellow-base, @component-background, 30%);
|
|
95
|
+
@yellow-4: mix(@yellow-base, @component-background, 45%);
|
|
96
|
+
@yellow-5: mix(@yellow-base, @component-background, 65%);
|
|
97
|
+
@yellow-6: mix(@yellow-base, @component-background, 85%);
|
|
98
|
+
@yellow-7: mix(color(~`colorPalette('@{yellow-base}', 5) `), @component-background, 90%);
|
|
99
|
+
@yellow-8: mix(color(~`colorPalette('@{yellow-base}', 4) `), @component-background, 95%);
|
|
100
|
+
@yellow-9: mix(color(~`colorPalette('@{yellow-base}', 3) `), @component-background, 97%);
|
|
101
|
+
@yellow-10: mix(color(~`colorPalette('@{yellow-base}', 2) `), @component-background, 98%);
|
|
102
|
+
|
|
103
|
+
@volcano-1: mix(color(~`colorPalette('@{volcano-base}', 8) `), @component-background, 15%);
|
|
104
|
+
@volcano-2: mix(color(~`colorPalette('@{volcano-base}', 7) `), @component-background, 25%);
|
|
105
|
+
@volcano-3: mix(@volcano-base, @component-background, 30%);
|
|
106
|
+
@volcano-4: mix(@volcano-base, @component-background, 45%);
|
|
107
|
+
@volcano-5: mix(@volcano-base, @component-background, 65%);
|
|
108
|
+
@volcano-6: mix(@volcano-base, @component-background, 85%);
|
|
109
|
+
@volcano-7: mix(color(~`colorPalette('@{volcano-base}', 5) `), @component-background, 90%);
|
|
110
|
+
@volcano-8: mix(color(~`colorPalette('@{volcano-base}', 4) `), @component-background, 95%);
|
|
111
|
+
@volcano-9: mix(color(~`colorPalette('@{volcano-base}', 3) `), @component-background, 97%);
|
|
112
|
+
@volcano-10: mix(color(~`colorPalette('@{volcano-base}', 2) `), @component-background, 98%);
|
|
113
|
+
|
|
114
|
+
@geekblue-1: mix(color(~`colorPalette('@{geekblue-base}', 8) `), @component-background, 15%);
|
|
115
|
+
@geekblue-2: mix(color(~`colorPalette('@{geekblue-base}', 7) `), @component-background, 25%);
|
|
116
|
+
@geekblue-3: mix(@geekblue-base, @component-background, 30%);
|
|
117
|
+
@geekblue-4: mix(@geekblue-base, @component-background, 45%);
|
|
118
|
+
@geekblue-5: mix(@geekblue-base, @component-background, 65%);
|
|
119
|
+
@geekblue-6: mix(@geekblue-base, @component-background, 85%);
|
|
120
|
+
@geekblue-7: mix(color(~`colorPalette('@{geekblue-base}', 5) `), @component-background, 90%);
|
|
121
|
+
@geekblue-8: mix(color(~`colorPalette('@{geekblue-base}', 4) `), @component-background, 95%);
|
|
122
|
+
@geekblue-9: mix(color(~`colorPalette('@{geekblue-base}', 3) `), @component-background, 97%);
|
|
123
|
+
@geekblue-10: mix(color(~`colorPalette('@{geekblue-base}', 2) `), @component-background, 98%);
|
|
124
|
+
|
|
125
|
+
@lime-1: mix(color(~`colorPalette('@{lime-base}', 8) `), @component-background, 15%);
|
|
126
|
+
@lime-2: mix(color(~`colorPalette('@{lime-base}', 7) `), @component-background, 25%);
|
|
127
|
+
@lime-3: mix(@lime-base, @component-background, 30%);
|
|
128
|
+
@lime-4: mix(@lime-base, @component-background, 45%);
|
|
129
|
+
@lime-5: mix(@lime-base, @component-background, 65%);
|
|
130
|
+
@lime-6: mix(@lime-base, @component-background, 85%);
|
|
131
|
+
@lime-7: mix(color(~`colorPalette('@{lime-base}', 5) `), @component-background, 90%);
|
|
132
|
+
@lime-8: mix(color(~`colorPalette('@{lime-base}', 4) `), @component-background, 95%);
|
|
133
|
+
@lime-9: mix(color(~`colorPalette('@{lime-base}', 3) `), @component-background, 97%);
|
|
134
|
+
@lime-10: mix(color(~`colorPalette('@{lime-base}', 2) `), @component-background, 98%);
|
|
135
|
+
|
|
136
|
+
@gold-1: mix(color(~`colorPalette('@{gold-base}', 8) `), @component-background, 15%);
|
|
137
|
+
@gold-2: mix(color(~`colorPalette('@{gold-base}', 7) `), @component-background, 25%);
|
|
138
|
+
@gold-3: mix(@gold-base, @component-background, 30%);
|
|
139
|
+
@gold-4: mix(@gold-base, @component-background, 45%);
|
|
140
|
+
@gold-5: mix(@gold-base, @component-background, 65%);
|
|
141
|
+
@gold-6: mix(@gold-base, @component-background, 85%);
|
|
142
|
+
@gold-7: mix(color(~`colorPalette('@{gold-base}', 5) `), @component-background, 90%);
|
|
143
|
+
@gold-8: mix(color(~`colorPalette('@{gold-base}', 4) `), @component-background, 95%);
|
|
144
|
+
@gold-9: mix(color(~`colorPalette('@{gold-base}', 3) `), @component-background, 97%);
|
|
145
|
+
@gold-10: mix(color(~`colorPalette('@{gold-base}', 2) `), @component-background, 98%);
|
|
146
|
+
|
|
147
|
+
// Color used by default to control hover and active backgrounds and for
|
|
148
|
+
// alert info backgrounds.
|
|
149
|
+
@primary-1: mix(color(~`colorPalette('@{primary-color}', 8) `), @component-background, 15%);
|
|
150
|
+
@primary-2: mix(color(~`colorPalette('@{primary-color}', 7) `), @component-background, 25%);
|
|
151
|
+
@primary-3: mix(@primary-color, @component-background, 30%);
|
|
152
|
+
@primary-4: mix(@primary-color, @component-background, 45%);
|
|
153
|
+
@primary-5: mix(@primary-color, @component-background, 65%);
|
|
154
|
+
@primary-6: @primary-color;
|
|
155
|
+
@primary-7: mix(color(~`colorPalette('@{primary-color}', 5) `), @component-background, 90%);
|
|
156
|
+
@primary-8: mix(color(~`colorPalette('@{primary-color}', 4) `), @component-background, 95%);
|
|
157
|
+
@primary-9: mix(color(~`colorPalette('@{primary-color}', 3) `), @component-background, 97%);
|
|
158
|
+
@primary-10: mix(color(~`colorPalette('@{primary-color}', 2) `), @component-background, 98%);
|
|
159
|
+
|
|
160
|
+
// Layer background
|
|
161
|
+
@popover-background: #1f1f1f;
|
|
162
|
+
@popover-customize-border-color: #3a3a3a;
|
|
163
|
+
@body-background: @black;
|
|
164
|
+
@component-background: #141414;
|
|
165
|
+
|
|
166
|
+
@text-color: fade(@white, 85%);
|
|
167
|
+
@text-color-secondary: fade(@white, 45%);
|
|
168
|
+
@text-color-inverse: @white;
|
|
169
|
+
@icon-color-hover: fade(@white, 75%);
|
|
170
|
+
@heading-color: fade(@white, 85%);
|
|
171
|
+
|
|
172
|
+
// The background colors for active and hover states for things like
|
|
173
|
+
// list items or table cells.
|
|
174
|
+
@item-active-bg: @primary-1;
|
|
175
|
+
@item-hover-bg: fade(@white, 8%);
|
|
176
|
+
|
|
177
|
+
// Border color
|
|
178
|
+
@border-color-base: #434343; // base border outline a component
|
|
179
|
+
@border-color-split: #303030; // split border inside a component
|
|
180
|
+
|
|
181
|
+
@background-color-light: fade(@white, 4%); // background of header and selected item
|
|
182
|
+
@background-color-base: fade(@white, 8%); // Default grey background color
|
|
183
|
+
|
|
184
|
+
// Disabled states
|
|
185
|
+
@disabled-color: fade(@white, 30%);
|
|
186
|
+
@disabled-bg: @background-color-base;
|
|
187
|
+
@disabled-color-dark: fade(@white, 30%);
|
|
188
|
+
|
|
189
|
+
// Tree
|
|
190
|
+
// ---
|
|
191
|
+
@tree-bg: transparent;
|
|
192
|
+
|
|
193
|
+
// List
|
|
194
|
+
// ---
|
|
195
|
+
@list-customize-card-bg: transparent;
|
|
196
|
+
|
|
197
|
+
// Shadow
|
|
198
|
+
// ---
|
|
199
|
+
@shadow-color: rgba(0, 0, 0, 0.45);
|
|
200
|
+
@shadow-color-inverse: @component-background;
|
|
201
|
+
@box-shadow-base: @shadow-2;
|
|
202
|
+
@shadow-1-up: 0 -6px 16px -8px rgba(0, 0, 0, 0.32), 0 -9px 28px 0 rgba(0, 0, 0, 0.2),
|
|
203
|
+
0 -12px 48px 16px rgba(0, 0, 0, 0.12);
|
|
204
|
+
@shadow-1-down: 0 6px 16px -8px rgba(0, 0, 0, 0.32), 0 9px 28px 0 rgba(0, 0, 0, 0.2),
|
|
205
|
+
0 12px 48px 16px rgba(0, 0, 0, 0.12);
|
|
206
|
+
@shadow-1-right: 6px 0 16px -8px rgba(0, 0, 0, 0.32), 9px 0 28px 0 rgba(0, 0, 0, 0.2),
|
|
207
|
+
12px 0 48px 16px rgba(0, 0, 0, 0.12);
|
|
208
|
+
@shadow-2: 0 3px 6px -4px rgba(0, 0, 0, 0.48), 0 6px 16px 0 rgba(0, 0, 0, 0.32),
|
|
209
|
+
0 9px 28px 8px rgba(0, 0, 0, 0.2);
|
|
210
|
+
|
|
211
|
+
// Buttons
|
|
212
|
+
// ---
|
|
213
|
+
@btn-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
|
|
214
|
+
@btn-primary-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
215
|
+
@btn-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
|
216
|
+
|
|
217
|
+
@btn-default-bg: transparent;
|
|
218
|
+
|
|
219
|
+
@btn-default-ghost-color: @text-color;
|
|
220
|
+
@btn-default-ghost-border: fade(@white, 25%);
|
|
221
|
+
|
|
222
|
+
@btn-text-hover-bg: rgba(255, 255, 255, 0.03);
|
|
223
|
+
|
|
224
|
+
// Checkbox
|
|
225
|
+
// ---
|
|
226
|
+
@checkbox-check-bg: transparent;
|
|
227
|
+
|
|
228
|
+
// Descriptions
|
|
229
|
+
// ---
|
|
230
|
+
@descriptions-bg: @background-color-light;
|
|
231
|
+
|
|
232
|
+
// Divider
|
|
233
|
+
// ---
|
|
234
|
+
@divider-color: rgba(255, 255, 255, 12%);
|
|
235
|
+
|
|
236
|
+
// Modal
|
|
237
|
+
// ---
|
|
238
|
+
@modal-header-bg: @popover-background;
|
|
239
|
+
@modal-header-border-color-split: @border-color-split;
|
|
240
|
+
@modal-content-bg: @popover-background;
|
|
241
|
+
@modal-footer-border-color-split: @border-color-split;
|
|
242
|
+
|
|
243
|
+
// Radio
|
|
244
|
+
// ---
|
|
245
|
+
@radio-solid-checked-color: @white;
|
|
246
|
+
@radio-dot-disabled-color: fade(@white, 20%);
|
|
247
|
+
|
|
248
|
+
// Radio buttons
|
|
249
|
+
// ---
|
|
250
|
+
@radio-disabled-button-checked-bg: fade(@white, 20%);
|
|
251
|
+
@radio-disabled-button-checked-color: @disabled-color;
|
|
252
|
+
|
|
253
|
+
// Layout
|
|
254
|
+
// ---
|
|
255
|
+
@layout-body-background: @body-background;
|
|
256
|
+
@layout-header-background: @popover-background;
|
|
257
|
+
@layout-trigger-background: #262626;
|
|
258
|
+
|
|
259
|
+
// Input
|
|
260
|
+
// ---
|
|
261
|
+
@input-bg: transparent;
|
|
262
|
+
@input-placeholder-color: fade(@white, 30%);
|
|
263
|
+
@input-icon-color: fade(@white, 30%);
|
|
264
|
+
@input-number-handler-active-bg: @item-hover-bg;
|
|
265
|
+
@input-icon-hover-color: fade(@white, 85%);
|
|
266
|
+
|
|
267
|
+
// Select
|
|
268
|
+
// ---
|
|
269
|
+
@select-background: transparent;
|
|
270
|
+
@select-dropdown-bg: @popover-background;
|
|
271
|
+
@select-clear-background: @component-background;
|
|
272
|
+
@select-selection-item-bg: fade(@white, 8);
|
|
273
|
+
@select-selection-item-border-color: @border-color-split;
|
|
274
|
+
@select-multiple-disabled-background: @component-background;
|
|
275
|
+
@select-multiple-item-disabled-color: #595959;
|
|
276
|
+
@select-multiple-item-disabled-border-color: @popover-background;
|
|
277
|
+
|
|
278
|
+
// Cascader
|
|
279
|
+
// ---
|
|
280
|
+
@cascader-bg: transparent;
|
|
281
|
+
@cascader-menu-bg: @popover-background;
|
|
282
|
+
@cascader-menu-border-color-split: @border-color-split;
|
|
283
|
+
|
|
284
|
+
// Tooltip
|
|
285
|
+
// ---
|
|
286
|
+
// Tooltip background color
|
|
287
|
+
@tooltip-bg: #434343;
|
|
288
|
+
|
|
289
|
+
// Menu
|
|
290
|
+
// ---
|
|
291
|
+
// dark theme
|
|
292
|
+
@menu-dark-inline-submenu-bg: @component-background;
|
|
293
|
+
@menu-dark-bg: @popover-background;
|
|
294
|
+
@menu-popup-bg: @popover-background;
|
|
295
|
+
|
|
296
|
+
// Message
|
|
297
|
+
// ---
|
|
298
|
+
@message-notice-content-bg: @popover-background;
|
|
299
|
+
|
|
300
|
+
// Notification
|
|
301
|
+
@notification-bg: @popover-background;
|
|
302
|
+
|
|
303
|
+
// LINK
|
|
304
|
+
@link-hover-color: @primary-5;
|
|
305
|
+
@link-active-color: @primary-7;
|
|
306
|
+
|
|
307
|
+
// Table
|
|
308
|
+
// --
|
|
309
|
+
@table-header-bg: #1d1d1d;
|
|
310
|
+
@table-body-sort-bg: fade(@white, 1%);
|
|
311
|
+
@table-row-hover-bg: #262626;
|
|
312
|
+
@table-header-cell-split-color: fade(@white, 8%);
|
|
313
|
+
@table-header-sort-bg: #262626;
|
|
314
|
+
@table-header-filter-active-bg: #434343;
|
|
315
|
+
@table-header-sort-active-bg: #303030;
|
|
316
|
+
@table-fixed-header-sort-active-bg: #222;
|
|
317
|
+
@table-filter-btns-bg: @popover-background;
|
|
318
|
+
@table-expanded-row-bg: @table-header-bg;
|
|
319
|
+
@table-filter-dropdown-bg: @popover-background;
|
|
320
|
+
@table-expand-icon-bg: transparent;
|
|
321
|
+
|
|
322
|
+
// Tag
|
|
323
|
+
// ---
|
|
324
|
+
@info-color-deprecated-bg: @primary-1;
|
|
325
|
+
@info-color-deprecated-border: @primary-3;
|
|
326
|
+
@success-color-deprecated-bg: @green-1;
|
|
327
|
+
@success-color-deprecated-border: @green-3;
|
|
328
|
+
@warning-color-deprecated-bg: @orange-1;
|
|
329
|
+
@warning-color-deprecated-border: @orange-3;
|
|
330
|
+
@error-color-deprecated-bg: @red-1;
|
|
331
|
+
@error-color-deprecated-border: @red-3;
|
|
332
|
+
|
|
333
|
+
// TimePicker
|
|
334
|
+
// ---
|
|
335
|
+
@picker-basic-cell-hover-with-range-color: darken(@primary-color, 35%);
|
|
336
|
+
@picker-basic-cell-disabled-bg: #303030;
|
|
337
|
+
@picker-border-color: @border-color-split;
|
|
338
|
+
@picker-bg: transparent;
|
|
339
|
+
@picker-date-hover-range-border-color: darken(@primary-color, 20%);
|
|
340
|
+
|
|
341
|
+
// Dropdown
|
|
342
|
+
// ---
|
|
343
|
+
@dropdown-menu-bg: @popover-background;
|
|
344
|
+
@dropdown-menu-submenu-disabled-bg: transparent;
|
|
345
|
+
|
|
346
|
+
// Steps
|
|
347
|
+
// ---
|
|
348
|
+
@steps-nav-arrow-color: fade(@white, 20%);
|
|
349
|
+
@steps-background: transparent;
|
|
350
|
+
|
|
351
|
+
// Avatar
|
|
352
|
+
// ---
|
|
353
|
+
@avatar-bg: fade(@white, 30%);
|
|
354
|
+
|
|
355
|
+
// Progress
|
|
356
|
+
// ---
|
|
357
|
+
@progress-steps-item-bg: fade(@white, 8%);
|
|
358
|
+
|
|
359
|
+
// Calendar
|
|
360
|
+
// ---
|
|
361
|
+
@calendar-bg: @popover-background;
|
|
362
|
+
@calendar-input-bg: @calendar-bg;
|
|
363
|
+
@calendar-border-color: transparent;
|
|
364
|
+
@calendar-full-bg: @component-background;
|
|
365
|
+
|
|
366
|
+
// Badge
|
|
367
|
+
// ---
|
|
368
|
+
@badge-text-color: @white;
|
|
369
|
+
|
|
370
|
+
// Popover
|
|
371
|
+
@popover-bg: @popover-background;
|
|
372
|
+
|
|
373
|
+
// Drawer
|
|
374
|
+
@drawer-bg: @popover-background;
|
|
375
|
+
|
|
376
|
+
// Card
|
|
377
|
+
// ---
|
|
378
|
+
@card-actions-background: @component-background;
|
|
379
|
+
@card-skeleton-bg: #303030;
|
|
380
|
+
@card-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.64), 0 3px 6px 0 rgba(0, 0, 0, 0.48),
|
|
381
|
+
0 5px 12px 4px rgba(0, 0, 0, 0.36);
|
|
382
|
+
|
|
383
|
+
// Transfer
|
|
384
|
+
// ---
|
|
385
|
+
@transfer-item-hover-bg: #262626;
|
|
386
|
+
|
|
387
|
+
// Comment
|
|
388
|
+
// ---
|
|
389
|
+
@comment-bg: transparent;
|
|
390
|
+
@comment-author-time-color: fade(@white, 30%);
|
|
391
|
+
@comment-action-hover-color: fade(@white, 65%);
|
|
392
|
+
|
|
393
|
+
// Rate
|
|
394
|
+
// ---
|
|
395
|
+
@rate-star-bg: fade(@white, 12%);
|
|
396
|
+
|
|
397
|
+
// Switch
|
|
398
|
+
// ---
|
|
399
|
+
@switch-bg: @white;
|
|
400
|
+
|
|
401
|
+
// Pagination
|
|
402
|
+
// ---
|
|
403
|
+
@pagination-item-bg: transparent;
|
|
404
|
+
@pagination-item-bg-active: transparent;
|
|
405
|
+
@pagination-item-link-bg: transparent;
|
|
406
|
+
@pagination-item-disabled-bg-active: fade(@white, 25%);
|
|
407
|
+
@pagination-item-disabled-color-active: @black;
|
|
408
|
+
@pagination-item-input-bg: @pagination-item-bg;
|
|
409
|
+
|
|
410
|
+
// PageHeader
|
|
411
|
+
// ---
|
|
412
|
+
@page-header-back-color: @icon-color;
|
|
413
|
+
@page-header-ghost-bg: transparent;
|
|
414
|
+
|
|
415
|
+
// Slider
|
|
416
|
+
// ---
|
|
417
|
+
@slider-rail-background-color: #262626;
|
|
418
|
+
@slider-rail-background-color-hover: @border-color-base;
|
|
419
|
+
@slider-dot-border-color: @border-color-split;
|
|
420
|
+
@slider-dot-border-color-active: @primary-4;
|
|
421
|
+
|
|
422
|
+
// Skeleton
|
|
423
|
+
// ---
|
|
424
|
+
@skeleton-to-color: fade(@white, 16%);
|
|
425
|
+
|
|
426
|
+
// Alert
|
|
427
|
+
// ---
|
|
428
|
+
@alert-success-border-color: @green-3;
|
|
429
|
+
@alert-success-bg-color: @green-1;
|
|
430
|
+
@alert-success-icon-color: @success-color;
|
|
431
|
+
@alert-info-border-color: @primary-3;
|
|
432
|
+
@alert-info-bg-color: @primary-1;
|
|
433
|
+
@alert-info-icon-color: @info-color;
|
|
434
|
+
@alert-warning-border-color: @gold-3;
|
|
435
|
+
@alert-warning-bg-color: @gold-1;
|
|
436
|
+
@alert-warning-icon-color: @warning-color;
|
|
437
|
+
@alert-error-border-color: @red-3;
|
|
438
|
+
@alert-error-bg-color: @red-1;
|
|
439
|
+
@alert-error-icon-color: @error-color;
|
|
440
|
+
|
|
441
|
+
// Timeline
|
|
442
|
+
// ---
|
|
443
|
+
@timeline-color: @border-color-split;
|
|
444
|
+
@timeline-dot-color: @primary-color;
|
|
445
|
+
|
|
446
|
+
// Mentions
|
|
447
|
+
// ---
|
|
448
|
+
@mentions-dropdown-bg: @popover-background;
|