skin-dt-32 0.0.39 → 0.0.42
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/config/vueComponents.js +3 -3
- package/general.js +1 -1
- package/package.json +1 -1
- package/stylesheet.css +37 -10
package/config/vueComponents.js
CHANGED
|
@@ -172,7 +172,7 @@ Vue.component('navbar-foro', {
|
|
|
172
172
|
<div class="text">{{ item.name }}</div>
|
|
173
173
|
</a>
|
|
174
174
|
</li>
|
|
175
|
-
<li class="navbar-item">
|
|
175
|
+
<li class="navbar-item is-hidden-desktop">
|
|
176
176
|
<a :href="'/u' + dataUserid" :title="'Ir a tu ' + profileName">
|
|
177
177
|
<div class="icon">
|
|
178
178
|
<i class="far fa-id-card"></i>
|
|
@@ -744,7 +744,7 @@ Vue.component('tablon-superior', {
|
|
|
744
744
|
template: `
|
|
745
745
|
<section id="topbar-section" class="basic-element">
|
|
746
746
|
<categoria-foro data-id="tablon">
|
|
747
|
-
<ul class="columns is-multiline">
|
|
747
|
+
<ul class="columns is-gapless is-multiline">
|
|
748
748
|
<li class="column">
|
|
749
749
|
</li>
|
|
750
750
|
<li class="column is-full is-one-third-desktop">
|
|
@@ -753,7 +753,7 @@ Vue.component('tablon-superior', {
|
|
|
753
753
|
</ul>
|
|
754
754
|
</categoria-foro>
|
|
755
755
|
<categoria-foro data-id="navegacion">
|
|
756
|
-
<ul class="columns is-multiline">
|
|
756
|
+
<ul class="columns is-gapless is-multiline">
|
|
757
757
|
<li class="column">
|
|
758
758
|
<nav id="forum-breadcrumb" class="breadcrumb has-succeeds-separator left" aria-label="breadcrumbs">
|
|
759
759
|
<ul>
|
package/general.js
CHANGED
|
@@ -870,6 +870,6 @@ document.addEventListener('forumReady', () => {
|
|
|
870
870
|
if (document.querySelector('#forum-navbar .top')) {
|
|
871
871
|
const isImage = document.querySelector('#forum-navbar .top .user-avatar');
|
|
872
872
|
|
|
873
|
-
document.querySelector('#forum-navbar .top').style.height = ((isImage ? 40 : 0) + document.querySelector('#forum-navbar .top span').clientHeight) + 'px';
|
|
873
|
+
document.querySelector('#forum-navbar .top').style.height = ((isImage ? 40 + parseInt(getComputedStyle(isImage.fontSize)) * 2 : 0) + document.querySelector('#forum-navbar .top span').clientHeight) + 'px';
|
|
874
874
|
}
|
|
875
875
|
});
|
package/package.json
CHANGED
package/stylesheet.css
CHANGED
|
@@ -89,19 +89,19 @@ a {
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
#forum-navbar .user-avatar {
|
|
92
|
-
width:
|
|
93
|
-
height:
|
|
92
|
+
width: 52px;
|
|
93
|
+
height: 52px;
|
|
94
94
|
background-position: center;
|
|
95
95
|
background-size: cover;
|
|
96
96
|
border-radius: 100%;
|
|
97
|
-
border:
|
|
98
|
-
box-shadow: 0 0 0
|
|
99
|
-
margin:
|
|
97
|
+
border: 5px solid var(--color-two);
|
|
98
|
+
box-shadow: 0 0 0 3px var(--color-contrast);
|
|
99
|
+
margin: 1rem .875rem;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
#forum-navbar .top:hover .user-avatar {
|
|
103
|
-
border:
|
|
104
|
-
box-shadow: 0 0 0
|
|
103
|
+
border: 5px solid var(--color-contrast);
|
|
104
|
+
box-shadow: 0 0 0 3px var(--color-two);
|
|
105
105
|
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -148,6 +148,7 @@ a {
|
|
|
148
148
|
height: 80px;
|
|
149
149
|
background: var(--color-contrast);
|
|
150
150
|
color: var(--color-two);
|
|
151
|
+
font-size: .825rem;
|
|
151
152
|
font-weight: bold;
|
|
152
153
|
}
|
|
153
154
|
|
|
@@ -165,8 +166,7 @@ a {
|
|
|
165
166
|
/* Topbar */
|
|
166
167
|
#forum-topbar {
|
|
167
168
|
position: sticky;
|
|
168
|
-
top:
|
|
169
|
-
height: 200px;
|
|
169
|
+
top: -288px;
|
|
170
170
|
background: var(--color-three);
|
|
171
171
|
}
|
|
172
172
|
|
|
@@ -174,10 +174,37 @@ a {
|
|
|
174
174
|
margin: 0;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
+
#help-main {
|
|
178
|
+
display: flex;
|
|
179
|
+
flex-flow: row wrap;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
align-items: center;
|
|
182
|
+
padding: 2rem;
|
|
183
|
+
margin: -.5rem;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
#help-main>a {
|
|
187
|
+
width: 45%;
|
|
188
|
+
padding: .5rem;
|
|
189
|
+
text-align: center;
|
|
190
|
+
text-transform: uppercase;
|
|
191
|
+
border: 2px solid;
|
|
192
|
+
margin: .5rem;
|
|
193
|
+
color: var(--color-four);
|
|
194
|
+
}
|
|
195
|
+
|
|
177
196
|
#forum-breadcrumb {
|
|
178
|
-
|
|
197
|
+
display: flex;
|
|
198
|
+
justify-content: center;
|
|
199
|
+
align-items: center;
|
|
200
|
+
padding: 0 2rem;
|
|
179
201
|
background: var(--color-contrast);
|
|
180
202
|
color: var(--color-two);
|
|
203
|
+
font-size: .825rem;
|
|
204
|
+
font-weight: bold;
|
|
205
|
+
text-transform: uppercase;
|
|
206
|
+
height: 80px;
|
|
207
|
+
text-align: center;
|
|
181
208
|
}
|
|
182
209
|
|
|
183
210
|
#forum-breadcrumb a {
|