Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

css fixes on custom sources options #633

Merged
merged 1 commit into from
Dec 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions public/settings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,26 +88,28 @@ <h3>
autocomplete="off" /><span class="slider"></span
></label>
</div>
<div class="option">
<h3>Sources</h3>
<div id="src" class="option">
<h3><i class="fa-solid fa-server"></i>Sources</h3>

<p>
Configure your custom sources.<br />Eg. GitHub
Username/Repository.
</p>

<p>Configure your custom sources.</p>
<div class="option">
<div id="themecolor-picker">
<h3>Patches Organization</h3>
<input id="patch-org" class="searchBox" />
<h3>Patches Source</h3>
<input id="patch-src" class="searchBox" />
</div>
<div>
<h3>Patches Organization</h3>
<input id="patch-org" class="searchBox" />
<h3>Patches Source</h3>
<input id="patch-src" class="searchBox" />
</div>
<div class="option">
<div id="themecolor-picker">
<h3>Integrations Organization</h3>
<input id="integrations-org" class="searchBox" />
<h3>Integrations Source</h3>
<input id="integrations-src" class="searchBox" />
</div>

<div>
<h3>Integrations Organization</h3>
<input id="integrations-org" class="searchBox" />
<h3>Integrations Source</h3>
<input id="integrations-src" class="searchBox" />
</div>

<button class="highlighted" onclick="setSources();">
Set Sources
</button>
Expand Down
4 changes: 4 additions & 0 deletions public/styles/fontawesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@
content: '\f013';
}

.fa-server:before {
content: '\f233';
}

.fa-brands {
font-family: 'Font Awesome 6 Brands';
font-size: 400;
Expand Down
8 changes: 8 additions & 0 deletions public/styles/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,11 @@ p {
.check:checked + .slider {
background-color: var(--accentColor);
}

.option#src div {
padding: 0 8px 0 8px;
}

.option#src div input {
margin-bottom: 15px;
}