Skip to content

Commit

Permalink
Merge pull request #22 from FinnHornhoover/main
Browse files Browse the repository at this point in the history
Offline Caches & Configuration
  • Loading branch information
CakeLancelot authored Jun 7, 2024
2 parents b5ab9aa + 16a1589 commit d52e149
Show file tree
Hide file tree
Showing 13 changed files with 38,003 additions and 40 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
*.js text eol=lf
*.json text eol=lf
*.md text eol=lf

defaults/* linguist-vendored
lib/* linguist-vendored
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ version
resources/app/files/rankurl.txt
node_modules/
dist/
UnityBugReporter.exe
UnityBugReporter.exe
cache_handler/*/
extra/
*.sh
yarn.lock
43 changes: 43 additions & 0 deletions assets/css/openfusion.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ body {
background-repeat: repeat;
}

.btn-warning {
background-image: url("../../assets/img/btn-warning-bg.png");
background-repeat: repeat;
}

#of-aboutmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
Expand All @@ -105,6 +110,36 @@ body {
border-color: #6699ff;
}

#of-editcacheconfigmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

#of-editconfigmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

#of-addversionmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

#of-editversionmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

#of-deleteversionmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

#of-restoreversionsmodal > .modal-dialog > .modal-content {
background-color: #093363;
border-color: #6699ff;
}

.form-control,
.form-control:focus {
border-color: #0099ff;
Expand All @@ -118,6 +153,14 @@ select {
color: #fff;
}

.modal {
overflow-y: auto;
}

.invalidinput {
border-color: #ff0000;
}

button:disabled {
cursor: not-allowed;
pointer-events: all !important;
Expand Down
Binary file added assets/img/btn-warning-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d52e149

Please sign in to comment.