File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
core-courses/3-js-basic-level/practicum-js-basic-level/sb-crm-client Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5858 cursor : pointer;
5959}
6060
61- /* .table-hover tbody tr:not(.table-dark) {
61+ .table-hover tbody tr : not (.table-dark ) {
6262 --bs-table-hover-bg : rgba (0 , 0 , 0 , 0.02 ) !important ;
63- } */
63+ }
6464
6565.crm__output-table .crm__output-table-head-cell {
6666 padding : 8px 8px ;
354354 opacity : 1 ;
355355 }
356356
357- /* .crm__output-table-body-row:hover {
357+ .crm__output-table-body-row : hover {
358358 border-bottom : 1px solid var (--main-purple );
359- } */
359+ }
360360
361361 .crm__output-table-body-cell_contacts-item-i : hover : not (: active ) {
362362 color : var (--dark-purple );
Original file line number Diff line number Diff line change 252252 if ( clientsDataArrWithIds . length > 0 ) {
253253 addClientsToTable ( clientsDataArrWithIds ) ; // отрисовка данных, наполнение таблицы клиентов
254254 } else {
255- outTableBody . append ( createEmptyTableMessageRow ( ) ) ; // если данных нет, вывод/добавление "пустой" строки
255+ outTableBody . append ( createEmptyTableMessageRow ( ) ) ; // если данных нет, вывод/добавление строки-сообщения
256256 }
257257 } catch ( error ) {
258258 console . error ( 'Не удалось загрузить список клиентов..' , error ) ;
259259 outTableBody . innerHTML = '' ; // очистка таблицы
260- outTableBody . append ( createEmptyTableMessageRow ( ) ) ; // если ошибка, вывод/добавление "пустой" строки
260+ outTableBody . append ( createEmptyTableMessageRow ( ) ) ; // если ошибка, вывод/добавление строки-сообщения
261261 }
262262 }
263263
You can’t perform that action at this time.
0 commit comments