refactor nav-tabs (remove bootstrap, back to old design)
This commit is contained in:
parent
f314bdfe1c
commit
271fa16bef
4 changed files with 44 additions and 96 deletions
|
@ -363,8 +363,6 @@ class App.ControllerTabs extends App.Controller
|
||||||
super
|
super
|
||||||
|
|
||||||
render: ->
|
render: ->
|
||||||
@el.addClass 'main--tabs'
|
|
||||||
|
|
||||||
@html App.view('generic/tabs')(
|
@html App.view('generic/tabs')(
|
||||||
header: @header
|
header: @header
|
||||||
subHeader: @subHeader
|
subHeader: @subHeader
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div class="page-header">
|
<div class="page-header page-header--tabs">
|
||||||
<div class="page-header-title">
|
<div class="page-header-title">
|
||||||
<h1><%- @T( @header ) %> <small><%- @T( @subHeader ) %></small></h1>
|
<h1><%- @T( @header ) %> <small><%- @T( @subHeader ) %></small></h1>
|
||||||
</div>
|
</div>
|
||||||
|
@ -10,13 +10,11 @@
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="page-tabs">
|
<div class="page-content">
|
||||||
<ul class="nav nav-tabs" role="tablist">
|
<ul class="nav nav-tabs" role="tablist">
|
||||||
<% for tab in @tabs: %>
|
<% for tab in @tabs: %>
|
||||||
<li><a href="#<%= tab.target %>" role="tab" data-toggle="tab"><%- @T( tab.name ) %></a></li>
|
<li><a href="#<%= tab.target %>" role="tab" data-toggle="tab"><%- @T( tab.name ) %></a></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
|
||||||
<div class="page-content">
|
|
||||||
<div class="tab-content"></div>
|
<div class="tab-content"></div>
|
||||||
</div>
|
</div>
|
49
app/assets/stylesheets/bootstrap.css
vendored
49
app/assets/stylesheets/bootstrap.css
vendored
|
@ -566,11 +566,6 @@ a.bg-warning:hover {
|
||||||
a.bg-danger:hover {
|
a.bg-danger:hover {
|
||||||
background-color: #e4b9b9;
|
background-color: #e4b9b9;
|
||||||
}
|
}
|
||||||
.page-header {
|
|
||||||
padding-bottom: 9px;
|
|
||||||
margin: 40px 0 20px;
|
|
||||||
border-bottom: 1px solid #eee;
|
|
||||||
}
|
|
||||||
ul,
|
ul,
|
||||||
ol {
|
ol {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -2474,50 +2469,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
||||||
.input-group-btn:last-child > .btn-group {
|
.input-group-btn:last-child > .btn-group {
|
||||||
margin-left: -1px;
|
margin-left: -1px;
|
||||||
}
|
}
|
||||||
.nav {
|
|
||||||
padding-left: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
.nav > li {
|
|
||||||
position: relative;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.nav > li > a {
|
|
||||||
position: relative;
|
|
||||||
display: block;
|
|
||||||
padding: 10px 15px;
|
|
||||||
}
|
|
||||||
.nav > li > a:hover,
|
|
||||||
.nav > li > a:focus {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
.nav > li.disabled > a {
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
.nav > li.disabled > a:hover,
|
|
||||||
.nav > li.disabled > a:focus {
|
|
||||||
color: #777;
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: not-allowed;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
.nav .open > a,
|
|
||||||
.nav .open > a:hover,
|
|
||||||
.nav .open > a:focus {
|
|
||||||
background-color: #eee;
|
|
||||||
border-color: #337ab7;
|
|
||||||
}
|
|
||||||
.nav .nav-divider {
|
|
||||||
height: 1px;
|
|
||||||
margin: 9px 0;
|
|
||||||
overflow: hidden;
|
|
||||||
background-color: #e5e5e5;
|
|
||||||
}
|
|
||||||
.nav > li > a > img {
|
|
||||||
max-width: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-pills > li {
|
.nav-pills > li {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1780,7 +1780,6 @@ kbd {
|
||||||
.page-header {
|
.page-header {
|
||||||
margin: 0 0 15px;
|
margin: 0 0 15px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -1810,6 +1809,7 @@ kbd {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
padding-left: 9px;
|
padding-left: 9px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-right: 20px;
|
||||||
|
|
||||||
.btn + .btn {
|
.btn + .btn {
|
||||||
margin-left: 9px;
|
margin-left: 9px;
|
||||||
|
@ -1831,35 +1831,6 @@ kbd {
|
||||||
color: initial;
|
color: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main--tabs .page-header {
|
|
||||||
padding: 20px 20px 0;
|
|
||||||
overflow: hidden;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main--tabs .page-content {
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-tabs {
|
|
||||||
display: flex;
|
|
||||||
margin: 0 0 30px;
|
|
||||||
padding: 20px 20px 0;
|
|
||||||
background: linear-gradient(hsla(200,12%,94%,0), hsl(200,12%,94%));
|
|
||||||
border-bottom: 1px solid hsl(200,12%,89%);
|
|
||||||
|
|
||||||
.nav-tabs li.active {
|
|
||||||
background: hsl(210,17%,98%);
|
|
||||||
border-bottom-color: hsl(210,17%,98%);
|
|
||||||
margin-bottom: -1px;
|
|
||||||
padding-bottom: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-body--two-column {
|
.page-body--two-column {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
@ -5649,21 +5620,51 @@ footer {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a {
|
||||||
|
padding: 10px 15px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-tabs {
|
.nav-tabs {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-left: 1px;
|
margin: 10px 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-tabs li {
|
.nav-tabs li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 3px 3px 0 0;
|
color: hsl(0,0%,70%);
|
||||||
border: 1px solid hsl(200,12%,89%);
|
border: 1px solid hsl(0,0%,90%);
|
||||||
border-bottom-color: transparent;
|
|
||||||
margin-left: -1px;
|
margin-left: -1px;
|
||||||
|
background: white;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
border-radius: 5px 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-tabs li.active {
|
&:last-child {
|
||||||
position: relative;
|
border-radius: 0 5px 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:only-child {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
color: white;
|
||||||
|
background: hsl(206,7%,28%);
|
||||||
|
border-color: hsl(206,7%,28%);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
padding-bottom: 8px;
|
||||||
|
color: inherit;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-content {
|
.tab-content {
|
||||||
|
|
Loading…
Reference in a new issue