Skip to content
This repository was archived by the owner on Aug 11, 2022. It is now read-only.

Readme title #70

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
# Laravel Angular Admin
# Laravel 5.2 Angular Admin LTE
Laravel + Angularjs + Bootstrap + AdminLTE binded by Gulp workflow Admin Dashboard Boilerplate.
Plus Oauth and JWT authentication on the side.

[![Build Status](https://travis-ci.org/silverbux/laravel-angular-admin.svg?branch=master)](https://travis-ci.org/silverbux/laravel-angular-admin)
[![wercker status](https://app.wercker.com/status/f9ae3d5d35b9e56d8181de4279ccc8bd/s/master "wercker status")](https://app.wercker.com/project/byKey/f9ae3d5d35b9e56d8181de4279ccc8bd)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/silverbux/laravel-angular-admin/master/LICENSE)
[![Code Climate](https://codeclimate.com/github/silverbux/laravel-angular-admin/badges/gpa.svg)](https://codeclimate.com/github/silverbux/laravel-angular-admin)
[![Issue Count](https://codeclimate.com/github/silverbux/laravel-angular-admin/badges/issue_count.svg)](https://codeclimate.com/github/silverbux/laravel-angular-admin)
[![StyleCI](https://styleci.io/repos/56498155/shield)](https://styleci.io/repos/56498155)

[![wercker status](https://app.wercker.com/status/92444e926f721c992f7f41c605d5cbc4/m "wercker status")](https://app.wercker.com/project/bykey/92444e926f721c992f7f41c605d5cbc4)


![laradmin](https://cloud.githubusercontent.com/assets/1888261/15561320/1899b4b2-2327-11e6-8a3a-7e3d7ce31621.png)



## Screenshots
![Dashboard Screenshot](https://cloud.githubusercontent.com/assets/1888261/14597104/53b404b6-057d-11e6-876d-c83630686590.png)

![Login Screenshot](https://cloud.githubusercontent.com/assets/13616776/14597970/a366dc7c-0582-11e6-853b-776b1cf17aed.png
)

## Demo
[Click here for a live demo](http://laravel-admin.herokuapp.com)

*Note: If you register or use Oauth to sign-in your info will be available on public under user lists component, you can use credentials below.*

> admin@example.com / password

![laradmin](https://cloud.githubusercontent.com/assets/1888261/15561320/1899b4b2-2327-11e6-8a3a-7e3d7ce31621.png)

## Installation
```
Expand Down Expand Up @@ -119,4 +115,4 @@ This project wont be possible without the following, We acknowledge and are grat

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
29 changes: 29 additions & 0 deletions angular/app/components/nav-header/nav-header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,40 @@
<span class="logo-mini"><b>A</b>LT</span>
<span class="logo-lg"><b>Admin</b>LTE</span>
</a>

<nav class="navbar navbar-static-top">

<a href="javascript:void(0)" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>

<!-- language switch -->
<ul class="nav navbar-nav">
<li class="dropdown language-menu" uib-dropdown>

<a href="#" class="dropdown-toggle" data-toggle="dropdown" uib-dropdown-toggle>
<i class="fa fa-language"></i>
<span class="caret"></span>
</a>

<ul class="dropdown-menu" uib-dropdown-menu>
<li>
<ul class="menu">
<li>
<a href="#">Français</a>
</li>
<li>
<a href="#">Anglais</a>
</li>
</ul>
</li>
</ul>

</li>
</ul>

<div class="navbar-custom-menu">

<ul class="nav navbar-nav">
<li class="dropdown messages-menu" uib-dropdown>
<a href="#" class="dropdown-toggle" data-toggle="dropdown" uib-dropdown-toggle>
Expand Down
49 changes: 49 additions & 0 deletions angular/material/project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,52 @@ $grey: #888888;
$navy: #21455B;
$border: #E9F0F3;
$background: #F6F9FA;


//Navbar Language dropdown menu
.navbar-nav > .language-menu {

//fix width and padding
> .dropdown-menu {
> li {
position: relative;
}
width: 165px;
//Remove padding and margins
padding: 0 0 0 0;
margin: 0;
top: 100%;
}

//Clear inner menu padding and margins
> .dropdown-menu > li .menu {
max-height: 160px;
margin: 0;
padding: 0;
list-style: none;
overflow-x: hidden;
> li > a {
display: block;
white-space: nowrap; /* Prevent text from breaking */
border-bottom: 1px solid #f4f4f4;

color: #444444;
overflow: hidden;
text-overflow: ellipsis;
padding: 10px;

// Icons inside the menu
> .glyphicon,
> .fa,
> .ion {
width: 20px;
}

// Hove state
&:hover {
background: #f4f4f4;
text-decoration: none;
}
}
}
}