mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 01:35:28 +01:00
Merge branch 'enhancement/improve_visibility_wizards_tab' into 'dev'
Enhancement/improve visibility wizards tab See merge request crafty-controller/crafty-4!633
This commit is contained in:
commit
f39f8bd5cd
@ -21,6 +21,7 @@
|
||||
- Add get_users command to Crafty's console ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/620))
|
||||
- Make files hover cursor pointer ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/627))
|
||||
- Use `Jar` class naming for jar refresh to make room for steamCMD naming in the future ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/630))
|
||||
- Improve ui visibility of Build Wizard selection tabs ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/633))
|
||||
### Lang
|
||||
TBD
|
||||
<br><br>
|
||||
|
@ -22979,27 +22979,42 @@ ul li {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.tab-simple-styled {
|
||||
.nav-tabs.tab-simple-styled {
|
||||
border-bottom: none;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item {
|
||||
.nav-tabs.tab-simple-styled .nav-item {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item .nav-link {
|
||||
.nav-tabs.tab-simple-styled .nav-item .nav-link {
|
||||
border: none;
|
||||
padding: 0;
|
||||
color: var(--base-text);
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item .nav-link.active {
|
||||
.nav-tabs.tab-simple-styled .nav-item .nav-link.active {
|
||||
background: var(--dropdown-bg);
|
||||
color: var(--info);
|
||||
}
|
||||
|
||||
.nav-pills.tab-simple-styled {
|
||||
border-bottom: none;
|
||||
/*margin-top: 1.5rem;*/
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/*.nav-pills.tab-simple-styled .nav-item {
|
||||
margin-right: 1.5rem;
|
||||
}*/
|
||||
|
||||
.nav-pills.tab-simple-styled .nav-item .nav-link.active {
|
||||
background: var(--info);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.tab-tile-style {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
|
@ -21494,27 +21494,42 @@ ul li {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.tab-simple-styled {
|
||||
.nav-tabs.tab-simple-styled {
|
||||
border-bottom: none;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item {
|
||||
.nav-tabs.tab-simple-styled .nav-item {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item .nav-link {
|
||||
.nav-tabs.tab-simple-styled .nav-item .nav-link {
|
||||
border: none;
|
||||
padding: 0;
|
||||
color: var(--gray);
|
||||
}
|
||||
|
||||
.tab-simple-styled .nav-item .nav-link.active {
|
||||
.nav-tabs.tab-simple-styled .nav-item .nav-link.active {
|
||||
background: #fff;
|
||||
color: var(--info);
|
||||
}
|
||||
|
||||
.nav-pills.tab-simple-styled {
|
||||
border-bottom: none;
|
||||
/*margin-top: 1.5rem;*/
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/*.nav-pills.tab-simple-styled .nav-item {
|
||||
margin-right: 1.5rem;
|
||||
}*/
|
||||
|
||||
.nav-pills.tab-simple-styled .nav-item .nav-link.active {
|
||||
background: var(--info);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.tab-tile-style {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
|
@ -5,7 +5,7 @@
|
||||
{% block content %}
|
||||
|
||||
<div class="content-wrapper">
|
||||
<ul class="nav nav-tabs col-md-12 tab-simple-styled " role="tablist">
|
||||
<ul class="nav nav-pills tab-simple-styled " role="tablist">
|
||||
<li class="nav-item term-nav-item">
|
||||
<a class="nav-link" href="/server/step1" role="tab" aria-selected="false">
|
||||
<i class="fas fa-file-signature"></i>Minecraft-Java</a>
|
||||
|
@ -5,7 +5,7 @@
|
||||
{% block content %}
|
||||
|
||||
<div class="content-wrapper">
|
||||
<ul class="nav nav-tabs col-md-12 tab-simple-styled " role="tablist">
|
||||
<ul class="nav nav-pills tab-simple-styled">
|
||||
<li class="nav-item term-nav-item">
|
||||
<a class="nav-link active" href="/server/step1" role="tab" aria-selected="false">
|
||||
<i class="fas fa-file-signature"></i>Minecraft-Java</a>
|
||||
|
Loading…
x
Reference in New Issue
Block a user