disable '#header select' autosizing in Vivaldi

This commit is contained in:
tophf 2018-06-27 15:42:35 +03:00
parent 6fb6b4ee6a
commit fc50ee2e2c

View File

@ -693,7 +693,9 @@ function usePrefsDuringPageLoad() {
el.value = value;
}
}
$$('#header select').forEach(el => el.adjustWidth());
if (!VIVALDI) {
$$('#header select').forEach(el => el.adjustWidth());
}
if (FIREFOX && 'update' in (chrome.commands || {})) {
const btn = $('#manage-shortcuts-button');