mirror of
https://github.com/directus/directus.git
synced 2026-01-15 03:48:07 -05:00
* Add migration to remove default value from project_color * Upgrade the default theme * Do a pass over the header buttons * Do another pass over --warning uses * Little things * Tweak smoke * Use updated map * Use dark system elements in dark mode * Remove outdated files, update toasts * Use correct delete button style for role * Use primary for created point * Tweak spacing in revisions section * Use primary for sidebar sections * Various color tweaks and changes * Update base color palette * Update "css reset" code * Remove splashscreens, add default favicon * Add primary highlight to datamodel page * dark mode color update * fix sign out hover color * Does this help?! * This fixes some loading issues Fixes https://github.com/directus/directus/issues/10707 * Calculate default pretty background? * Fix public view with logo * Fix responsiveness of login page * adjust notification group width to be equal * Do an absolute pointless task that doesn't do anything It was suggested that it could fix the stylelint error in tests, but alas * Remove stylelint Doesn't seem to play nice with script setup and other changes Co-authored-by: Ben Haynes <ben@rngr.org>
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<base />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1, viewport-fit=cover"
|
|
/>
|
|
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
|
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no" />
|
|
<meta name="HandheldFriendly" content="true" />
|
|
<meta name="MobileOptimized" content="width" />
|
|
<meta name="msapplication-TileColor" content="#263238" />
|
|
<meta name="theme-color" content="#263238" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#263238" />
|
|
<title>Loading…</title>
|
|
<style id="custom-css"></style>
|
|
</head>
|
|
<body class="light">
|
|
<noscript>
|
|
<strong>We're sorry but Directus doesn't work without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
|
|
<div id="app"></div>
|
|
|
|
<div id="dialog-outlet"></div>
|
|
<div id="menu-outlet"></div>
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|