GroupPicker.scss
1.9 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import "../../scss/krhr/_mixins-component";
.pick_wrap{
width: 100%!important;
max-width: 100%!important;
}
.pick_input_wrap{
position: relative;
width: 100%;
}
.picker_list_wrap{
height: 300px;
width:100%;
}
.picker_itemp_photo{
border-radius: 4px;
position: absolute;
}
.picker_itemp_body{
margin-left: 45px;
.display_name{
font-size: $font-size-base;
line-height: $line-height-computed;
}
.cloud_silver{
color:$grey400;
}
span{
margin-left: 2px;
}
}
.picker_itemp_wrap{
height: 56px;
padding: 8px 10px;
border: 1px solid transparent;
border-top-color: $grey300;
}
.picker_itemp_wrap:hover{
background-color: rgba($lightBlue50,.4);
border-radius: 5px;
border: 1px solid $grey300;
cursor: pointer;
}
.picker_itemp_wrap:hover + .picker_itemp_wrap{
border-top-color: transparent;
}
.input_wrap{
border: 1px solid $grey300;
border-radius: 5px;
padding: 8px 12px 12px 12px;
margin-right: 100px;
display: flex;
flex-wrap: wrap;
input[type="text"]{
border: none;
box-shadow: none;
padding: 0;
margin-bottom: 0;
flex: 1;
margin-top: 4px;
margin-right: 6px;
height: 26px;
line-height: $line-height-base*1.3;
width: 100%;
}
}
.active.input_wrap{
border-color:$blue600;
box-shadow: 0 0 7px rgba(39,128,248,.15);
}
.nav_label{
height: 23px;
}
.action_btn{
@include button-disabled();
}
@include button-generate('.active.action_btn',$success);
.action_btn,.active.action_btn{
position: absolute;
right: 0;
padding: 20px;
border-radius: 5px;
}
.action_btn{
color: $grey400;
}
.member_token{
position: relative;
background: #3aa3e3;
color: #fff;
border-radius: 3px;
font-weight: 700;
font-size: 14px;
padding: 4px 65px 5px 7px;
cursor: pointer;
flex: none;
margin: 4px 6px 0 0;
}
.member_placeholder{
}
.member_name{
margin-left: 40px;
}
.member_close{
position: absolute;
right: 5px;
top: 8px;
}