mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
35 lines
608 B
SCSS
35 lines
608 B
SCSS
@import "./variables.scss";
|
|
@import "node_modules/frappe-datatable/dist/frappe-datatable";
|
|
|
|
.dt-header {
|
|
background-color: $gray-200 !important;
|
|
}
|
|
|
|
.dt-cell__edit {
|
|
padding: 0px;
|
|
|
|
input, textarea {
|
|
outline: none;
|
|
border-radius: none;
|
|
border: none;
|
|
margin: none;
|
|
padding: $spacer-2;
|
|
|
|
&:focus {
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
.awesomplete > ul {
|
|
position: fixed;
|
|
left: auto;
|
|
width: auto;
|
|
min-width: 120px;
|
|
}
|
|
}
|
|
|
|
.dt-cell--highlight {
|
|
background-color: $gray-200;
|
|
}
|