123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*用于修改element组件样式*/
- /*tab标签页*/
- .el-tabs__nav-wrap::after {
- height: 0 !important;
- }
- .manager .el-table th {
- background: #f5f5f5 !important;
- }
- .el-table td,
- .el-table th {
- padding: 6px 0 !important;
- }
- #app .el-table .cell {
- font-size: 14px;
- }
- .el-form-item__error {
- position: relative !important;
- }
- .el-upload--picture-card {
- width: 100px !important;
- height: 100px !important;
- line-height: 98px !important;
- }
- .el-upload-list--picture-card .el-upload-list__item {
- width: 100px !important;
- height: 100px !important;
- }
- #app .el-form-item {
- margin-bottom: 10px;
- }
- /* 分类树 */
- .tree-content .el-tree-node__content {
- height: 45px;
- border-bottom: 1px solid #f6f6f6;
- }
- /*导航底色*/
- #app .el-aside {
- width: 100%;
- background: white;
- z-index: 999;
- }
- #app .el-menu {
- border-right: none;
- }
- #app .el-submenu__title {
- font-size: 16px;
- }
- #app .el-submenu .el-menu-item {
- height: 40px;
- line-height: 40px;
- }
- /*输入框*/
- #app .el-input__inner {
- margin-right: 10px;
- /* border-radius: 3px; */
- color: #999;
- /*padding: 0 6px;*/
- }
- #app .el-textarea__inner {
- border-radius: 3px;
- }
- .footer .el-button {
- margin-left: 10px;
- }
- .screen .el-cascader {
- margin-right: 10px;
- width: 150px;
- }
- #app .el-range-editor--mini.el-input__inner {
- width: 320px;
- }
- /*按钮直角*/
- /* #app .el-button {
- border-radius: 3px;
- } */
- #app .el-button--mini,
- .el-button--small {
- border-radius: 3px;
- padding: 7px 10px;
- /*border: none;*/
- /*color: #3c90fe;*/
- }
- #app .el-button--small {
- border-radius: 3px;
- }
- /*选择框直角*/
- #app .el-checkbox__inner {
- /* border-radius: 3px; */
- }
- .login-container .el-checkbox__inner {
- width: 16px;
- height: 16px;
- }
- .login-container .el-checkbox__label {
- font-size: 16px;
- color: #333;
- }
- .account .el-dialog__body {
- line-height: 40px;
- }
- .account .el-dialog .el-checkbox {
- width: 150px;
- }
- /*tab栏*/
- .header .el-tabs__header {
- margin: 0;
- }
- /*table*/
- #app .el-table::before {
- height: 0;
- }
- #app .el-tabs__item {
- height: 60px;
- line-height: 60px;
- }
- #app .el-tabs__item.is-active {
- color: #f17e02;
- }
- #app .el-tabs__active-bar {
- background-color: #f17e02;
- }
- #app .el-tabs__item:hover {
- color: #f17e02;
- }
- #app .el-container {
- height: 100%;
- overflow: hidden
- }
- #app .no-border-table {
- border: none !important;
- }
- /* 重置弹窗body padding */
- #app .el-dialog__body {
- padding-top: 0;
- padding-bottom: 0;
- }
|