aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/searchMembersModal/members-table/members-table.component.scss
blob: 2fa90b8595f3a7a20e681e83534e10f9d067df87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.table-header {
  display: flex;
  margin-bottom: 5px;
  .left-header{
    .title-header{
      font-family: OpenSans-SemiBold;
      color: #191919;
      font-size: 15px;
      margin-bottom: 5px;
      display: block;
    }

    .sub-title-header{

      .vnf-selected{
        margin-left: 25px;
      }

      .vnf-match-your-criteria{
      }
    }
    .total{
      font-family: OpenSans-Regular;
      color: #191919;
      font-size: 15px;
      margin-right: 10px;
    }

  }

  .search-container{
    flex-basis: 300px;
    margin-left: auto;
  }
}

#member-table>tbody+tbody {
  border-top: 1px solid #ddd;
}



#member-table {
  border: 1px solid #D2D2D2;
  display: flex;
  flex-flow: column;
  max-height: calc(100vh - 135px);
  overflow-y: auto;
  thead {
    background: #F8F8F8;
    tr {
      table-layout: fixed;
      display: table;
      width: 100%;
      th.allCheckboxAreSelected {
        vertical-align: middle !important;
        width: 48px;
        max-width: 48px;
        min-width: 48px;
        height: 48px;
      }
      th.header-title {
        font-family: OpenSans-SemiBold;
        vertical-align: middle !important;
        height: 48px;
        font-size: 12px;
      }
    }
  }
  tbody {
    tr {
      table-layout: fixed;
      display: table;
      width: 100%;
      td{
        text-align: center;
        height: 60px;
        padding-top: 0;
        padding-bottom: 0;
        max-height: 60px;
        vertical-align: middle;
        .second-line {
          font-size: 12px;
        }
      }
    }
  }


  //font-size: 12px;

  th.allCheckboxAreSelected {
    text-align: center;
  }
}

.no-result {
  font-family: OpenSans-Regular;
  width: 100%;
  height: 100%;
  border: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: center;
}

td.sdcCheckboxMember {
  vertical-align: middle !important;
  width: 48px !important;
  max-width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
}