@senior-gestao-relacionamento/angular-components 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scss/styles.scss +190 -0
package/package.json
CHANGED
package/scss/styles.scss
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
@import "@seniorsistemas/primeng-theme/dist/scss/_colors.scss";
|
|
2
|
+
|
|
3
|
+
.priority-low {
|
|
4
|
+
color: $success-color !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.priority-medium {
|
|
8
|
+
color: $warning-color !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.priority-high {
|
|
12
|
+
color: $danger-color !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.priority-critical {
|
|
16
|
+
color: $error-color !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
body .ui-panel {
|
|
20
|
+
padding: 20px !important;
|
|
21
|
+
border-radius: 24px !important;
|
|
22
|
+
box-shadow: 0px 0px 5px #ccc !important;
|
|
23
|
+
border: none !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.s-stats-card-icon-container {
|
|
27
|
+
border-radius: 24px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
body .ui-panel .ui-panel-titlebar + .ui-panel-content-wrapper .ui-panel-content {
|
|
31
|
+
border-top: 1px solid #ddd !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
body .ui-panel .ui-panel-footer {
|
|
35
|
+
border-top: 1px solid #ddd !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.s-button-with-text {
|
|
39
|
+
border-radius: 8px !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ui-g-hidden {
|
|
43
|
+
display: none;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@media screen and (max-width: 40em) {
|
|
47
|
+
.ui-sm-visible {
|
|
48
|
+
display: block !important;
|
|
49
|
+
}
|
|
50
|
+
.ui-sm-hidden {
|
|
51
|
+
display: none !important;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@media screen and (min-width: 40.063em) {
|
|
56
|
+
.ui-md-visible {
|
|
57
|
+
display: block !important;
|
|
58
|
+
}
|
|
59
|
+
.ui-md-hidden {
|
|
60
|
+
display: none !important;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@media screen and (min-width: 64.063em) {
|
|
65
|
+
.ui-lg-visible {
|
|
66
|
+
display: block !important;
|
|
67
|
+
}
|
|
68
|
+
.ui-lg-hidden {
|
|
69
|
+
display: none !important;
|
|
70
|
+
}
|
|
71
|
+
.ui-lg-border-right {
|
|
72
|
+
border-right: 1px solid #ddd;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media screen and (min-width: 90.063em) {
|
|
77
|
+
.ui-xl-visible {
|
|
78
|
+
display: block !important;
|
|
79
|
+
}
|
|
80
|
+
.ui-xl-hidden {
|
|
81
|
+
display: none !important;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.kanban-column {
|
|
86
|
+
border-radius: 12px !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.kanban-item {
|
|
90
|
+
border-radius: 12px !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
body .ui-tabview.ui-tabview-top > .ui-tabview-nav li.ui-state-active {
|
|
94
|
+
border-bottom-left-radius: 5px !important;
|
|
95
|
+
border-bottom-right-radius: 5px !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
body .ui-tabview.ui-tabview-top > .ui-tabview-nav li:hover {
|
|
99
|
+
border-bottom-left-radius: 5px !important;
|
|
100
|
+
border-bottom-right-radius: 5px !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
button.button-option-board {
|
|
104
|
+
span.s-button-text {
|
|
105
|
+
font-size: 1.2rem;
|
|
106
|
+
color: #333333 !important;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
.kanban-column {
|
|
110
|
+
.kanban-column__header {
|
|
111
|
+
div.content {
|
|
112
|
+
width: 100%;
|
|
113
|
+
|
|
114
|
+
form {
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
|
|
118
|
+
input {
|
|
119
|
+
width: 20px;
|
|
120
|
+
height: 20px;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.kanban-item, .kanban-column {
|
|
128
|
+
.kanban-item__header, .kanban-column__header {
|
|
129
|
+
.content {
|
|
130
|
+
gap: 0px !important;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.kanban-card-header {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
gap: 1rem;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.badge {
|
|
142
|
+
min-height: 1.5rem !important;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.no-padding {
|
|
146
|
+
padding: 0 !important;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/* Garante que o botão não mude de tamanho ao passar o mouse */
|
|
150
|
+
:host ::ng-deep .hover-border-reveal.p-button {
|
|
151
|
+
border: 1px solid transparent;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* Exibe a borda ao passar o mouse */
|
|
155
|
+
:host ::ng-deep .hover-border-reveal.p-button:hover {
|
|
156
|
+
border: 1px solid var(--surface-d, #dcdcdc); /* Usa uma variável de tema do PrimeNG ou um cinza padrão */
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
ul.list-box {
|
|
160
|
+
padding: 10px;
|
|
161
|
+
list-style-type: none;
|
|
162
|
+
|
|
163
|
+
li {
|
|
164
|
+
&:last-child {
|
|
165
|
+
border-bottom: none;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
&.list-box-item {
|
|
169
|
+
display: flex;
|
|
170
|
+
gap: 10px;
|
|
171
|
+
align-items: center;
|
|
172
|
+
width: 100%;
|
|
173
|
+
border-bottom: 1px solid #ccc;
|
|
174
|
+
padding: 10px 0;
|
|
175
|
+
|
|
176
|
+
&:hover {
|
|
177
|
+
background-color: #f9f9f9;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.list-box-item--completed {
|
|
182
|
+
text-decoration: line-through;
|
|
183
|
+
color: #888;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
&.list-box-new-item {
|
|
187
|
+
padding: 10px 0;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|