| 1 |
.king-addons-table-inner-container { |
| 2 |
overflow-y: auto; |
| 3 |
overflow-x: auto; |
| 4 |
} |
| 5 |
|
| 6 |
.king-addons-hide-table-before-arrange, |
| 7 |
.king-addons-hide-pagination-on-search { |
| 8 |
opacity: 0; |
| 9 |
} |
| 10 |
|
| 11 |
.king-addons-table-td { |
| 12 |
position: relative; |
| 13 |
} |
| 14 |
|
| 15 |
.king-addons-table-td-pag { |
| 16 |
text-align: center; |
| 17 |
} |
| 18 |
|
| 19 |
.king-addons-data-table { |
| 20 |
border-collapse: collapse; |
| 21 |
border-spacing: 0; |
| 22 |
margin-right: 0 !important; |
| 23 |
margin-left: 0 !important; |
| 24 |
margin-bottom: 0; |
| 25 |
} |
| 26 |
|
| 27 |
.king-addons-data-table tr:first-child th { |
| 28 |
border-top: none !important; |
| 29 |
} |
| 30 |
|
| 31 |
.king-addons-data-table tr:last-child td { |
| 32 |
border-bottom: none !important; |
| 33 |
} |
| 34 |
|
| 35 |
.king-addons-data-table tr th:first-child, |
| 36 |
.king-addons-data-table tr td:first-child { |
| 37 |
border-left: none !important; |
| 38 |
} |
| 39 |
|
| 40 |
.king-addons-data-table tr th:last-child, |
| 41 |
.king-addons-data-table tr td:last-child { |
| 42 |
border-right: none !important; |
| 43 |
} |
| 44 |
|
| 45 |
.king-addons-flex-column { |
| 46 |
display: flex; |
| 47 |
flex-direction: column; |
| 48 |
justify-content: center; |
| 49 |
align-items: center; |
| 50 |
} |
| 51 |
|
| 52 |
.king-addons-flex-column-reverse { |
| 53 |
display: flex; |
| 54 |
flex-direction: column-reverse; |
| 55 |
justify-content: center; |
| 56 |
align-items: center; |
| 57 |
} |
| 58 |
|
| 59 |
.king-addons-data-table th { |
| 60 |
position: relative; |
| 61 |
} |
| 62 |
|
| 63 |
.king-addons-equal-column-width-yes .king-addons-data-table { |
| 64 |
table-layout: fixed; |
| 65 |
} |
| 66 |
|
| 67 |
.king-addons-equal-column-width-yes .king-addons-data-table .king-addons-table-th-pag, |
| 68 |
.king-addons-equal-column-width-yes .king-addons-data-table .king-addons-table-td-pag { |
| 69 |
width: 50px; |
| 70 |
} |
| 71 |
|
| 72 |
.king-addons-table-live-search-cont input { |
| 73 |
min-width: 100%; |
| 74 |
} |
| 75 |
|
| 76 |
.king-addons-search-input-icon, |
| 77 |
.king-addons-sorting-icon { |
| 78 |
position: absolute; |
| 79 |
top: 50%; |
| 80 |
right: 5%; |
| 81 |
transform: translateY(-50%); |
| 82 |
} |
| 83 |
|
| 84 |
.king-addons-table-custom-pagination { |
| 85 |
list-style-type: none !important; |
| 86 |
padding: 0; |
| 87 |
} |
| 88 |
|
| 89 |
.king-addons-table-custom-pagination-inner-cont { |
| 90 |
display: flex; |
| 91 |
align-items: center; |
| 92 |
} |
| 93 |
|
| 94 |
.king-addons-table-custom-pagination-list { |
| 95 |
cursor: pointer; |
| 96 |
} |
| 97 |
|
| 98 |
.king-addons-table-export-button-cont { |
| 99 |
display: flex; |
| 100 |
justify-content: center; |
| 101 |
} |
| 102 |
|
| 103 |
.king-addons-table-export-button-cont button { |
| 104 |
position: relative; |
| 105 |
width: 100%; |
| 106 |
} |
| 107 |
|
| 108 |
.king-addons-export-search-inner-cont { |
| 109 |
display: flex; |
| 110 |
justify-content: space-between; |
| 111 |
align-items: center; |
| 112 |
} |
| 113 |
|
| 114 |
.king-addons-data-table img { |
| 115 |
display: inline-block; |
| 116 |
} |
| 117 |
|
| 118 |
.king-addons-table-td, |
| 119 |
.king-addons-table-th { |
| 120 |
vertical-align: middle; |
| 121 |
} |
| 122 |
|
| 123 |
.king-addons-table-appended-tr { |
| 124 |
width: 100%; |
| 125 |
} |
| 126 |
|
| 127 |
.king-addons-table-tr-before { |
| 128 |
position: relative; |
| 129 |
} |
| 130 |
|
| 131 |
.king-addons-table-tr-before::before { |
| 132 |
content: '+'; |
| 133 |
position: absolute; |
| 134 |
top: 10px; |
| 135 |
left: 10px; |
| 136 |
display: flex; |
| 137 |
justify-content: center; |
| 138 |
align-items: center; |
| 139 |
background: green; |
| 140 |
color: white; |
| 141 |
width: 20px; |
| 142 |
height: 20px; |
| 143 |
font-size: 15px; |
| 144 |
border-radius: 50%; |
| 145 |
} |
| 146 |
|
| 147 |
.king-addons-table-tr-before-remove::before { |
| 148 |
content: '-'; |
| 149 |
position: absolute; |
| 150 |
top: 10px; |
| 151 |
left: 10px; |
| 152 |
display: flex; |
| 153 |
justify-content: center; |
| 154 |
align-items: center; |
| 155 |
background: red; |
| 156 |
color: white; |
| 157 |
width: 20px; |
| 158 |
height: 20px; |
| 159 |
font-size: 15px; |
| 160 |
border-radius: 50%; |
| 161 |
} |
| 162 |
|
| 163 |
.king-addons-table-text { |
| 164 |
position: relative; |
| 165 |
} |
| 166 |
|
| 167 |
.king-addons-data-table-th-img, |
| 168 |
.king-addons-table-text { |
| 169 |
vertical-align: middle; |
| 170 |
} |
| 171 |
|
| 172 |
.king-addons-xls, |
| 173 |
.king-addons-csv { |
| 174 |
padding: inherit; |
| 175 |
} |
| 176 |
|
| 177 |
.king-addons-entry-info-yes .king-addons-table-pagination-cont { |
| 178 |
display: flex; |
| 179 |
justify-content: space-between; |
| 180 |
align-items: center; |
| 181 |
} |
| 182 |
|
| 183 |
.king-addons-entry-info-yes .king-addons-table-custom-pagination { |
| 184 |
justify-content: flex-end; |
| 185 |
} |
| 186 |
|
| 187 |
.king-addons-entry-info { |
| 188 |
white-space: nowrap; |
| 189 |
min-width: 50px; |
| 190 |
} |
| 191 |
|
| 192 |
.king-addons-table-text-nowrap-yes th, |
| 193 |
.king-addons-table-text-nowrap-yes td { |
| 194 |
white-space: nowrap; |
| 195 |
} |
| 196 |
|
| 197 |
.king-addons-data-table .fa-question-circle { |
| 198 |
font-weight: 400 !important; |
| 199 |
font-family: "Font Awesome 5 Free", serif !important; |
| 200 |
} |
| 201 |
|
| 202 |
.king-addons-data-table-content-tooltip { |
| 203 |
position: absolute; |
| 204 |
top: -10px; |
| 205 |
left: 50%; |
| 206 |
border-radius: 4px; |
| 207 |
padding: 6px 10px; |
| 208 |
visibility: hidden; |
| 209 |
opacity: 0; |
| 210 |
font-size: 15px; |
| 211 |
transform: translate(-50%, -100%); |
| 212 |
transition: all 230ms ease-in-out 0s; |
| 213 |
text-align: center; |
| 214 |
} |
| 215 |
|
| 216 |
/*noinspection DuplicatedCode*/ |
| 217 |
.king-addons-data-table-content-tooltip:before { |
| 218 |
content: ""; |
| 219 |
position: absolute; |
| 220 |
left: 50%; |
| 221 |
transform: translateX(-50%); |
| 222 |
bottom: -5px; |
| 223 |
width: 0; |
| 224 |
height: 0; |
| 225 |
border-left: 6px solid transparent; |
| 226 |
border-right: 6px solid transparent; |
| 227 |
border-top-style: solid; |
| 228 |
border-top-width: 6px; |
| 229 |
} |
| 230 |
|
| 231 |
.king-addons-table-td:hover .king-addons-data-table-content-tooltip { |
| 232 |
visibility: visible; |
| 233 |
opacity: 1; |
| 234 |
top: -7px; |
| 235 |
transform: translate(-50%, -100%); |
| 236 |
} |
| 237 |
|
| 238 |
@media screen and (max-width: 768px) { |
| 239 |
.king-addons-export-search-inner-cont, |
| 240 |
.king-addons-table-pagination-cont { |
| 241 |
flex-direction: column; |
| 242 |
} |
| 243 |
|
| 244 |
.king-addons-equal-column-width-yes .king-addons-data-table { |
| 245 |
table-layout: auto; |
| 246 |
} |
| 247 |
|
| 248 |
.king-addons-table-export-button-cont { |
| 249 |
width: 100%; |
| 250 |
justify-content: space-around; |
| 251 |
} |
| 252 |
} |
| 253 |
|