@nixweb/nixloc-ui 0.0.73 → 0.0.76
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
CHANGED
|
@@ -82,7 +82,7 @@ export default {
|
|
|
82
82
|
border: none;
|
|
83
83
|
border-radius: 40px !important;
|
|
84
84
|
font-size: 13px !important;
|
|
85
|
-
font-weight:
|
|
85
|
+
font-weight: normal;
|
|
86
86
|
font-style: normal !important;
|
|
87
87
|
letter-spacing: 1px !important;
|
|
88
88
|
-webkit-box-shadow: 0px 10px 20px -6px rgb(0 0 0 / 12%);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="menu-container">
|
|
2
|
+
<div class="menu-container" :class="{ 'menu-aberto': subMenuPrimeiroNivel }">
|
|
3
3
|
<ul class="menu">
|
|
4
4
|
<li>
|
|
5
5
|
<a
|
|
@@ -32,16 +32,15 @@
|
|
|
32
32
|
</ul>
|
|
33
33
|
|
|
34
34
|
<transition name="slide-fade">
|
|
35
|
-
<div class="context-menu-container" v-
|
|
35
|
+
<div class="context-menu-container" v-if="subMenuPrimeiroNivel">
|
|
36
36
|
<ul class="context-menu">
|
|
37
37
|
<li v-for="(item, index) in subMenuFiltro(false)" :key="index">
|
|
38
38
|
<h5 v-if="item.tipo === 'grupo'" class="context-menu__title">
|
|
39
|
-
<
|
|
40
|
-
{{ item.grupoNome }}
|
|
39
|
+
<span class="sub-titulo"> {{ item.grupoNome }}</span>
|
|
41
40
|
<span
|
|
42
41
|
v-if="index === 0"
|
|
43
42
|
@click.prevent="fecharSubMenu"
|
|
44
|
-
class="context-menu__btn-close"
|
|
43
|
+
class="context-menu__btn-close icone-fechar"
|
|
45
44
|
href="#"
|
|
46
45
|
>
|
|
47
46
|
<i class="fas fa-times-circle"></i>
|
|
@@ -130,23 +129,35 @@ export default {
|
|
|
130
129
|
</script>
|
|
131
130
|
|
|
132
131
|
<style scoped>
|
|
132
|
+
.menu-aberto {
|
|
133
|
+
width: 277px;
|
|
134
|
+
}
|
|
135
|
+
|
|
133
136
|
.div-icone {
|
|
134
|
-
width:
|
|
135
|
-
height:
|
|
137
|
+
width: 35px;
|
|
138
|
+
height: 35px;
|
|
136
139
|
text-align: center;
|
|
137
|
-
padding-top:
|
|
138
|
-
border-radius:
|
|
140
|
+
padding-top: 5px;
|
|
141
|
+
border-radius: 10px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icone-fechar {
|
|
145
|
+
margin-right: 30px;
|
|
139
146
|
}
|
|
140
147
|
|
|
141
148
|
.icone {
|
|
142
149
|
color: white;
|
|
143
|
-
font-size:
|
|
150
|
+
font-size: 18px;
|
|
144
151
|
}
|
|
145
152
|
|
|
146
153
|
.titulo {
|
|
147
154
|
margin-left: 15px;
|
|
148
|
-
font-size:
|
|
155
|
+
font-size: 15px;
|
|
156
|
+
font-weight: normal;
|
|
149
157
|
}
|
|
150
158
|
|
|
151
|
-
|
|
159
|
+
.sub-titulo {
|
|
160
|
+
font-size: 16px;
|
|
161
|
+
font-weight: normal;
|
|
162
|
+
}
|
|
152
163
|
</style>
|
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
<div class="row">
|
|
14
14
|
<div class="col-10">
|
|
15
15
|
<div class="div-titulo">
|
|
16
|
-
<
|
|
17
|
-
<span class="modulo"> {{ modulo }} </span> /
|
|
16
|
+
<span class="modulo"> {{ modulo }} /</span>
|
|
18
17
|
<span class="titulo"> {{ titulo }}</span>
|
|
19
18
|
</div>
|
|
20
19
|
</div>
|
|
@@ -97,7 +96,7 @@ export default {
|
|
|
97
96
|
<style scoped>
|
|
98
97
|
.c-container {
|
|
99
98
|
margin: auto;
|
|
100
|
-
padding-left:
|
|
99
|
+
padding-left: 220px;
|
|
101
100
|
padding-right: 30px;
|
|
102
101
|
max-width: 1400px;
|
|
103
102
|
}
|
|
@@ -106,10 +105,15 @@ export default {
|
|
|
106
105
|
margin-top: 15px;
|
|
107
106
|
}
|
|
108
107
|
|
|
108
|
+
.modulo {
|
|
109
|
+
font-size: 18px;
|
|
110
|
+
font-weight: 300;
|
|
111
|
+
}
|
|
112
|
+
|
|
109
113
|
.titulo {
|
|
110
|
-
font-size:
|
|
111
|
-
font-weight:
|
|
112
|
-
|
|
114
|
+
font-size: 20px;
|
|
115
|
+
font-weight: normal;
|
|
116
|
+
line-height: 34px;
|
|
113
117
|
color: #577696;
|
|
114
118
|
}
|
|
115
119
|
|
|
@@ -215,9 +215,9 @@ table tbody tr td {
|
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
.titulo-cabecalho {
|
|
218
|
-
font-size:
|
|
218
|
+
font-size: 18px;
|
|
219
219
|
color: #757d8c;
|
|
220
|
-
font-weight:
|
|
220
|
+
font-weight: 500;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
.tabela-numero {
|
|
@@ -226,8 +226,7 @@ table tbody tr td {
|
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
.tabela-principal {
|
|
229
|
-
|
|
230
|
-
color: #577696;
|
|
229
|
+
color: #757d8c;
|
|
231
230
|
max-width: 200px;
|
|
232
231
|
}
|
|
233
232
|
|