Migracia a male opravy
- csrf ocharana, vypnutie pre /log - oprava loggovania pamate - pridanie vue skriptov
This commit is contained in:
58
resources/sass/_suggest.scss
vendored
Executable file
58
resources/sass/_suggest.scss
vendored
Executable file
@@ -0,0 +1,58 @@
|
||||
.vue-suggestion {
|
||||
// width:50%;
|
||||
// max-width:400px;
|
||||
// margin:0 auto
|
||||
}
|
||||
.vue-suggestion .vs__input-group .vs__input {
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
padding: 0.5rem 0.7rem;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.25;
|
||||
color: #464a4c;
|
||||
outline: none;
|
||||
background-color: #fff;
|
||||
background-image: none;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #cecece;
|
||||
border-radius: 0.25rem;
|
||||
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
.vue-suggestion .vs__input-group .vs__input:focus {
|
||||
border: 1px solid #023d7b;
|
||||
}
|
||||
.vue-suggestion .vs__list {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
border: none;
|
||||
border-top: none;
|
||||
max-height: 400px;
|
||||
overflow-y: auto;
|
||||
border-bottom: 1px solid #023d7b;
|
||||
}
|
||||
.vue-suggestion .vs__list .vs__list-item {
|
||||
background-color: #fff;
|
||||
padding: 10px;
|
||||
border-left: 10px solid #023d7b;
|
||||
border-right: 1px solid #023d7b;
|
||||
}
|
||||
.vue-suggestion .vs__list .vs__list-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.vue-suggestion .vs__list .vs__list-item:hover {
|
||||
background-color: #eee !important;
|
||||
}
|
||||
.vue-suggestion {
|
||||
position: relative;
|
||||
}
|
||||
.vue-suggestion .vs__list,
|
||||
.vue-suggestion .vs__loading {
|
||||
position: absolute;
|
||||
}
|
||||
.vue-suggestion .vs__list .vs__list-item {
|
||||
cursor: pointer;
|
||||
}
|
||||
.vue-suggestion .vs__list .vs__list-item.vs__item-active {
|
||||
background-color: #f3f6fa;
|
||||
}
|
||||
20
resources/sass/_variables.scss
vendored
Executable file
20
resources/sass/_variables.scss
vendored
Executable file
@@ -0,0 +1,20 @@
|
||||
// Body
|
||||
$body-bg: #f8fafc;
|
||||
|
||||
// Typography
|
||||
$font-family-sans-serif: 'Nunito', sans-serif;
|
||||
$font-size-base: 0.9rem;
|
||||
$line-height-base: 1.6;
|
||||
|
||||
// Colors
|
||||
$blue: #3490dc;
|
||||
$indigo: #6574cd;
|
||||
$purple: #9561e2;
|
||||
$pink: #f66d9b;
|
||||
$red: #e3342f;
|
||||
$orange: #f6993f;
|
||||
$yellow: #ffed4a;
|
||||
$green: #38c172;
|
||||
$teal: #4dc0b5;
|
||||
$cyan: #6cb2eb;
|
||||
|
||||
17
resources/sass/app.scss
vendored
Executable file
17
resources/sass/app.scss
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
// Fonts
|
||||
@import url('https://fonts.googleapis.com/css?family=Nunito');
|
||||
|
||||
// Variables
|
||||
@import 'variables';
|
||||
|
||||
// Bootstrap
|
||||
@import '~bootstrap/scss/bootstrap';
|
||||
|
||||
// Font Awesome
|
||||
@import '~font-awesome/scss/font-awesome';
|
||||
|
||||
@import '~vue-datetime/dist/vue-datetime';
|
||||
|
||||
@import 'suggest';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user