SimpleTable.scss
974 Bytes
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
48
49
50
51
52
53
54
55
56
57
58
59
@import "../../scss/krhr/mixins-component";
.table_tr{
}
.table_tr:hover{
background-color: rgba(100, 100, 100, 0.1);
}
.simple_table_wrap{
padding: 2px 5px;
table > thead > tr > th{
border-bottom: 2px solid #76c187;
}
table > thead > tr > td, table > tbody > tr > th, table > tbody > tr > td, table > tfoot > tr > th, table > tfoot > tr > td{
border-top:0px;
}
}
.roles_wrap{
display: inline-block;
max-width: 380px;
min-width: 240px;
}
.edit_role{
position: absolute;
right: 0;
top: 10px;
}
.edit_btn{
position: absolute;
right: 0;
top: 10px;
}
.edit_role:hover{
color: #419bf9;
cursor: pointer;
}
.role_edit_wrap{
display: inline-block;
.role_wrap{
margin: 5px 9px;
}
}
.role_wrap{
display: inline-block;
border: 1px solid #E6E5E5;
background-color: #fff;
padding: 5px;
border-radius: 5px;
margin: 5px 16px;
width: 84px;
text-align: center;
cursor: default;
}
@include button-generate('.success_btn',$success);