TW3.0 upgrade
This commit is contained in:
677
package-lock.json
generated
677
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -13,20 +13,20 @@
|
||||
"@inertiajs/inertia": "^0.10.0",
|
||||
"@inertiajs/inertia-vue": "^0.7.1",
|
||||
"@inertiajs/progress": "^0.2.6",
|
||||
"@tailwindcss/forms": "^0.3.2",
|
||||
"@tailwindcss/typography": "^0.4.1",
|
||||
"autoprefixer": "^10.2.5",
|
||||
"@tailwindcss/forms": "^0.4.0",
|
||||
"@tailwindcss/typography": "^0.5.0",
|
||||
"autoprefixer": "^10.4.0",
|
||||
"axios": "^0.21.1",
|
||||
"balloon-css": "^1.2.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"laravel-mix": "^6.0.25",
|
||||
"lodash": "^4.17.15",
|
||||
"portal-vue": "^2.1.7",
|
||||
"postcss": "^8.2.13",
|
||||
"postcss": "^8.4.5",
|
||||
"resolve-url-loader": "^3.1.0",
|
||||
"sass": "^1.15.2",
|
||||
"sass-loader": "^8.0.0",
|
||||
"tailwindcss": "^2.2.4",
|
||||
"tailwindcss": "^3.0.7",
|
||||
"v-click-outside": "^3.1.2",
|
||||
"vue": "^2.6.11",
|
||||
"vue-clipboard2": "^0.3.1",
|
||||
|
||||
159861
public/css/app.css
vendored
159861
public/css/app.css
vendored
File diff suppressed because it is too large
Load Diff
2
public/js/app.js
vendored
2
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
@@ -41,7 +41,7 @@
|
||||
</DropdownListItem>
|
||||
<DropdownListItem v-if="$page.props.settings.billing" :to="route('profile.billing.index')">{{ __('Billing') }}
|
||||
</DropdownListItem>
|
||||
<DropdownListItem class="text-danger" v-if="$page.props.auth.user.role === 'admin'"
|
||||
<DropdownListItem class="!text-danger" v-if="$page.props.auth.user.role === 'admin'"
|
||||
:to="route('admin.dashboard')">{{ __('Administration') }}
|
||||
</DropdownListItem>
|
||||
<DropdownListItem :to="route('logout')" component-is="button" method="post">{{ __('Sign out') }}
|
||||
|
||||
24
tailwind.config.js
vendored
24
tailwind.config.js
vendored
@@ -1,14 +1,8 @@
|
||||
module.exports = {
|
||||
purge: {
|
||||
content: [
|
||||
'./resources/js/**/*.vue',
|
||||
'./resources/views/**/*.blade.php',
|
||||
],
|
||||
options: {
|
||||
whitelistPatternsChildren: [],
|
||||
whitelist: ['theme--dark'],
|
||||
}
|
||||
},
|
||||
|
||||
plugins: [
|
||||
require('@tailwindcss/forms'),
|
||||
@@ -18,21 +12,21 @@ module.exports = {
|
||||
theme: {
|
||||
extend: {
|
||||
maxWidth: {
|
||||
'top-bar-container' : 'var(--top-bar-container)'
|
||||
'top-bar-container': 'var(--top-bar-container)'
|
||||
},
|
||||
backgroundColor: {
|
||||
'top-bar' : 'var(--top-bar-background-color)',
|
||||
'tab-bar' : 'var(--tab-bar-background-color)',
|
||||
'tab-bar-item' : 'var(--tab-bar-item-active-background-color)',
|
||||
'top-bar': 'var(--top-bar-background-color)',
|
||||
'tab-bar': 'var(--tab-bar-background-color)',
|
||||
'tab-bar-item': 'var(--tab-bar-item-active-background-color)',
|
||||
},
|
||||
height: {
|
||||
'top-bar-logo' : 'var(--top-bar-logo-height)'
|
||||
'top-bar-logo': 'var(--top-bar-logo-height)'
|
||||
},
|
||||
textColor: {
|
||||
'breadcrumbs' : 'var(--breadcrumbs-text-color)',
|
||||
'top-bar' : 'var(--top-bar-text-color)',
|
||||
'tab-bar' : 'var(--tab-bar-item-text-color)',
|
||||
'tab-bar-active' : 'var(--tab-bar-item-active-text-color)',
|
||||
'breadcrumbs': 'var(--breadcrumbs-text-color)',
|
||||
'top-bar': 'var(--top-bar-text-color)',
|
||||
'tab-bar': 'var(--tab-bar-item-text-color)',
|
||||
'tab-bar-active': 'var(--tab-bar-item-active-text-color)',
|
||||
},
|
||||
borderRadius: {
|
||||
default: 'var(--border-radius)',
|
||||
|
||||
Reference in New Issue
Block a user