fix width of trimSelectContainer

This commit is contained in:
Takashi Tamura 2018-11-02 09:53:35 +09:00
parent 186d79065c
commit 7a68a89696

View File

@ -109,13 +109,13 @@ html #outerContainer.sidebarOpen > #sidebarContainer {
display: none !important;
}
@media all and (max-width: 700px) {
@media all and (max-width: 750px) {
.hiddenSmallView, .hiddenSmallView * {
display: none;
}
}
@media all and (max-width: 600px) {
@media all and (max-width: 650px) {
#scaleSelectContainer {
display: none;
}
@ -126,3 +126,17 @@ html #outerContainer.sidebarOpen > #sidebarContainer {
display: none;
}
}
.dropdownToolbarButton {
max-width: none ! important;
}
#trimSelectContainer {
width: auto !important;
}
#trimSelectContainer > select {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
}