Better fix for menu scrollbars: only allow vertical scrollbar to appear

pull/148/head
Thomas Bruederli 11 years ago
parent 7f196096f4
commit 113b461dfd

@ -484,7 +484,8 @@ body.iframe .boxtitle
left: 90px; left: 90px;
width: auto; width: auto;
max-height: 70%; max-height: 70%;
overflow: auto; overflow: -moz-scrollbars-vertical;
overflow-y: auto;
display: none; display: none;
background-color: #fff; background-color: #fff;
background-color: rgba(255, 255, 255, 0.95); background-color: rgba(255, 255, 255, 0.95);

@ -1925,7 +1925,8 @@ select.decorated option {
left: 90px; left: 90px;
width: auto; width: auto;
max-height: 70%; max-height: 70%;
overflow: auto; overflow: -moz-scrollbars-vertical;
overflow-y: auto;
background: #444; background: #444;
border: 1px solid #999; border: 1px solid #999;
z-index: 240; z-index: 240;
@ -1958,7 +1959,6 @@ ul.toolbarmenu li,
margin: 0; margin: 0;
border-top: 1px solid #5a5a5a; border-top: 1px solid #5a5a5a;
border-bottom: 1px solid #333; border-bottom: 1px solid #333;
padding-right: 10px;
} }
.googie_list tr:first-child td, .googie_list tr:first-child td,

Loading…
Cancel
Save