5783a47f32
Make sure the default position (relative) and z-index (9999) are not set for new Language dropdown (unotoolbutton), otherwise it will always be on top of everything Signed-off-by: Pedro Pinto Silva <pedro.silva@collabora.com> Change-Id: I1ea3ba4d521a5caffb499473554fc4e5cfd336b8
55 lines
896 B
CSS
55 lines
896 B
CSS
.sm.notebookbar {
|
|
position: static !important;
|
|
}
|
|
|
|
@media (min-width: 500px) {
|
|
/* Switch to desktop layout */
|
|
.sm-simple ul {
|
|
position: absolute;
|
|
width: 12em;
|
|
background: var(--color-main-background);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.sm-simple li {
|
|
float: left;
|
|
border: none;
|
|
}
|
|
|
|
.sm-simple.sm-rtl li {
|
|
float: right;
|
|
}
|
|
|
|
.sm-simple ul li, .sm-simple.sm-rtl ul li, .sm-simple.sm-vertical li {
|
|
float: none;
|
|
}
|
|
|
|
.sm-simple a {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.sm-simple ul a, .sm-simple.sm-vertical a {
|
|
white-space: normal;
|
|
}
|
|
|
|
.sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.sm-simple span.scroll-up-arrow, .sm-simple span.scroll-down-arrow {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 856px) {
|
|
#document-titlebar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 752px) {
|
|
#menu-last-mod {
|
|
display: none;
|
|
}
|
|
}
|