UI experience tweaks
This commit is contained in:
parent
8e5d2750ec
commit
8c30a7bd92
@ -34,7 +34,7 @@ const CellModList: React.FC<Props> = ({ mods, counts }) => {
|
||||
return (
|
||||
mods && (
|
||||
<>
|
||||
<h2>Mods ({modsWithCounts.length})</h2>
|
||||
<h2>Nexus Mods ({modsWithCounts.length})</h2>
|
||||
<ul className={styles["mod-list"]}>
|
||||
{modsWithCounts
|
||||
.sort((a, b) => b.unique_downloads - a.unique_downloads)
|
||||
|
@ -47,9 +47,12 @@ const DataDirPicker: React.FC<Props> = () => {
|
||||
return (
|
||||
<>
|
||||
<p className={styles["no-top-margin"]}>
|
||||
Select or drag-and-drop your <code>Data</code> directory below to load
|
||||
the plugins and see all of the cell edits and conflicts for your current
|
||||
mod load order.
|
||||
Select or drag-and-drop your{" "}
|
||||
<strong>
|
||||
<code>Data</code>
|
||||
</strong>{" "}
|
||||
directory below to load the plugins and see all of the cell edits and
|
||||
conflicts for your current mod load order.
|
||||
</p>
|
||||
<input
|
||||
type="file"
|
||||
|
@ -37,7 +37,7 @@ const PluginModList: React.FC<Props> = ({ mods, files, counts }) => {
|
||||
return (
|
||||
mods && (
|
||||
<>
|
||||
<h2>Mods ({modsWithCounts.length})</h2>
|
||||
<h2>Nexus Mods ({modsWithCounts.length})</h2>
|
||||
<ul className={styles["mod-list"]}>
|
||||
{modsWithCounts
|
||||
.sort((a, b) => b.unique_downloads - a.unique_downloads)
|
||||
|
@ -34,8 +34,15 @@ const PluginsLoader: React.FC<Props> = () => {
|
||||
return (
|
||||
<>
|
||||
<p>
|
||||
Paste or drag-and-drop your <code>plugins.txt</code> below to sort and
|
||||
enable the loaded plugins by your current load order.
|
||||
Paste or drag-and-drop your{" "}
|
||||
<strong>
|
||||
<code>plugins.txt</code>
|
||||
</strong>{" "}
|
||||
below to sort and enable the loaded plugins by your current load order.
|
||||
The plugins.txt file is typically found at{" "}
|
||||
<strong>
|
||||
<code>%LOCALAPPDATA%\Skyrim Special Edition\plugins.txt</code>
|
||||
</strong>
|
||||
</p>
|
||||
<button onClick={onPluginsTxtButtonClick} className={styles.button}>
|
||||
{!pluginsTxt ? "Paste" : "Edit"} Skyrim plugins.txt file
|
||||
@ -46,10 +53,16 @@ const PluginsLoader: React.FC<Props> = () => {
|
||||
<h3>Paste plugins.txt</h3>
|
||||
<p>
|
||||
The plugins.txt file is typically found at{" "}
|
||||
<code>
|
||||
C:\Users\username\AppData\Local\Skyrim Special Edition
|
||||
</code>
|
||||
. You can also drag-and-drop the file anywhere on the window to
|
||||
<strong>
|
||||
<code>
|
||||
C:\Users\username\AppData\Local\Skyrim Special Edition
|
||||
</code>
|
||||
</strong>{" "}
|
||||
(or{" "}
|
||||
<strong>
|
||||
<code>%LOCALAPPDATA%\Skyrim Special Edition</code>
|
||||
</strong>
|
||||
) . You can also drag-and-drop the file anywhere on the window to
|
||||
load the file.
|
||||
</p>
|
||||
<textarea
|
||||
|
@ -1,4 +1,5 @@
|
||||
.cell-data-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
.mod-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mod-list-item {
|
||||
|
@ -1,6 +1,7 @@
|
||||
.cell-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.cell-list-item {
|
||||
|
@ -1,6 +1,7 @@
|
||||
.plugin-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.plugin-list li {
|
||||
@ -50,6 +51,7 @@
|
||||
padding-right: 12px;
|
||||
padding-left: 12px;
|
||||
justify-content: space-evenly;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.buttons button {
|
||||
|
@ -1,6 +1,7 @@
|
||||
.mod-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mod-list-item {
|
||||
@ -14,8 +15,9 @@
|
||||
.file-list {
|
||||
list-style-type: none;
|
||||
padding-left: 8px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.file-list li {
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user