tab styling
This commit is contained in:
parent
60df3afe26
commit
190c90ccdf
@ -29,11 +29,8 @@ hr {
|
|||||||
margin: 15px 15px 0;
|
margin: 15px 15px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-section {
|
|
||||||
margin-top: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-section h3 {
|
.settings-section h3 {
|
||||||
|
margin-top: 1em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,6 +68,18 @@ h1 {
|
|||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-body {
|
||||||
|
overflow: auto;
|
||||||
|
border: 1px solid #444;
|
||||||
|
border-top: none;
|
||||||
|
border-bottom-left-radius: 0.25rem;
|
||||||
|
border-bottom-right-radius: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-body .form-group {
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
table.bookmarks .frequency {
|
table.bookmarks .frequency {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
@ -108,7 +108,15 @@ class SdrFormController(SettingsFormController, metaclass=ABCMeta):
|
|||||||
return self.device["name"]
|
return self.device["name"]
|
||||||
|
|
||||||
def render_sections(self):
|
def render_sections(self):
|
||||||
return self.render_tabs() + super().render_sections()
|
return """
|
||||||
|
{tabs}
|
||||||
|
<div class="tab-body">
|
||||||
|
{sections}
|
||||||
|
</div>
|
||||||
|
""".format(
|
||||||
|
tabs=self.render_tabs(),
|
||||||
|
sections=super().render_sections(),
|
||||||
|
)
|
||||||
|
|
||||||
def render_tabs(self):
|
def render_tabs(self):
|
||||||
return """
|
return """
|
||||||
|
Loading…
Reference in New Issue
Block a user