123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- .colorPicker {
- z-index: 999999 !important;
- }
- .el-row {
- margin-bottom: 20px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- .el-col {
- border-radius: 4px;
- }
- .bg-purple-dark {
- background: #99a9bf;
- }
- .bg-purple {
- background: #d3dce6;
- }
- .bg-purple-light {
- background: #e5e9f2;
- }
- .grid-content {
- border-radius: 4px;
- min-height: 36px;
- }
- .row-bg {
- padding: 10px 0;
- background-color: #f9fafc;
- }
- .xmtabls {
- background-color: rgba(10, 36, 80, 1);
- width: 100%;
- }
- .el-tabs__item {
- color: white;
- }
- .el-collapse-item__header {
- color: #fff;
- background-color: #fff0;
- border-bottom: 0px solid #ebeef5;
- }
- .el-collapse-item__wrap {
- background-color: #fff0;
- border-bottom: 0px solid #ebeef5;
- overflow: unset;
- }
- .el-collapse {
- border-top: 0px solid #ebeef5;
- border-bottom: 0px solid #ebeef5;
- }
- .el-card {
- color: #fff;
-
- background-color: #fff0;
- }
- .el-radio {
- color: #fff;
- }
- .container {
- display: flex; /* 使用Flexbox布局 */
- flex-direction: column; /* 子标签竖向排列 */
- justify-content: center;
- align-items: center;
- }
- .none {
- display: none;
- }
- .block {
- display: block;
- }
- .el-switch__label {
- color: #fff;
- }
-
-
- .el-descriptions {
- color: #fff;
- }
- .el-descriptions__body {
- color: #fff;
- background-color: #fff0;
- }
- .titleHeader{
- text-align: left;
- }
- .el-table {
-
- color: #fff;
- }
- .el-table {
- background-color: #fff0 !important;
- }
- .el-table thead {
- color: #fff;
- background-color: #fff0 !important;
- }
- .el-table__body tr.el-table__row {
- background-color: #fff0 !important; /* 浅灰色背景 */
- }
-
- // 修改表格背景颜色
- .el-table, .el-table__expanded-cell{
- background-color: #fff0 !important;
- }
- // 鼠标悬浮该行时的背景颜色
- .el-table--enable-row-hover .el-table__body tr:hover > td{
- background-color: #40a0ff42 !important;
- }
-
-
- .el-table th,
- .el-table tr,
- .el-table td {
- background-color: #fff0 !important;
- }
- .el-table__body tr.current-row > td {
- background-color: #40a0ff59 !important;
- }
-
- .SaveCenter{
- text-align: center;
- padding: 1rem 0 ;
- }
- .el-checkbox {
- color: #ffffff;
- }
|