Dashboard, Improves on Installer
This commit is contained in:
parent
f14d3d69f7
commit
e040d96d4c
|
@ -10,6 +10,29 @@
|
||||||
width: 80% !important;
|
width: 80% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.label-draft,
|
||||||
|
.label-empty-title,
|
||||||
|
.label-time {
|
||||||
|
background: #A979D1 none repeat scroll 0 0;
|
||||||
|
border-radius: 2px;
|
||||||
|
color: #ffffff;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0 8px;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 5px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label-empty-title {
|
||||||
|
background: #53D192;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label-time {
|
||||||
|
font-style: italic;
|
||||||
|
background: #A979D1;
|
||||||
|
}
|
||||||
|
|
||||||
/* UIKIT HACKs tabs
|
/* UIKIT HACKs tabs
|
||||||
---------------------------------------------------------------- */
|
---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
@ -132,6 +155,23 @@ body {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.dashboard-links {
|
||||||
|
background-color: #fafafa !important;
|
||||||
|
border: 1px solid #f8f8f8;
|
||||||
|
box-shadow: 5px 1px 1px #fdfdfd;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding: 50px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.dashboard-links h4 {
|
||||||
|
margin-bottom: -8px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NEW POST */
|
||||||
|
h3.titleOptions {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* OLD
|
/* OLD
|
||||||
---------------------------------------------------------------- */
|
---------------------------------------------------------------- */
|
||||||
|
|
||||||
|
@ -421,24 +461,7 @@ div.login-form {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------- DASHBOARD ----------- */
|
|
||||||
|
|
||||||
div.dashboard-links {
|
|
||||||
margin: 0 0 25px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.dashboard-links h4 {
|
|
||||||
margin-bottom: -8px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.dashboard-links a {
|
|
||||||
color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* NEW POST */
|
|
||||||
h3.titleOptions {
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ----------- PLUGIN LIST / THEME LIST ----------- */
|
/* ----------- PLUGIN LIST / THEME LIST ----------- */
|
||||||
|
|
||||||
|
@ -456,28 +479,6 @@ div.plugin-links > span.separator {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label-draft,
|
|
||||||
.label-empty-title,
|
|
||||||
.label-time {
|
|
||||||
background: #2672ec none repeat scroll 0 0;
|
|
||||||
border-radius: 2px;
|
|
||||||
color: #ffffff;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0 8px;
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin-right: 5px;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-empty-title {
|
|
||||||
background: #ED8F26;
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-time {
|
|
||||||
font-style: italic;
|
|
||||||
background: #ED3A26;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ----------- PAGINATOR ----------- */
|
/* ----------- PAGINATOR ----------- */
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<div class="uk-block uk-block-muted dashboard-links">
|
<div class="uk-block dashboard-links">
|
||||||
<div class="uk-container">
|
|
||||||
<div class="uk-grid uk-grid-match" data-uk-grid-margin="{target:'.uk-panel'}">
|
<div class="uk-grid uk-grid-match" data-uk-grid-margin="{target:'.uk-panel'}">
|
||||||
|
|
||||||
<div class="uk-width-medium-1-3">
|
<div class="uk-width-medium-1-3">
|
||||||
|
@ -57,7 +56,6 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dashboard-panel" class="uk-grid">
|
<div id="dashboard-panel" class="uk-grid">
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
HTML::title(array('title'=>$L->g('Language and timezone'), 'icon'=>'cogs'));
|
HTML::title(array('title'=>$L->g('Language and timezone'), 'icon'=>'globe'));
|
||||||
|
|
||||||
HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
HTML::formOpen(array('class'=>'uk-form-horizontal'));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue