aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/auditInfoModal/auditInfoModal.component.scss
blob: 6b1a7048687af719084d7fd8c1e5515418558304 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
.templatebody.modal-open{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0.5;
}
mwlResizable {
  box-sizing: border-box;
}
.modal-dialog{
  width: 100% !important;
}
.modal{
  width: 100% !important;
  margin-right: 0%;
  margin-left: 0%;

  #audit-info-modal {
    .leftColumn {
      padding-left: 0;
    }

    .rightColumn {
      padding-right: 0;
      text-align: right;
    }
    .modal-content{
      border-radius: 0px;
      border: none;
      .modal-header{
        padding: 5px !important;
        padding-left: 23px !important;
        background: #009FDB;
        font-size: 24px;
        color: #ffffff;
        .close{
          font-size: 32px;
          font-weight: 200;
          color: #ffffff;
          text-shadow: none;
          filter: none;
          opacity: 1;
          &:hover{
            color: #d2d2d2;
          }
        }
        .modal-title{

        }
      }
      .modal-body{
        padding: 0px;
        margin: 0px;
        display: flex;
        .left-panel{
          background: #f2f2f2;
          border-right: 1px solid #D2D2D2;
          padding-right: 0px;
          width: 20%;
          .row:first-child{
            border-bottom: 1px solid #D2D2D2;
            height: 50px;
            font-size: 12px;
            line-height: 50px;
            padding-left: 30px;
            font-weight: 700;
            margin-right: 0px;
          }
          .service-model{
            padding-left: 30px;
            padding-top: 15px;
          }
        }
        .right-panel{
          width: 100% !important;
          padding: 30px 30px 15px 30px;
          .row{
            margin: 0px;
          }
          .table-title{
            font-size: 12px;
            text-transform: uppercase;
            font-weight: bold;
          }
          .no-result{
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid #d2d2d2;
            padding: 20px;
            margin-top: 0px;
          }

          .table-bordered {
            margin-top: 10px;
            font-family: OpenSans-Semibold;
            font-size: 12px;
            overflow-x: auto;
            overflow-y: auto;
            //display: block;
            color: #5A5A5A;
            position: relative;
            thead {
              z-index: 100;
              background: rgb(242, 242, 242);
              border-bottom: 1px solid #d2d2d2;
              tr {
                th {
                  border-right: 1px solid #d2d2d2;
                  &:last-child {
                    border-right: none;
                  }
                }
              }
            }
            tbody{
              border: none !important;
              max-height: 152px;
              tr{
                border-bottom: 1px solid #d2d2d2;
                &:last-child{
                  border-bottom: none;
                }
                td{
                  border-right: 1px solid #d2d2d2;
                  &:last-child{
                    border-right: none;
                  }
                }
              }
            }
            th {
              background: #f2f2f2;
              font-family: OpenSans-Semibold;
              color: #000000;
              font-weight: bold;
              border: none;
              position: sticky;
              top: 0;
            }
            tr.odd {
              background-color: rgb(242, 242, 242);
            }
            tr:hover {
              background: #e1e1e1;
            }
          }
        }
      }
      .modal-footer{
        margin: 0px;
        .cancel{
          width: 120px;
          height: 36px;
          background: #009fdb;
          border-radius: 2px;
          font-family: OpenSans-Regular;
          font-size: 14px;
          color: #ffffff;
          line-height: 16px;
        }
      }
    }
  }
}