12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- * {
- margin: 0;
- padding: 0;
- }
- html,
- body,
- #app,
- .wrapper {
- width: 100%;
- height: 100%;
- background-color: #000000;
- overflow: hidden;
- font-family: "Microsoft YaHei";
- }
- .el-popover{
- background-color: rgb(36,36,36) !important;
- border-color: rgb(36,36,36) !important;
- }
- .el-table{
- border-color: rgb(36,36,36) !important;
- }
- .el-table__row>td{
- border-color: rgb(36,36,36) !important;
- }
- .el-table::before {
- height: 0px !important;
- }
- .el-table::after {
- height: 0px !important;
- }
- .el-dialog{
- background-color: rgb(36,36,36) !important;
- }
- .el-form-item__label{
- color: rgb(220, 220, 220) !important;
- }
- .el-dialog__title{
- color: rgb(220, 220, 220) !important;
- }
- .el-input__inner{
- background-color: rgb(100,100,100) !important;
- color: rgb(220, 220, 220) !important;
- }
- .el-tabs{
- background-color: black !important;
- border: none !important;
- color: rgb(220,220,220) !important;
- }
- .el-tabs__item{
- background-color: #363636 !important;
- color: rgb(220,220,220) !important;
- border-color: black !important;
- }
- .el-tabs__item:hover{
- background-color: rgb(29,106,235) !important;
- }
- .el-tabs__item.is-active{
- background-color: black !important;
- border-color: black !important;
- }
|