-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
executable file
·47 lines (38 loc) · 839 Bytes
/
app.css
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.mtable-container a,
.mtable-container button {
outline: none !important;
}
.mtable-container .mtable-buttons {
margin: 0 0 15px;
}
.mtable-container .table .form-control {
margin-bottom: 0;
}
.mtable-container .table .form-control {
width: 100%;
}
.mtable-container .table {
table-layout: fixed;
}
.mtable-container .table thead tr td {
position: relative;
}
.mtable-container .table thead tr td > div {
display: none;
position: absolute;
z-index: 1000;
top: -30px;
left: 10px;
}
.mtable-container .table thead tr td:hover > div {
display: block;
}
.mtable-container .table tbody tr td {
height: 30px;
}
.mtable-container .table tbody tr td input[type=text] {
height: 30px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}