blob: bb3b8bc0d9987af4853f8b5d849897ba5d64bfc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// import custom scss, content to be set in deployment.
//
@import "tail";
//
// import bootstrap.
//
@import "bootstrap";
body {
padding: 40px;
}
@import "bootstrap-responsive";
table.table-hover .btn {
opacity: 0;
}
table.table-hover tr:hover .btn {
opacity: 1;
}
@import "bootstrap-editable";
//
// import custom scss, content to be set in deployment.
//
@import "tail";
|