mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 06:53:01 +02:00
Cleanup DS settings for small screens
This commit is contained in:
parent
d62c98c6e2
commit
03364c1893
2 changed files with 17 additions and 10 deletions
|
@ -80,11 +80,23 @@ span.port {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#setup-sidebar.affix {
|
@media (min-width: 768px) {
|
||||||
/* This overrides a case where going to the bottom of the page,
|
#setup-sidebar.affix {
|
||||||
* then scrolling up, causes `position: relative` to be added to the style
|
/* This overrides a case where going to the bottom of the page,
|
||||||
*/
|
* then scrolling up, causes `position: relative` to be added to the style
|
||||||
position: fixed !important;
|
*/
|
||||||
|
position: fixed !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
#setup-sidebar.affix {
|
||||||
|
position: static !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#setup-sidebar {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#setup-sidebar button {
|
#setup-sidebar button {
|
||||||
|
|
|
@ -36,11 +36,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-9 col-sm-9 col-xs-12">
|
<div class="col-md-9 col-sm-9 col-xs-12">
|
||||||
|
|
||||||
<div id="xs-advanced-container" class="col-xs-12 hidden-sm hidden-md hidden-lg">
|
|
||||||
<button id="advanced-toggle-button-xs" class="btn btn-info advanced-toggle">Show advanced</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
|
|
||||||
<div id="cloud-domains-alert" class="alert alert-info alert-dismissible" role="alert" style="display: none;">
|
<div id="cloud-domains-alert" class="alert alert-info alert-dismissible" role="alert" style="display: none;">
|
||||||
|
|
Loading…
Reference in a new issue