zhongrj
2025-11-25 b89962006164a462404b79a738bee8cbb6d7fe7e
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
.project-list-item{
    min-height: 60px;
 
    .project-name{
        font-weight: bold;
    }
 
    .project-description{
        min-height: 12px;
    }
 
    .drag-drop-icon{
        display: none;
        position: absolute;
        border-radius: 100%;
        padding: 16px;
        left: 48%;
        top: 0;
        font-size: 300%;
        -webkit-animation: pulsate 0.5s ease-out;
        -webkit-animation-iteration-count: infinite; 
        animation: pulsate 0.5s ease-out;
        animation-iteration-count: infinite; 
        opacity: 0.5;
        pointer-events:none;
    }
 
    @-webkit-keyframes pulsate {
        0% {opacity: 0.5;}
        50% {opacity: 1.0;}
        100% {opacity: 0.5;}
    }
     @keyframes pulsate {
        0% {opacity: 0.5;}
        50% {opacity: 1.0;}
        100% {opacity: 0.5;}
    }
 
    &.refreshing{
        background-color: #eee;
    }
 
     -webkit-transition: background-color 1s ease;
    transition: background-color 1s ease;
 
    &.dz-drag-hover{
        .drag-drop-icon{
            display: block;
        }
        background-color: #f7f7f7;
    }
 
    .project-links{
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 90%;
        i{
            margin-right: 4px;
        }
        a{
            margin-right: 12px;
        }
    }
 
    .btn-danger .fa-trash{
        margin-right: 2px;
        margin-left: 0px;
    }
    
    .dz-preview{
        display: none;
    }
 
    .row{
        margin-left: 0;
        margin-right: 0;
    }
 
    .project-buttons {
        float: right;
    }
 
    .task-filters{
        float: right;
    }
 
    .tag-badge.small-badge {
        display: inline-block;
        width: auto;
        padding-left: 6px;
        padding-right: 6px;
        padding-top: 0px;
        padding-bottom: 0px;
        margin-left: 4px;
        margin-top: -2px;
        border-radius: 6px;
        font-size: 90%;
        position: relative;
        top: -1px;
        &:hover{
            cursor: pointer;
        }
    }
 
    .filter-dropdown{
        max-width: 320px;
        padding-bottom: 6px;
    }
 
    .filter-text{
        height: 25px;
        margin-left: 7px;
        margin-right: 6px;
        margin-bottom: 4px;
        padding-left: 4px;
        padding-right: 4px;
        border-width: 1px;
        border-radius: 3px;
        display: block;
        width: 100%;
    }
 
    .filter-text-container,.tag-selection{
        display: flex;
    }
 
    .filter-checkbox{
        margin-left: 8px;
    }
    .filter-checkbox-label{
        font-weight: normal;
        position: relative;
        top: 4px;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-left: 4px;
        width: 100%;
    }
 
    .clear-container{
        text-align: right;
        margin-top: 2px;
        margin-right: 6px;
    }
 
    .quick-clear-filter{
        margin-right: 6px !important;
    }
 
    .asset-download-buttons > button:last-child{
        border-top-right-radius: 3px !important;
        border-bottom-right-radius: 3px !important;
    }
}