Skip to content

Commit e62e3ba

Browse files
committed
More fixes
1 parent 6e26f19 commit e62e3ba

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

resources/assets/scripts/components/auth/ForgotPassword.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default Vue.component('forgot-password', {
8181
</button>
8282
</div>
8383
<div class="pt-6 text-center">
84-
<router-link class="text-xs textneutral-500stracking-wide no-underline uppercase hover:text-neutral-600"
84+
<router-link class="text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600"
8585
aria-label="Go to login"
8686
:to="{ name: 'login' }"
8787
>

resources/assets/scripts/components/auth/LoginForm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default Vue.component('login-form', {
102102
</button>
103103
</div>
104104
<div class="pt-6 text-center">
105-
<router-link class="text-xs textneutral-500stracking-wide no-underline uppercase hover:text-neutral-600" aria-label="Forgot password"
105+
<router-link class="text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600" aria-label="Forgot password"
106106
:to="{ name: 'forgot-password' }">
107107
{{ $t('auth.forgot_password.label') }}
108108
</router-link>

resources/assets/scripts/components/auth/ResetPassword.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default Vue.component('reset-password', {
110110
</button>
111111
</div>
112112
<div class="pt-6 text-center">
113-
<router-link class="text-xs textneutral-500stracking-wide no-underline uppercase hover:text-neutral-600"
113+
<router-link class="text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600"
114114
:to="{ name: 'login' }"
115115
>
116116
{{ $t('auth.go_to_login') }}

resources/assets/scripts/components/auth/TwoFactorForm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default Vue.component('two-factor-form', {
6969
</button>
7070
</div>
7171
<div class="pt-6 text-center">
72-
<router-link class="text-xs textneutral-500stracking-wide no-underline uppercase hover:text-neutral-600"
72+
<router-link class="text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600"
7373
:to="{ name: 'login' }"
7474
>
7575
Back to Login

resources/assets/scripts/components/core/Modal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default Vue.component('modal', {
3434
<div class="modal-container" @click.stop>
3535
<div v-on:click="close">
3636
<icon name="x"
37-
class="absolute pin-r pin-t m-2 textneutral-500scursor-pointer"
37+
class="absolute pin-r pin-t m-2 text-neutral-500 cursor-pointer"
3838
aria-label="Close modal"
3939
role="button"
4040
/>

resources/assets/scripts/components/server/components/database/DatabaseRow.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<template>
2-
<div class="content-box mb-6 hover:borderneutral-500">
2+
<div class="content-box mb-6 hover:border-neutral-500">
33
<div class="flex items-center text-neutral-800">
4-
<database-icon class="flex-none text-green"></database-icon>
4+
<database-icon class="flex-none text-green-500"></database-icon>
55
<div class="flex-1 px-4">
6-
<p class="uppercase text-xs textneutral-500spb-1 select-none">Database Name</p>
6+
<p class="uppercase text-xs text-neutral-500 pb-1 select-none">Database Name</p>
77
<p>{{database.name}}</p>
88
</div>
99
<div class="flex-1 px-4">
10-
<p class="uppercase text-xs textneutral-500spb-1 select-none">Username</p>
10+
<p class="uppercase text-xs text-neutral-500 pb-1 select-none">Username</p>
1111
<p>{{database.username}}</p>
1212
</div>
1313
<div class="flex-1 px-4">
14-
<p class="uppercase text-xs textneutral-500spb-1 select-none">Password</p>
14+
<p class="uppercase text-xs text-neutral-500 pb-1 select-none">Password</p>
1515
<p>
1616
<code class="text-sm cursor-pointer" v-on:click="revealPassword">
1717
<span class="select-none" v-if="!database.showPassword">
@@ -22,7 +22,7 @@
2222
</p>
2323
</div>
2424
<div class="flex-1 px-4">
25-
<p class="uppercase text-xs textneutral-500spb-1 select-none">Server</p>
25+
<p class="uppercase text-xs text-neutral-500 pb-1 select-none">Server</p>
2626
<p><code class="text-sm">{{database.host.address}}:{{database.host.port}}</code></p>
2727
</div>
2828
<div class="flex-none px-4">

resources/assets/scripts/components/server/subpages/FileManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export default Vue.component('file-manager', {
136136
<div class="alert error" v-text="errorMessage"></div>
137137
</div>
138138
<div v-else-if="!directories.length && !files.length">
139-
<p class="textneutral-500stext-sm text-center p-6 pb-4">This directory is empty.</p>
139+
<p class="text-neutral-500 text-sm text-center p-6 pb-4">This directory is empty.</p>
140140
</div>
141141
<div class="filemanager" v-else>
142142
<div class="header">

resources/assets/styles/components/buttons.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@apply .border .border-neutral-400 .text-neutral-600;
3636

3737
&:hover:enabled {
38-
@apply .borderneutral-500s.text-neutral-800;
38+
@apply .border-neutral-500 .text-neutral-800;
3939
}
4040

4141
&.btn-red:hover:enabled {

resources/assets/styles/components/filemanager.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
@apply .px-4 .py-3 .mb-6 .rounded .bg-white .text-neutral-800 .shadow-md;
6969

7070
& a {
71-
@apply .no-underline .text-blue;
71+
@apply .no-underline .text-primary-500;
7272
transition: color 50ms ease-in;
7373

7474
&:hover {

resources/assets/styles/components/forms.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ input[type=number] {
4040
}
4141

4242
.input-open > label {
43-
@apply .block .uppercase .tracking-wide .textneutral-500s.text-xs .mb-2 .absolute;
43+
@apply .block .uppercase .tracking-wide .text-neutral-500 .text-xs .mb-2 .absolute;
4444
top: 14px;
4545
transition: transform 200ms ease-out;
4646
}
@@ -61,7 +61,7 @@ input[type=number] {
6161
}
6262

6363
&.error {
64-
@apply .text-red-600 .border-red;
64+
@apply .text-red-600 .border-red-500;
6565
}
6666
}
6767

@@ -70,7 +70,7 @@ input[type=number] {
7070
}
7171

7272
.input-help {
73-
@apply .text-xs .textneutral-500s.pt-2;
73+
@apply .text-xs .text-neutral-500 .pt-2;
7474

7575
&.error {
7676
@apply .text-red-600;

0 commit comments

Comments
 (0)