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
| // =================
| // Imports
| // =================
|
| @import '../../base/base'; // Base Variables
|
| .tags-input-wrapper {
| background: transparent;
| padding: 10px;
| border-radius: 4px;
|
| input {
| width: 150px;
| display: block;
| font-weight: 400;
| line-height: 1.5;
| background-clip: padding-box;
| border-radius: .25rem;
| transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
| height: auto;
| border: 1px solid $m-color_12;
| color: $m-color_13;
| font-size: 15px;
| padding: 8px 10px;
| letter-spacing: 1px;
| padding: .75rem 1.25rem;
| border-radius: 6px;
| background: $m-color_12;
| }
|
| .tag {
| display: inline-block;
| background-color: $primary;
| color: $white;
| font-size: 13px;
| border-radius: 4px;
| padding: 4px 3px 3px 7px;
| margin-right: 15px;
| margin-bottom: 7px;
| box-shadow: 0 5px 15px -2px rgba(43, 80, 237, 0.35);
|
| a {
| margin: 0 7px 3px;
| display: inline-block;
| cursor: pointer;
| }
| }
| }
|
|