7.1
15832144755
2021-07-01 ba21fcf8482029f7634b62d60daf171538001769
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
/*
    =====================
        Recent Orders
    =====================
*/
 
.widget-table-two {
  position: relative;
 
  h5 {
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
 
  .widget-content {
    background: transparent;
  }
 
  .table {
    border-collapse: separate;
    border-spacing: 0 5px;
    margin-bottom: 0;
    background: transparent;
 
    > {
      thead > tr > th {
        text-transform: initial;
        font-weight: 600;
        border-top: none;
        background: $m-color_18;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        padding-left: 0;
        -webkit-transition: all 0.1s ease;
        transition: all 0.1s ease;
        padding: 10px 0 10px 5px;
 
        &:first-child {
          border-bottom-left-radius: 6px;
          border-top-left-radius: 6px;
        }
 
        &:last-child {
          border-bottom-right-radius: 6px;
          border-top-right-radius: 6px;
        }
 
        .th-content {
          color: $m-color_13;
          font-weight: 600;
          font-size: 14px;
          letter-spacing: 1px;
        }
 
        &:first-child .th-content {
          margin-left: 10px;
        }
 
        &:last-child .th-content {
          text-align: right;
          margin-right: 10px;
        }
 
        &:nth-last-child(2) .th-content {
          text-align: center;
          padding: 0 15px 0 0;
        }
      }
 
      tbody > tr {
        > td {
          border-top: none;
          background: transparent;
          padding-top: 0;
          padding-bottom: 0;
          padding-right: 0;
          padding-left: 0;
          -webkit-transition: all 0.1s ease;
          transition: all 0.1s ease;
        }
 
        &:hover {
          > td {
            transform: translateY(-1px) scale(1.01);
          }
 
          > td .td-content {
            color: $m-color_4;
          }
        }
 
        > td .td-content {
          cursor: pointer;
          font-weight: 600;
          letter-spacing: 1px;
          color: $m-color_6;
        }
 
        > td {
          &:first-child {
            border-top-left-radius: 6px;
            padding: 10px 0 10px 15px;
            border-bottom-left-radius: 6px;
          }
 
          &:last-child {
            border-top-right-radius: 6px;
            padding: 15.5px 15px 15.5px 0;
            text-align: right;
            border-bottom-right-radius: 6px;
          }
        }
      }
    }
 
    .td-content {
      &.customer-name {
        color: $m-color_4;
      }
 
      &.product-brand {
        letter-spacing: 1px;
      }
 
      img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 13px;
      }
    }
 
    tr > td:nth-last-child(2) .td-content {
      text-align: center;
    }
 
    .td-content .badge {
      transform: none;
    }
 
    tr {
      &:hover .td-content .badge {
        transform: translateY(-3px);
        background-color: transparent;
      }
 
      .td-content .outline-badge-success {
        color: $m-color_14;
        border-color: $m-color_14;
      }
    }
  }
}