Panel/themes/Obsidian/modules/modulemanager/modulemanager.js
2026-05-03 23:31:07 +00:00

10 lines
No EOL
414 B
JavaScript

jQuery(function($){
$( "table:eq(1) > tbody > tr" ).each(function( index ) {
$( this ).find( "td:eq(-1) > a" ).addClass('mini-btn'); //gives yellow color to buttons
$( this ).find( "td:eq(-1) > a" ).addClass('yellow-btn'); //gives yellow color to buttons
});
$( "table:eq(-1) > tbody > tr" ).each(function( index ) {
$( this ).find( "td:eq(-1) > a" ).addClass('mini-btn'); //gives yellow color to buttons
});
})