Fix dashboard styles
This commit is contained in:
parent
2c273ba68c
commit
f191d3a2b4
2
static/css/style.min.css
vendored
2
static/css/style.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1925,14 +1925,8 @@ a {
|
|||||||
border-color: #28a745;
|
border-color: #28a745;
|
||||||
}
|
}
|
||||||
|
|
||||||
body:not(.card-count) .fas,
|
.fas,
|
||||||
.fas :not(.card-count),
|
.fa {
|
||||||
.fas > :not(.card-count),
|
|
||||||
:not(button) .fas,
|
|
||||||
:not(input) .fas,
|
|
||||||
:not(.card-count) .fa,
|
|
||||||
:not(button) .fa,
|
|
||||||
:not(input) .fa {
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -1942,3 +1936,16 @@ body:not(.card-count) .fas,
|
|||||||
background-color: rgba(0, 0, 0, 0.093);
|
background-color: rgba(0, 0, 0, 0.093);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Exclude styles for .fas and .fa elements inside dashboard page */
|
||||||
|
.card-count .fas,
|
||||||
|
.card-count .fa {
|
||||||
|
font-size: 24px;
|
||||||
|
display: initial;
|
||||||
|
align-items: initial;
|
||||||
|
justify-content: initial;
|
||||||
|
width: initial;
|
||||||
|
height: initial;
|
||||||
|
background-color: initial;
|
||||||
|
border-radius: initial;
|
||||||
|
}
|
||||||
|
|||||||
@ -123,27 +123,27 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bg-light-aqua {
|
.bg-light-aqua {
|
||||||
background-color: rgba(32, 177, 177, 0.8);
|
background-color: rgba(32, 177, 177, 0.8) !important;
|
||||||
box-shadow: 0 0 0 10px rgba(32, 177, 177, 0.2);
|
box-shadow: 0 0 0 10px rgba(32, 177, 177, 0.2) !important;
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-light-orange {
|
.bg-light-orange {
|
||||||
background-color: rgba(253, 174, 28, 0.8);
|
background-color: rgba(253, 174, 28, 0.8) !important;
|
||||||
box-shadow: 0 0 0 10px rgba(253, 174, 28, 0.2);
|
box-shadow: 0 0 0 10px rgba(253, 174, 28, 0.2) !important;
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-light-purple {
|
.bg-light-purple {
|
||||||
background-color: rgba(203, 31, 255, 0.8);
|
background-color: rgba(203, 31, 255, 0.8) !important;
|
||||||
box-shadow: 0 0 0 10px rgba(203, 31, 255, 0.2);
|
box-shadow: 0 0 0 10px rgba(203, 31, 255, 0.2) !important;
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-light-red {
|
.bg-light-red {
|
||||||
background-color: rgba(255, 19, 157, 0.8);
|
background-color: rgba(255, 19, 157, 0.8) !important;
|
||||||
box-shadow: 0 0 0 10px rgba(255, 19, 157, 0.2);
|
box-shadow: 0 0 0 10px rgba(255, 19, 157, 0.2) !important;
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.activities ul {
|
.activities ul {
|
||||||
|
|||||||
@ -13,9 +13,7 @@
|
|||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div class="container">
|
<div class="manage-wrap">
|
||||||
|
|
||||||
<div class="manage-wrap">
|
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<div class="">
|
<div class="">
|
||||||
{% if request.user.is_superuser %}
|
{% if request.user.is_superuser %}
|
||||||
@ -38,10 +36,12 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="title-1">{{ course }}</div>
|
<div class="title-1">{{ course }}</div>
|
||||||
<p>{{ course.summary }}</p>
|
<p class="small text-muted">{{ course.summary }}</p>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
{% for message in messages %}
|
{% for message in messages %}
|
||||||
@ -214,7 +214,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="site-section mb-5 mt-4">
|
<div class="site-section mb-5 mt-4">
|
||||||
<div class="title-1">Instructor(s)</div>
|
<div class="title-1">Lecturer(s)</div>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
@ -228,8 +228,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<h5 class="fw-bold mb-0">{{ lecturer|title }}</h5>
|
<h5 class="fw-bold mb-0">{{ lecturer|title }}</h5>
|
||||||
<p class="mb-0">{{ lecturer.lecturer.email }}</p>
|
<p class="mb-0">{{ lecturer.lecturer.email }}</p>
|
||||||
<p class="text-muted small">Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod. Nullam id dolor id nibh ultricies
|
<p class="text-muted small">Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod.</p>
|
||||||
vehicula ut id elit.</p>
|
|
||||||
<p>
|
<p>
|
||||||
<a class="btn btn-sm btn-secondary" href="#" role="button"><i
|
<a class="btn btn-sm btn-secondary" href="#" role="button"><i
|
||||||
class="fab fa-twitter"></i></a>
|
class="fab fa-twitter"></i></a>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user