1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .eloption {
- background: rgba(1, 46, 88, 0.9);
- border: none;
- z-index: 999;
- width: 120px;
- .el-menu {
- background: rgba(1, 46, 88, 0.9);
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
- border: none;
- min-width: 120px;
- .el-menu-item {
- background: rgba(1, 46, 88, 0.9);
- color: #CEE7FF;
- text-align: center;
- &:hover,
- &.is-active {
- border: none;
- outline: none;
- color: #00FCFF;
- background: url(~@/assets/dataBoard/images/header-hover.png) no-repeat;
- background-size: 100% 100%;
- background-origin: content-box;
- }
- }
- }
- }
- .el-breadcrumb__inner,
- .el-breadcrumb__inner a {
- font-weight: 400 !important;
- }
- .el-upload {
- input[type="file"] {
- display: none !important;
- }
- }
- .el-upload__input {
- display: none;
- }
- .el-dialog {
- transform: none;
- left: 0;
- position: relative;
- margin: 0 auto;
- .el-dialog__header{
- padding: 10px;
- background-color: white;
- border-bottom: 1px solid #ccc;
- text-indent: 10px;
- .el-dialog__title{
- color: black;
- }
- .el-dialog__headerbtn{
- top: 14px;
- }
- .el-dialog__headerbtn .el-dialog__close {
- color: #777;
- }
- }
- }
- .upload-container {
- .el-upload {
- width: 100%;
- .el-upload-dragger {
- width: 100%;
- height: 200px;
- }
- }
- }
- .el-dropdown-menu {
- a {
- display: block
- }
- }
- // to fix el-date-picker css style
- .el-range-separator {
- box-sizing: content-box;
- }
|