Cachet is now a Laravel 5 app
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
// Bootstrap variable overrides and custom variables
|
||||
@import "variables";
|
||||
|
||||
// Core variables and mixins
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/variables";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins";
|
||||
|
||||
// Reset and dependencies
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/normalize";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/print";
|
||||
|
||||
// Core CSS
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/scaffolding";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/type";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/code";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/grid";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/tables";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/forms";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/buttons";
|
||||
|
||||
// Components
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/component-animations";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/dropdowns";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/button-groups";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/input-groups";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/navs";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/navbar";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/breadcrumbs";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/pagination";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/pager";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/labels";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/badges";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/jumbotron";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/thumbnails";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/alerts";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/progress-bars";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/media";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/list-group";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/panels";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/responsive-embed";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/wells";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/close";
|
||||
|
||||
// Components w/ JavaScript
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/modals";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/tooltip";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/popovers";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/carousel";
|
||||
|
||||
// Utility classes
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/utilities";
|
||||
@import "./bower_components/bootstrap-sass/assets/stylesheets/bootstrap/responsive-utilities";
|
||||
@@ -0,0 +1,55 @@
|
||||
label {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.markdown-control {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
position:absolute;
|
||||
display:block;
|
||||
right:0%;
|
||||
bottom:0%;
|
||||
width:40px;
|
||||
height:40px;
|
||||
font-size: 2em;
|
||||
font-family: "Ionicons";
|
||||
content: "\f4e6";
|
||||
}
|
||||
}
|
||||
|
||||
.form-control {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 34px;
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
line-height: 1.42857143;
|
||||
color: #555;
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
border: 1px solid #ccc;
|
||||
@include box-shadow(none !important);
|
||||
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
|
||||
|
||||
&:focus {
|
||||
border-color: #66afe9;
|
||||
}
|
||||
}
|
||||
|
||||
.component-inline {
|
||||
@media (max-width: $screen-xs-max) {
|
||||
.radio-items {
|
||||
text-align: left;
|
||||
.radio-inline {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
div[role=tabpanel] {
|
||||
ul.nav-tabs {
|
||||
border-bottom: 1px solid #d5d8d7;
|
||||
li {
|
||||
a {
|
||||
font-weight: 400;
|
||||
display: inline-block;
|
||||
padding: 10px 25px;
|
||||
border-radius: 0;
|
||||
font-size: 0.9em;
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
border: {
|
||||
left: 1px solid #d5d8d7;
|
||||
bottom: 1px solid #d5d8d7;
|
||||
right: 1px solid #d5d8d7;
|
||||
}
|
||||
background-color: white;
|
||||
.tab-pane {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
// Brand colours.
|
||||
$brand-primary: darken(#428bca, 6.5%) !default;
|
||||
$brand-success: $cachet-primary !default;
|
||||
$brand-info: $cachet-blue !default;
|
||||
$brand-warning: $cachet-orange !default;
|
||||
$brand-danger: $cachet-red !default;
|
||||
|
||||
// Default border radius
|
||||
$border-radius-base: 2px !default;
|
||||
$border-radius-large: 4px !default;
|
||||
$border-radius-small: 1px !default;
|
||||
|
||||
//** Tooltip background color
|
||||
$tooltip-bg: #333 !default;
|
||||
$tooltip-opacity: .9 !default;
|
||||
$base-background-color: #f1f1f1;
|
||||
|
||||
$base-font-family: "Lato", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
||||
$base-font-weight: 400;
|
||||
$base-letter-spacing: 0.08em;
|
||||
$base-font-size: 15px;
|
||||
$base-line-height: 1.42857143;
|
||||
|
||||
$base-link-color: #ffffff;
|
||||
$base-link-hover-color: #e9e9e9;
|
||||
|
||||
$header-background-color: lighten(#00695C, 10%);
|
||||
$header-border-color: 1px solid darken($header-background-color, 10%);
|
||||
|
||||
$sidebar-transition-speed: .2s;
|
||||
$sidebar-background-color: #F0F3F4;
|
||||
$sidebar-border-color: 1px solid rgba(255, 255, 255, .1);
|
||||
$sidebar-border-shadow: inset 0px -2px 3px rgba(0,0,0,0.25);
|
||||
$sidebar-text-size: 0.9em;
|
||||
$sidebar-text-color: #333;
|
||||
$sidebar-text-active-color: #333;
|
||||
$sidebar-normal-width: 230px;
|
||||
$sidebar-phone-width: 75%;
|
||||
$sidebar-active-color: #00695C;
|
||||
@@ -0,0 +1,3 @@
|
||||
.well {
|
||||
border-radius: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user