mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-04-20 07:22:05 +02:00
New login screen.
This commit is contained in:
parent
37b89700a6
commit
3c5c8b0096
@ -41,7 +41,7 @@ class DashboardController extends AbstractController
|
||||
public function showNotifications()
|
||||
{
|
||||
return View::make('dashboard.notifications.index')->with([
|
||||
'pageTitle' => trans('dashboard.notifications.notifications').' - '.trans('dashboard.dashboard'),
|
||||
'pageTitle' => trans('dashboard.notifications.notifications').' '.trans('dashboard.dashboard'),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
{
|
||||
"dist/css/all.css": "dist/css/all-df9cc659.css",
|
||||
"dist/css/all.css": "dist/css/all-1e740827.css",
|
||||
"dist/js/all.js": "dist/js/all-c132bc1e.js"
|
||||
}
|
@ -5,8 +5,9 @@ $ionicons-font-path: "../../../fonts" !default;
|
||||
|
||||
@import "modules/bootstrap";
|
||||
|
||||
html, body {
|
||||
html {
|
||||
height: 100%;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
@import "helpers";
|
||||
|
@ -1,23 +1,45 @@
|
||||
.login {
|
||||
padding-top: 90px;
|
||||
}
|
||||
body.login {
|
||||
background: $cachet-dark-blue;
|
||||
|
||||
.login .logo {
|
||||
display: block;
|
||||
margin: 0 auto 30px;
|
||||
}
|
||||
.form-bg {
|
||||
padding:20px;
|
||||
border-radius:10px;
|
||||
position: absolute;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 320px;
|
||||
height: 280px;
|
||||
}
|
||||
|
||||
.login legend {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
font-size: 24px;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
margin: 0 0 30px 0;
|
||||
}
|
||||
.logo {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.login .alert {
|
||||
font-size: $base-font-size;
|
||||
letter-spacing: $base-letter-spacing;
|
||||
p {
|
||||
color: white;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
&.btn-white {
|
||||
background-color: white;
|
||||
transition: background-color 0.5s ease;
|
||||
|
||||
&.btn-trans {
|
||||
background-color: transparent;
|
||||
border: 1px solid white;
|
||||
color: white;
|
||||
|
||||
&:hover {
|
||||
background-color: white;
|
||||
color: $cachet-dark-blue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
||||
<html>
|
||||
@include('partials.dashboard.head')
|
||||
|
||||
<body class="dashboard">
|
||||
<body class="dashboard @yield('bodyClass')">
|
||||
<div class="content">
|
||||
@yield('content')
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user