This commit is contained in:
ken 2026-07-30 17:26:44 +08:00
parent 7a63eac73a
commit 5a4b917b23
3 changed files with 114 additions and 14 deletions

View File

@ -338,4 +338,74 @@ position: relative;
transform: scale(1.1, 1.1);
}
}
}
}
.active-show-table {
border: 0.0625em solid #ddd;
border-top: 5px solid #6E9E4D;
.active-title-value{
a{
font-size: 1em;
font-weight: 400;
border-radius: 2px;
padding: 5px;
background-color: #DF5925;
color: #fff;
letter-spacing: 1px;
display: inline-block;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
-webkit-transition: all 200ms;
width: 110px;
}
}
.fa-calendar{
display: none;
}
tr{
border-top: 0.0625em solid #ddd;
}
.active-title-field {
font-weight: 400;
color: #54685e;
}
tbody>tr>th{
border-top:0;
}
tbody>tr>td{
border-top:0;
}
tbody>tr:nth-of-type(odd) {
background-color: transparent;
}
}
.active-show-title{
text-align: left;
letter-spacing: 3px;
background: url(/assets/titleicon.png) no-repeat left top;
padding: 6px 0 5px 50px;
width: 100%;
border-bottom: 1px dotted #D0D9CA;
font-size: 1.7em;
line-height: 150%;
}
#new-act-signup{
legend{
text-align: left;
letter-spacing: 3px;
background: url(/assets/titleicon.png) no-repeat left top;
padding: 6px 0 5px 50px;
width: 100%;
border-bottom: 1px dotted #D0D9CA;
font-size: 1.7em;
line-height: 150%;
}
}
.form-horizontal .control-label {
color: #54685e;
@media (min-width: 769px) {
padding-top: 0!important;
}
}

View File

@ -95,9 +95,6 @@
background-color: transparent;
box-shadow: none;
margin: 0;
}
.sitemenu-title{
display: none;
}
.active{
background: #857500!important;

View File

@ -5,20 +5,53 @@
<thead>
<tr>
<th class="col-md-2">{{th_category}}</th>
<th class="col-md-2">{{th_act_time_range}}</th>
<th class="col-md-5">{{th_title}}</th>
<th class="col-md-2">{{th_sign_up_time_range}}</th>
<th class="col-md-2">{{th_sign_up}}</th>
<th class="col-md-3">{{th_act_time_range}}</th>
<th class="col-md-3">{{th_title}}</th>
<th class="col-md-3">{{th_sign_up_time_range}}</th>
<th class="col-md-1">{{th_sign_up}}</th>
</tr>
</thead>
<tbody data-level="0" data-list="acts">
<tr>
<td>{{category}}</td>
<td>{{act_start_date}} ~ <br /> {{act_end_date}}</td>
<td>{{title}}</td>
<td>{{sign_start_date}} ~ <br /> {{sign_end_date}}</td>
<td>{{sign_up}}</i></td>
<td class="active-td1">{{category}}</td>
<td class="active-td2">{{act_start_date}} ~ <br /> {{act_end_date}}</td>
<td class="active-td3">{{title}}</td>
<td class="active-td4">{{sign_start_date}} ~ <br /> {{sign_end_date}}</td>
<td class="active-td5">{{sign_up}}</i></td>
</tr>
</tbody>
</table>
{{pagination_goes_here}}
{{pagination_goes_here}}
<style>
.active-index{
border: 1px solid #d5d5d5;
th{
background: #fffde1;
min-width: 6em;
}
}
.active-td5{
a{
font-size: 1em;
font-weight: 400;
border-radius: 2px;
padding: 5px;
background-color: #DF5925;
color: #fff;
letter-spacing: 1px;
display: inline-block;
box-sizing: border-box;
text-align: center;
text-transform: uppercase;
-webkit-transition: all 200ms;
width: 110px;
}
}
.active-td3{
a{
border-bottom: 1px dashed #9b9b9b;
padding-bottom: 2px;
color: #366A39;
}
}
</style>