diff --git a/public/less/admin/admin.less b/public/less/admin/admin.less index b1438799ac..71aa01f4c5 100644 --- a/public/less/admin/admin.less +++ b/public/less/admin/admin.less @@ -3,6 +3,8 @@ @import "./mixins"; @import "./vars"; +@import "./header"; + @import "./general/dashboard"; @import "./general/navigation"; @import "./manage/categories"; @@ -21,7 +23,6 @@ @import "./modules/checkboxes"; .admin { - padding-top: 70px; background: #fff; font-size: 14px; diff --git a/public/less/admin/bootstrap/variables.less b/public/less/admin/bootstrap/variables.less index a90f4d510b..f5f2cd55e7 100644 --- a/public/less/admin/bootstrap/variables.less +++ b/public/less/admin/bootstrap/variables.less @@ -102,9 +102,9 @@ @line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome @line-height-small: 1.5; -@border-radius-base: 3px; -@border-radius-large: 3px; -@border-radius-small: 3px; +@border-radius-base: 0px; +@border-radius-large: 0px; +@border-radius-small: 0px; //** Global color for active items (e.g., navs or dropdowns). @component-active-color: #fff; diff --git a/public/less/admin/header.less b/public/less/admin/header.less new file mode 100644 index 0000000000..f319747180 --- /dev/null +++ b/public/less/admin/header.less @@ -0,0 +1,27 @@ +.header { + position: relative; + background: #333; + width: 100%; + height: 200px; + margin-bottom: 50px; + + > ul { + list-style-type: none; + padding: 0px; + position: absolute; + bottom: 0px; + left: 50px; + + > li { + float: left; + margin-right: 30px; + + > a { + color: white; + font-size: 20px; + text-transform: uppercase; + text-decoration: none; + } + } + } +} \ No newline at end of file diff --git a/public/less/admin/settings.less b/public/less/admin/settings.less index 1f7b403cf1..84572def68 100644 --- a/public/less/admin/settings.less +++ b/public/less/admin/settings.less @@ -1,6 +1,6 @@ .settings { .row { - margin-bottom: 15px; + margin-bottom: 30px; } .section-content { @@ -12,4 +12,8 @@ padding-left: 20px; } } + + [data-action="upload"][type="text"] { + width: 95%; + } } \ No newline at end of file diff --git a/src/views/admin/header.tpl b/src/views/admin/header.tpl index cb157c57a3..5118b8250e 100644 --- a/src/views/admin/header.tpl +++ b/src/views/admin/header.tpl @@ -150,5 +150,58 @@ --> + +