Files
thinkyu/報到系統/Content/ClassesList.css
T
sryang 577060bc78 chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
2026-09-10 09:42:37 +08:00

55 lines
1.3 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* ========================================
* 活動管理頁面 - 特有樣式
*
* 共同樣式已移至 Site.css
* - 搜尋面板相關 (.search-row, .search-field-inline, .search-label-inline, .search-input)
* - 自動完成 (.autocomplete-field, .autocomplete-container, .autocomplete-dropdown, .autocomplete-item)
* - 表單 (.form-group, .form-group-inline, .form-label-inline, .form-control, .form-row, .form-col-50, .form-col-100)
* - 複選框 (.checkbox-group, .checkbox-label)
* - 模板相關 (.btn-template, .template-buttons, .template-preview)
* - 錯誤訊息 (.error-message)
* ======================================== */
/* 搜尋標籤寬度 */
.search-field-inline.w-2 {
grid-column: span 2;
}
.search-field-inline.w-3 {
grid-column: span 3;
}
.search-field-inline.w-4 {
grid-column: span 4;
}
.search-field-inline.w-5 {
grid-column: span 5;
}
.search-field-inline.w-6 {
grid-column: span 6;
}
/* 搜尋提示文字 */
.search-hint {
display: flex;
align-items: center;
font-size: 13px;
color: #666;
margin-right: auto;
padding-right: 20px;
}
/* 結果表格專案欄位 */
.project-cell {
max-width: 200px;
word-wrap: break-word;
word-break: break-all;
white-space: normal;
}
/* 彈窗高度特定設定 */
.activity-container .modal-dialog {
height: 500px;
}