datum-catalog.scss 1.18 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
2
.datum-catalog {
xuzhenghua committed
3 4 5
  .am-accordion {
    margin: 0 15px;
  }
6

xuzhenghua committed
7 8 9 10 11
  .prompt {
    height: 30px;
    line-height: 30px;
    font-size: $font_12;
    color: $color_333;
zhanghaozhe committed
12
    background-color: #fff4ce;
xuzhenghua committed
13 14
    text-align: center;
  }
15

xuzhenghua committed
16 17 18 19 20 21
  .file-name {
    margin: 5px 0;
    padding: 0 10px;
    width: 301px;
    height: 24px;
    line-height: 24px;
zhanghaozhe committed
22
    background-color: #f7f8f9;
xuzhenghua committed
23
    border-radius: 2px;
zhanghaozhe committed
24
    color: #525b65;
xuzhenghua committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical;
    font-size: 12px;
  }

  .am-accordion-content-box {
    padding-bottom: 5px;
  }

  .am-accordion .am-accordion-item .am-accordion-header {
    color: #333;
    font-size: 14px;
    padding: 0;
  }
  .am-accordion .am-accordion-item .am-accordion-header::after {
zhanghaozhe committed
45
    background-color: #fff !important;
xuzhenghua committed
46 47
  }
  .am-accordion-item .am-accordion-content .am-accordion-content-box::after {
zhanghaozhe committed
48
    background-color: #fff !important;
xuzhenghua committed
49 50 51 52 53 54
  }

  .am-accordion::before {
    background-color: #fff !important;
  }
  .am-accordion-item {
zhanghaozhe committed
55
    border-bottom: 1px solid #e7e9f1;
xuzhenghua committed
56
  }
zhanghaozhe committed
57
}