Store only build compiled assets on public

This commit is contained in:
Joseph Cohen
2015-02-21 01:36:01 -06:00
committed by James Brooks
parent ac32ba20a6
commit 65cf59f982
22 changed files with 2338 additions and 72 deletions
+2 -3
View File
@@ -133,7 +133,7 @@ body.status-page {
height: 100%;
background: #7266BA;
}
.icon {
.status-icon {
background: #fff;
width: 35px;
height: 35px;
@@ -142,7 +142,7 @@ body.status-page {
position: absolute;
left: 25px;
top: 14px;
.ion {
.icon {
position: absolute;
&.ion-flag {
top: 10px;
@@ -273,4 +273,3 @@ body.status-page {
background-color: lighten($cachet_gray_light, 5%);
}
}
+4
View File
@@ -1,5 +1,8 @@
@import "palette";
$ionicons-font-path: "../../../fonts" !default;
@import "../bower_components/ionicons/scss/ionicons";
@import "modules/bootstrap";
html, body {
@@ -24,6 +27,7 @@ html, body {
// Styles for specific page
@import "pages/login";
@import "pages/setup";
@import "pages/dashboard";
// Styles for plugins
@import "plugins/messenger";
+8
View File
@@ -0,0 +1,8 @@
.componet-inline-update {
@extend .text-right;
padding-top: 8px;
label {
display: initial;
font-weight: normal;
}
}
+1 -1
View File
@@ -22,7 +22,7 @@
<div class="col-lg-4 col-sm-12">
<h4>{{ $component->name }}</h4>
</div>
<div class="col-lg-8 col-sm-12 radio-items">
<div class="col-lg-8 col-sm-12 radio-items componet-inline-update">
@foreach(trans('cachet.components.status') as $statusID => $status)
<div class="radio-inline">
<label>
+2 -2
View File
@@ -33,7 +33,7 @@
<title>{{ $pageTitle ?: Setting::get('app_name') }} Status</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">
@include('partials.stylesheet')
@@ -49,7 +49,7 @@
var Global = {};
Global.locale = '{{ Setting::get('app_locale') }}';
</script>
<script src="{{ elixir('js/all.js') }}"></script>
<script src="{{ elixir('dist/js/all.js') }}"></script>
</head>
<body class="status-page">
<div class="container">
+2 -2
View File
@@ -21,7 +21,7 @@
<title>{{ isset($pageTitle) ? $pageTitle : Setting::get('app_name') }} | Cachet</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">
@include('partials.crowdin')
@@ -29,6 +29,6 @@
var Global = {};
Global.locale = '{{ Setting::get('app_locale') }}';
</script>
<script src="{{ elixir('js/all.js') }}"></script>
<script src="{{ elixir('dist/js/all.js') }}"></script>
</head>
+1 -1
View File
@@ -5,7 +5,7 @@
<div class="moment {{ $incidentID === 0 ? 'first' : null }}">
<div class="row event clearfix">
<div class="col-sm-1">
<div class="icon status-{{ $incident->status }}" data-toggle="tooltip" title="{{ $incident->humanStatus }}" data-placement="left">
<div class="status-icon status-{{ $incident->status }}" data-toggle="tooltip" title="{{ $incident->humanStatus }}" data-placement="left">
<i class="{{ $incident->icon }}"></i>
</div>
</div>