2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/style/style.scss

163 lines
2.3 KiB
SCSS
Raw Normal View History

2018-02-08 11:45:32 +00:00
@import "node_modules/bootstrap/scss/bootstrap";
@import "node_modules/awesomplete/awesomplete";
2018-02-14 12:50:56 +00:00
@import "node_modules/flatpickr/dist/flatpickr";
@import "node_modules/flatpickr/dist/themes/airbnb";
2018-02-08 11:45:32 +00:00
$spacer-1: 0.25rem;
$spacer-2: 0.5rem;
$spacer-3: 1rem;
$spacer-4: 2rem;
2018-02-14 12:50:56 +00:00
$page-width: 500px;
2018-02-08 11:45:32 +00:00
html {
2018-02-14 12:50:56 +00:00
font-size: 12px;
2018-02-08 11:45:32 +00:00
}
2018-02-14 16:44:50 +00:00
.desk-body {
2018-02-08 11:45:32 +00:00
border-left: 1px solid $gray-300;
2018-02-12 09:42:26 +00:00
min-height: calc(100vh - 50px);
2018-02-08 11:45:32 +00:00
}
2018-02-14 16:44:50 +00:00
.desk-center {
border-left: 1px solid $gray-300;
}
.desk-menu {
2018-02-14 12:50:56 +00:00
margin-right: -1px;
2018-02-09 12:55:55 +00:00
.list-group-item {
padding: $spacer-2 $spacer-3;
2018-02-12 09:42:26 +00:00
border: none;
2018-02-09 12:55:55 +00:00
}
.list-group-flush {
2018-02-14 12:50:56 +00:00
margin-left: -$spacer-3;
margin-right: -$spacer-3;
2018-02-09 12:55:55 +00:00
}
}
2018-02-08 11:45:32 +00:00
.hide {
display: none !important;
}
2018-02-14 12:50:56 +00:00
.page {
max-width: $page-width;
padding-bottom: $spacer-4;
}
2018-02-08 11:45:32 +00:00
.page-head {
2018-02-14 12:50:56 +00:00
padding-top: $spacer-3;
2018-02-08 11:45:32 +00:00
padding-bottom: $spacer-3;
.btn {
margin-right: $spacer-2;
}
}
.page-error {
text-align: center;
padding: 200px 0px;
}
.form-body {
2018-02-14 12:50:56 +00:00
max-width: $page-width;
2018-02-08 11:45:32 +00:00
.form-toolbar {
height: $spacer-4;
margin-bottom: $spacer-3;
}
.alert {
margin-top: $spacer-3;
}
}
2018-02-14 12:50:56 +00:00
.list-body {
margin-left: -15px;
margin-right: -15px;
.list-row {
2018-02-14 16:44:50 +00:00
padding: $spacer-2 15px;
2018-02-14 12:50:56 +00:00
border-bottom: 1px solid $gray-200;
.checkbox {
margin-right: $spacer-2;
}
a, a:hover, a:visited, a:active {
color: $gray-800;
}
}
2018-02-08 11:45:32 +00:00
}
2018-02-14 12:50:56 +00:00
.dropdown-item {
padding: $spacer-2 $spacer-3;
2018-02-08 11:45:32 +00:00
}
.awesomplete {
display: block;
}
.awesomplete > ul > li {
padding: .75rem .375rem;
}
.awesomplete > ul > li:hover {
background: $gray-300;
color: $body-color;
}
.awesomplete > ul > li[aria-selected="true"] {
background: $gray-300;
color: $body-color;
}
.awesomplete > ul > li[aria-selected="true"]:hover {
background: $gray-300;
color: $body-color;
}
mark {
padding: none;
background: inherit;
}
.awesomplete li[aria-selected="true"] mark, .awesomplete li[aria-selected="false"] mark {
background: inherit;
color: inherit;
padding: 0px;
}
.table-wrapper {
2018-02-09 12:55:55 +00:00
margin-top: $spacer-4;
margin-bottom: $spacer-4;
2018-02-08 11:45:32 +00:00
}
.table-toolbar {
margin-top: $spacer-2;
}
2018-02-14 12:50:56 +00:00
.data-table thead td {
border-bottom: 0px !important;
background-color: $gray-200 !important;
}
2018-02-08 11:45:32 +00:00
.data-table-col .edit-cell {
padding: 0px !important;
input, textarea {
border-radius: none;
margin: none;
padding: $spacer-1;
}
.awesomplete > ul {
position: fixed;
left: auto;
width: auto;
min-width: 120px;
}
}