Settings/Appearance: improve CSS selector specificity

This commit is contained in:
Adorian Doran 2025-08-22 21:37:56 +03:00
parent e4a8258acf
commit 9b1da8c311
2 changed files with 4 additions and 4 deletions

View File

@ -28,9 +28,9 @@
--ck-mention-list-max-height: 500px; --ck-mention-list-max-height: 500px;
} }
body.motion-disabled *, body#trilium-app.motion-disabled *,
body.motion-disabled *::before, body#trilium-app.motion-disabled *::before,
body.motion-disabled *::after { body#trilium-app.motion-disabled *::after {
/* Disable transitions and animations */ /* Disable transitions and animations */
transition: none !important; transition: none !important;
animation: none !important; animation: none !important;

View File

@ -9,7 +9,7 @@
<link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest"> <link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">
<title>Trilium Notes</title> <title>Trilium Notes</title>
</head> </head>
<body class="desktop heading-style-<%= headingStyle %> layout-<%= layoutOrientation %> platform-<%= platform %> <%= isElectron ? 'electron' : '' %> <%= hasNativeTitleBar ? 'native-titlebar' : '' %> <%= hasBackgroundEffects ? 'background-effects' : '' %> <%= motionEnabled ? '' : 'motion-disabled' %>"> <body id="trilium-app" class="desktop heading-style-<%= headingStyle %> layout-<%= layoutOrientation %> platform-<%= platform %> <%= isElectron ? 'electron' : '' %> <%= hasNativeTitleBar ? 'native-titlebar' : '' %> <%= hasBackgroundEffects ? 'background-effects' : '' %> <%= motionEnabled ? '' : 'motion-disabled' %>">
<noscript><%= t("javascript-required") %></noscript> <noscript><%= t("javascript-required") %></noscript>
<script> <script>