1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* 重置样式 */
- //改动人:yhc
- // 改动原因:适配原生el-table
- // 页面包裹
- .app-main {
- background: #f5f7f9;
- padding: 10px;
- .app-container {
- padding: 14px;
- border-radius: 5px;
- background: #fff;
- }
- }
- //滚动条样式
- /*滚动条样式*/
- ::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- /**/
- }
- ::-webkit-scrollbar-track {
- background: #fff;
- border-radius: 2px;
- }
- ::-webkit-scrollbar-thumb {
- background: rgba(35, 32, 50, 0.29);
- border-radius: 10px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #999;
- }
- ::-webkit-scrollbar-corner {
- background: #204754;
- }
- .el-table td {
- height: 45px;
- padding: 0px 0px;
- font-size: 12px !important;
- //font-family: MicrosoftYaHei-Bold !important;
- font-weight: normal;
- }
- .el-table__body-wrapper {
- padding: 0px !important;
- }
- .el-table__fixed-body-wrapper {
- td {
- height: 45px;
- padding: 0px 0px;
- font-size: 12px !important;
- //font-family: MicrosoftYaHei-Bold !important;
- font-weight: normal;
- }
- .cell span {
- font-size: 12px;
- }
- }
- //AVUE表格元素
- .el-table th {
- background-color: hsl(222deg 33% 92%) !important;
- //box-sizing: border-box !important;
- //overflow-wrap: break-word !important;
- color: rgba(110, 121, 147, 1) !important;
- font-size: 12px !important;
- //font-family: MicrosoftYaHei-Bold !important;
- font-weight: normal;
- }
- .el-table {
- border: 1px solid hsl(222deg 33% 92%) !important;
- }
- .el-form-item__label {
- font-weight: normal !important;
- }
- .avue-crud__menu {
- line-height: 36px;
- }
- .avue-form__group {
- border-bottom: 1px solid hsl(222deg 33% 92%);
- }
- .avue-form__menu--right {
- width: 100%;
- .el-button--text {
- position: absolute;
- left: calc(50% - 50px);
- }
- }
- // 进度条颜色
- #nprogress .bar {
- background: orange !important;
- }
|