-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Scripts, separate specific scripts/styles for components
- Loading branch information
Showing
27 changed files
with
1,080 additions
and
1,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* fruithost | OpenSource Hosting | ||
* | ||
* @author Adrian Preuß | ||
* @version 1.0.0 | ||
* @license MIT | ||
*/ | ||
|
||
div.terminal { | ||
position: relative; | ||
margin: 0 -1.5rem !important; | ||
width: calc(100% + 3rem); | ||
background: #282c34; | ||
color: #dcdfe4; | ||
box-shadow: inset 0px 2px 10px rgba(0, 0, 0, .25); | ||
} | ||
|
||
div.terminal div.output { | ||
height: calc(100% - 35px); | ||
overflow: auto; | ||
padding: 15px; | ||
line-height: 14px; | ||
font-size: 12px; | ||
font-family: 'Cascadia Mono'; | ||
} | ||
|
||
div.terminal div.output span[data-color="0;32"] { | ||
color: #9bc67c; | ||
} | ||
|
||
div.terminal div.output span[data-color="38;5;202"] { | ||
color: #e5c07b; | ||
} | ||
|
||
div.terminal input[name="command"] { | ||
height: 35px; | ||
width: 100%; | ||
background: rgba(255, 255, 255, 0.2); | ||
border: 0; | ||
padding: 10px; | ||
color: #FFFFFF; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* fruithost | OpenSource Hosting | ||
* | ||
* @author Adrian Preuß | ||
* @version 1.0.0 | ||
* @license MIT | ||
*/ | ||
|
||
.xdebug-error, .xdebug-var-dump { | ||
z-index: 9999999999; | ||
position: relative; | ||
overflow: visible !important; | ||
background: #FEFEFE; | ||
color: #000000; | ||
} | ||
|
||
[data-bs-theme="dark"] .xdebug-error, [data-bs-theme="dark"] .xdebug-var-dump { | ||
background: #444444; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* fruithost | OpenSource Hosting | ||
* | ||
* @author Adrian Preuß | ||
* @version 1.0.0 | ||
* @license MIT | ||
*/ | ||
.tree { | ||
position: relative; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-ms-flex-direction: column; | ||
flex-direction: column; | ||
min-width: 0; | ||
word-wrap: break-word; | ||
padding: 0; | ||
overflow: hidden; | ||
} | ||
|
||
.tree .list-group { | ||
margin-bottom: 0; | ||
} | ||
|
||
.tree .list-group-item { | ||
border-radius: 0; | ||
border-width: 1px 0 0 0; | ||
padding-top: 0.5rem; | ||
padding-bottom: 0.5rem; | ||
cursor: pointer; | ||
} | ||
|
||
.tree [data-type="directory"]::before { | ||
content: "\F3D9"; | ||
position: relative; | ||
display: inline-block; | ||
font-family: 'bootstrap-icons'; | ||
font-size: 20px; | ||
color: #f3c36b; | ||
} | ||
|
||
.tree .list-group-item:hover { | ||
background-color: #dee2e6; | ||
} | ||
|
||
.tree > .list-group-item:first-child { | ||
border-top-width: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* fruithost | OpenSource Hosting | ||
* | ||
* @author Adrian Preuß | ||
* @version 1.0.0 | ||
* @license MIT | ||
*/ | ||
div#module_info .module-icon { | ||
font-size: 100px; | ||
} | ||
|
||
div#module_info .carousel-caption { | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
color: #fff !important; | ||
background: rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
div#module_info div.markdown { | ||
background: var(--bs-modal-footer-border-color); | ||
padding: 20px; | ||
font-size: 16px; | ||
} | ||
|
||
div#module_info div.markdown h1 { | ||
font-size: 1.4rem; | ||
} | ||
|
||
div#module_info div.markdown h2 { | ||
font-size: 1.3rem; | ||
} | ||
|
||
div#module_info div.markdown h3 { | ||
font-size: 1.2rem; | ||
} | ||
|
||
div#module_info div.markdown h4 { | ||
font-size: 1.1rem; | ||
} | ||
|
||
div#module_info div.markdown h5 { | ||
font-size: 1.0rem; | ||
} | ||
|
||
div#module_info div.markdown h6 { | ||
font-size: 0.9rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* fruithost | OpenSource Hosting | ||
* | ||
* @author Adrian Preuß | ||
* @version 1.0.0 | ||
* @license MIT | ||
*/ | ||
|
||
.theme-switch { | ||
z-index: 99999; | ||
border-radius: 35%; | ||
color: var(--bs-emphasis-color); | ||
background-color: var(--bs-secondary-bg-subtle); | ||
} | ||
|
||
.theme-switch .bi { | ||
vertical-align: -.125em; | ||
fill: currentColor; | ||
} | ||
|
||
.theme-switch .btn-bd-primary:active, | ||
.theme-switch .btn-bd-primary:focus { | ||
--bs-btn-active-border-color: transparent; | ||
} | ||
|
||
.theme-switch .bd-mode-toggle { | ||
z-index: 1500; | ||
} | ||
|
||
.theme-switch .bd-mode-toggle .dropdown-menu .active .bi { | ||
display: block !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.