@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.73",
3
+ "version": "0.0.76",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -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: 400;
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%);
@@ -45,7 +45,7 @@ export default {
45
45
  overflow: hidden;
46
46
  z-index: 20;
47
47
  padding: 18px;
48
- margin-left: 220px;
48
+ margin-left: 240px;
49
49
  }
50
50
 
51
51
  .tamanho {
@@ -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-show="subMenuPrimeiroNivel">
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
- <i :class="item.icone" aria-hidden="true"></i>
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: 30px;
135
- height: 30px;
137
+ width: 35px;
138
+ height: 35px;
136
139
  text-align: center;
137
- padding-top: 3px;
138
- border-radius: 8px;
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: 16px;
150
+ font-size: 18px;
144
151
  }
145
152
 
146
153
  .titulo {
147
154
  margin-left: 15px;
148
- font-size: 14px;
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
- <i class="fas fa-arrow-circle-right"></i>
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: 240px;
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: 16px;
111
- font-weight: bold;
112
- margin-top: 16px;
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: 15px;
218
+ font-size: 18px;
219
219
  color: #757d8c;
220
- font-weight: bold;
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
- font-size: 14px;
230
- color: #577696;
229
+ color: #757d8c;
231
230
  max-width: 200px;
232
231
  }
233
232