2
0
mirror of https://github.com/frappe/books.git synced 2025-02-14 01:40:26 +00:00
books/client/style/index.scss

68 lines
963 B
SCSS
Raw Normal View History

2018-01-16 11:39:17 +05:30
@import "node_modules/bootstrap/scss/bootstrap";
2018-01-23 17:56:40 +05:30
@import "node_modules/awesomplete/awesomplete";
2018-01-16 11:39:17 +05:30
2018-01-23 13:30:29 +05:30
html {
font-size: 14px;
2018-01-16 11:39:17 +05:30
}
.hide {
display: none !important;
}
.page-error {
text-align: center;
padding: 200px 0px;
}
.form-body {
2018-01-23 13:30:29 +05:30
max-width: 600px;
2018-01-16 11:39:17 +05:30
.form-toolbar {
height: 2rem;
margin-bottom: 1rem;
}
.alert {
margin-top: 1rem;
}
}
.dropdown-menu-right {
right: 0;
left: auto;
2018-01-23 17:56:40 +05:30
}
.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;
}