Skip to content
Snippets Groups Projects
Commit dabda247 authored by Антон Шалимов's avatar Антон Шалимов
Browse files

css

parent bb2294be
Branches
No related merge requests found
......@@ -28,18 +28,16 @@
<div class="GeneralStudentsList">
<h2 class="BlueTitle">Прикрепленные студенты</h2>
{% for group in Groups %}
<div>
<div class="GradeAndGroupTitle ActionShowHideGroupContainer" id="{{ group.GroupID }}">
<span class="info">{{ group.Degree }}, курс {{ group.GradeNum }} группа {{ group.GroupNum }}</span>
<span class="Action">Открыть список ▼</span>
</div>
<div class="GradeAndGroupTitle ActionShowHideGroupContainer" id="{{ group.GroupID }}">
<span class="info">{{ group.Degree }}, курс {{ group.GradeNum }} группа {{ group.GroupNum }}</span>
<span class="Action">Открыть список ▼</span>
</div>
<div class="GroupContainer">
<div class="hideListAction"></div>
{% for student in group.students %}
{{ idx.outputStudent(student) }}
{% endfor %}
</div>
<div class="GroupContainer">
<div class="hideListAction"></div>
{% for student in group.students %}
{{ idx.outputStudent(student) }}
{% endfor %}
</div>
{% endfor %}
</div>
......
......@@ -407,6 +407,8 @@
}
.StudentsList .GroupContainer {
display: none;
padding-right: 4px;
padding-bottom: 4px;
}
.StudentsList .GroupContainer .hideListAction{
float: left;
......@@ -418,28 +420,26 @@
.StudentsList .GroupContainer .hideListAction:hover{
background-color: #e1e1e1;
}
.StudentsList .GroupContainerAttached .groupInfo{
float: left;
background: #f9f9f9;
width: 40px;
height: 100%;
margin-top: 10px;
text-align: center;
.StudentsList .GroupContainerAttached {
padding-right: 4px;
padding-bottom: 4px;
}
.StudentsList .GroupContainerAttached .groupInfo{
float: left;
background: #f9f9f9;
width: 40px;
margin-top: 10px;
.groupInfoAlone {
height: 18px;
width: 35px;
text-align: center;
margin-top: 5px;
float: right;
background-color: #ffffff;
border-radius: 3px 0 0 3px;
font: 12pt sans-serif;
color: #0183ce;
}
text-align: center;
}
.groupInfoAlone {
text-align: center;
margin: 7px auto;
border-radius: 3px 0 0 3px;
font: 12pt sans-serif;
color: #0183ce;
}
.searchBtn {
display: inline-block;
......@@ -450,6 +450,7 @@
width: 880px;
margin-top: 10px;
padding: 7px 10px;
box-shadow: 2px 2px 2px #DDE8F0;
}
.StudentsList .GroupContainerAttached .Student {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment