Fix bulk edit and message context action styles
This commit is contained in:
parent
3e9927dc67
commit
2c949b672a
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
#rm_print_characters_block.group_overlay_mode_select .character_select {
|
#rm_print_characters_block.group_overlay_mode_select .character_select {
|
||||||
transition: background-color 0.4s ease;
|
transition: background-color 0.4s ease;
|
||||||
margin-bottom: 1px;
|
|
||||||
background-color: rgba(170, 170, 170, 0.15);
|
background-color: rgba(170, 170, 170, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8673,9 +8673,12 @@ jQuery(async function () {
|
||||||
|
|
||||||
// Transition the .extraMesButtonsHint back in
|
// Transition the .extraMesButtonsHint back in
|
||||||
$('.extraMesButtonsHint:not(:visible)').show().transition({
|
$('.extraMesButtonsHint:not(:visible)').show().transition({
|
||||||
opacity: .2,
|
opacity: .3,
|
||||||
duration: 150,
|
duration: 150,
|
||||||
easing: 'ease-in-out',
|
easing: 'ease-in-out',
|
||||||
|
complete: function () {
|
||||||
|
$(this).css('opacity', '');
|
||||||
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -1252,10 +1252,6 @@ input[type="file"] {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rm_print_characters_block.bulk_select .wide100pLess70px {
|
|
||||||
width: calc(100% - 85px);
|
|
||||||
}
|
|
||||||
|
|
||||||
#rm_print_characters_block .empty_block {
|
#rm_print_characters_block .empty_block {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -1545,6 +1541,7 @@ input[type=search]:focus::-webkit-search-cancel-button {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
margin-bottom: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*applies to char list and mes_text char display name*/
|
/*applies to char list and mes_text char display name*/
|
||||||
|
@ -2509,7 +2506,7 @@ input[type="range"]::-webkit-slider-thumb {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.3s ease-in-out;
|
transition: 0.3s ease-in-out;
|
||||||
filter: drop-shadow(0px 0px 2px black);
|
filter: drop-shadow(0px 0px 2px black);
|
||||||
opacity: 0.2;
|
opacity: 0.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mes_buttons .mes_edit:hover,
|
.mes_buttons .mes_edit:hover,
|
||||||
|
|
Loading…
Reference in New Issue