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
| .tags-field{
| height: auto;
| min-height: 45px;
| padding-bottom: 2px;
|
| &:hover{
| cursor: text;
| }
| .tag-badge{
| &:hover{
| cursor: grab;
| }
| display: inline-block;
| width: auto;
| padding-left: 6px;
| padding-top: 2px;
| padding-bottom: 2px;
| margin-top: -2px;
| margin-right: 4px;
| margin-bottom: 8px;
| border-radius: 6px;
|
| a{
| margin-top: 2px;
| font-weight: bold;
| padding-bottom: 5px;
| }
| a:hover, a:focus, a:active{
| cursor: pointer;
| text-decoration: none !important;
| }
| }
| .inputText{
| display: inline-block;
| position: fixed;
| outline: none;
| border: none;
| margin-bottom: 10px;
| min-width: 1px;
| }
|
| }
|
|