Skip to content

Commit

Permalink
feat: 监控profiling datasource插件开发
Browse files Browse the repository at this point in the history
  • Loading branch information
liangling0628 committed Nov 22, 2024
1 parent 908bfe2 commit 19573f8
Show file tree
Hide file tree
Showing 23 changed files with 1,446 additions and 500 deletions.
3 changes: 3 additions & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@blueking/bkui-lint/stylelint.js'],
};
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/common/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "common",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
2 changes: 2 additions & 0 deletions src/common/style/dark.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import './dark/monitor-global.scss';
@import './global.scss';
55 changes: 55 additions & 0 deletions src/common/style/dark/monitor-global.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// div, ul, section, article {
// &::-webkit-scrollbar {
// width: 4px;
// height: 6px;
// }

// &::-webkit-scrollbar-thumb {
// border-radius: 20px;
// background: #a5a5a5;
// box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
// }
// }
// a {
// color: inherit;
// text-decoration: none;
// background-color: transparent;
// outline: none;
// cursor: pointer;
// -webkit-transition: color 0.3s;
// transition: color 0.3s;
// -webkit-text-decoration-skip: objects;
// }
a {
color: #ccccdc;
text-decoration: none;
cursor: pointer;
background-color: transparent;
outline: none;
transition: color 0.3s;
text-decoration-skip: objects;
}

a:hover {
color: #ccccdc;
}

a:active {
color: #366fd9;
}

body {
color: #ccccdc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 0;
margin-bottom: 0.5em;
font-weight: 500;
color: #ccccdc;
}
Loading

0 comments on commit 19573f8

Please sign in to comment.