- Switch font to Source Sans Pro, like CoreUpdate
- Add support for the new cor-tabs - Add support for title-based layouts - Switch super user layout to the new tabs UI in prep for adding setup support
This commit is contained in:
parent
914df9af1a
commit
1f9f4ef26b
14 changed files with 345 additions and 170 deletions
1
static/directives/cor-tab-content.html
Normal file
1
static/directives/cor-tab-content.html
Normal file
|
@ -0,0 +1 @@
|
|||
<div class="co-tab-content tab-content col-md-11" ng-transclude></div>
|
3
static/directives/cor-tab-panel.html
Normal file
3
static/directives/cor-tab-panel.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="co-main-content-panel co-tab-panel co-fx-box-shadow-heavy">
|
||||
<div class="container co-tab-container" ng-transclude></div>
|
||||
</div>
|
11
static/directives/cor-tab.html
Normal file
11
static/directives/cor-tab.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<li ng-class="tabActive == 'true' ? 'active' : ''">
|
||||
<a href="javascript:void(0)" data-title="{{ tabTitle }}"
|
||||
data-toggle="tab"
|
||||
data-target="{{ tabTarget }}"
|
||||
data-placement="right"
|
||||
data-container="body"
|
||||
ng-click="tabInit()"
|
||||
bs-tooltip>
|
||||
<span ng-transclude/>
|
||||
</a>
|
||||
</li>
|
1
static/directives/cor-tabs.html
Normal file
1
static/directives/cor-tabs.html
Normal file
|
@ -0,0 +1 @@
|
|||
<ul class="co-tabs col-md-1" ng-transclude></ul>
|
3
static/directives/cor-title-content.html
Normal file
3
static/directives/cor-title-content.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
|
||||
<h2 class="co-nav-title-content co-fx-text-shadow" ng-transclude></h2>
|
||||
</div>
|
1
static/directives/cor-title-link.html
Normal file
1
static/directives/cor-title-link.html
Normal file
|
@ -0,0 +1 @@
|
|||
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6" ng-transclude></div>
|
2
static/directives/cor-title.html
Normal file
2
static/directives/cor-title.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
<div class="co-nav-title" ng-transclude></div>
|
||||
|
Reference in a new issue