345 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			345 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* 角色管理页面样式 */
 | 
						|
.roles-container {
 | 
						|
    padding: 20px;
 | 
						|
    background-color: #fff;
 | 
						|
    border-radius: 8px;
 | 
						|
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 | 
						|
}
 | 
						|
 | 
						|
/* 页面标题 */
 | 
						|
.page-header {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: center;
 | 
						|
    margin-bottom: 25px;
 | 
						|
    padding-bottom: 15px;
 | 
						|
    border-bottom: 1px solid #f0f0f0;
 | 
						|
}
 | 
						|
 | 
						|
.page-header h1 {
 | 
						|
    font-size: 1.8rem;
 | 
						|
    color: #333;
 | 
						|
    margin: 0;
 | 
						|
}
 | 
						|
 | 
						|
.page-header .actions {
 | 
						|
    display: flex;
 | 
						|
    gap: 10px;
 | 
						|
}
 | 
						|
 | 
						|
/* 角色列表 */
 | 
						|
.role-list {
 | 
						|
    display: grid;
 | 
						|
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
 | 
						|
    gap: 20px;
 | 
						|
    margin-bottom: 30px;
 | 
						|
}
 | 
						|
 | 
						|
/* 角色卡片 */
 | 
						|
.role-card {
 | 
						|
    background-color: #f9f9fb;
 | 
						|
    border-radius: 8px;
 | 
						|
    padding: 20px;
 | 
						|
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 | 
						|
    transition: transform 0.2s ease, box-shadow 0.2s ease;
 | 
						|
}
 | 
						|
 | 
						|
.role-card:hover {
 | 
						|
    transform: translateY(-5px);
 | 
						|
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 | 
						|
}
 | 
						|
 | 
						|
.role-header {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: flex-start;
 | 
						|
    margin-bottom: 15px;
 | 
						|
}
 | 
						|
 | 
						|
.role-name {
 | 
						|
    font-size: 1.3rem;
 | 
						|
    color: #333;
 | 
						|
    margin: 0;
 | 
						|
    font-weight: 600;
 | 
						|
}
 | 
						|
 | 
						|
.role-actions {
 | 
						|
    display: flex;
 | 
						|
    gap: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.role-actions .btn {
 | 
						|
    padding: 5px 8px;
 | 
						|
    color: #6c757d;
 | 
						|
    background: none;
 | 
						|
    border: none;
 | 
						|
}
 | 
						|
 | 
						|
.role-actions .btn:hover {
 | 
						|
    color: #4c84ff;
 | 
						|
}
 | 
						|
 | 
						|
.role-actions .btn-delete-role:hover {
 | 
						|
    color: #dc3545;
 | 
						|
}
 | 
						|
 | 
						|
.role-description {
 | 
						|
    color: #555;
 | 
						|
    margin-bottom: 20px;
 | 
						|
    min-height: 50px;
 | 
						|
    line-height: 1.5;
 | 
						|
}
 | 
						|
 | 
						|
.role-stats {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: center;
 | 
						|
    font-size: 0.9rem;
 | 
						|
    color: #6c757d;
 | 
						|
}
 | 
						|
 | 
						|
.stat-item {
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
    gap: 5px;
 | 
						|
}
 | 
						|
 | 
						|
.stat-item i {
 | 
						|
    color: #4c84ff;
 | 
						|
}
 | 
						|
 | 
						|
/* 角色标签 */
 | 
						|
.role-badge {
 | 
						|
    display: inline-block;
 | 
						|
    padding: 5px 12px;
 | 
						|
    border-radius: 20px;
 | 
						|
    font-size: 0.85rem;
 | 
						|
    font-weight: 500;
 | 
						|
}
 | 
						|
 | 
						|
.role-badge.admin {
 | 
						|
    background-color: #e3f2fd;
 | 
						|
    color: #1976d2;
 | 
						|
}
 | 
						|
 | 
						|
.role-badge.user {
 | 
						|
    background-color: #e8f5e9;
 | 
						|
    color: #43a047;
 | 
						|
}
 | 
						|
 | 
						|
.role-badge.custom {
 | 
						|
    background-color: #fff3e0;
 | 
						|
    color: #ef6c00;
 | 
						|
}
 | 
						|
 | 
						|
/* 无数据提示 */
 | 
						|
.no-data-message {
 | 
						|
    grid-column: 1 / -1;
 | 
						|
    display: flex;
 | 
						|
    flex-direction: column;
 | 
						|
    align-items: center;
 | 
						|
    justify-content: center;
 | 
						|
    padding: 50px 0;
 | 
						|
    color: #6c757d;
 | 
						|
}
 | 
						|
 | 
						|
.no-data-message i {
 | 
						|
    font-size: 3rem;
 | 
						|
    margin-bottom: 15px;
 | 
						|
    opacity: 0.5;
 | 
						|
}
 | 
						|
 | 
						|
/* 权限信息部分 */
 | 
						|
.permissions-info {
 | 
						|
    margin-top: 30px;
 | 
						|
}
 | 
						|
 | 
						|
.permissions-info h3 {
 | 
						|
    font-size: 1.4rem;
 | 
						|
    margin-bottom: 15px;
 | 
						|
    color: #333;
 | 
						|
}
 | 
						|
 | 
						|
.permission-table {
 | 
						|
    width: 100%;
 | 
						|
    margin-bottom: 0;
 | 
						|
}
 | 
						|
 | 
						|
.permission-table th {
 | 
						|
    background-color: #f8f9fa;
 | 
						|
    font-weight: 600;
 | 
						|
}
 | 
						|
 | 
						|
.permission-table td, .permission-table th {
 | 
						|
    padding: 12px 15px;
 | 
						|
    text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
.permission-table td:first-child {
 | 
						|
    text-align: left;
 | 
						|
    font-weight: 500;
 | 
						|
}
 | 
						|
 | 
						|
.text-success {
 | 
						|
    color: #28a745;
 | 
						|
}
 | 
						|
 | 
						|
.text-danger {
 | 
						|
    color: #dc3545;
 | 
						|
}
 | 
						|
 | 
						|
/* 模态框样式 */
 | 
						|
.modal-header {
 | 
						|
    background-color: #f8f9fa;
 | 
						|
    border-bottom: 1px solid #f0f0f0;
 | 
						|
}
 | 
						|
 | 
						|
.modal-title {
 | 
						|
    font-weight: 600;
 | 
						|
    color: #333;
 | 
						|
}
 | 
						|
 | 
						|
.modal-footer {
 | 
						|
    border-top: 1px solid #f0f0f0;
 | 
						|
    padding: 15px;
 | 
						|
}
 | 
						|
 | 
						|
/* 表单样式 */
 | 
						|
.form-group {
 | 
						|
    margin-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
.form-group label {
 | 
						|
    font-weight: 500;
 | 
						|
    margin-bottom: 8px;
 | 
						|
    color: #333;
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.form-control {
 | 
						|
    height: auto;
 | 
						|
    padding: 10px 15px;
 | 
						|
    border: 1px solid #ddd;
 | 
						|
    border-radius: 4px;
 | 
						|
    font-size: 0.95rem;
 | 
						|
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 | 
						|
}
 | 
						|
 | 
						|
.form-control:focus {
 | 
						|
    border-color: #4c84ff;
 | 
						|
    box-shadow: 0 0 0 0.2rem rgba(76, 132, 255, 0.25);
 | 
						|
}
 | 
						|
 | 
						|
/* 响应式调整 */
 | 
						|
@media (max-width: 992px) {
 | 
						|
    .role-list {
 | 
						|
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: 576px) {
 | 
						|
    .role-list {
 | 
						|
        grid-template-columns: 1fr;
 | 
						|
    }
 | 
						|
 | 
						|
    .page-header {
 | 
						|
        flex-direction: column;
 | 
						|
        align-items: flex-start;
 | 
						|
    }
 | 
						|
 | 
						|
    .page-header .actions {
 | 
						|
        margin-top: 15px;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/* 权限选择部分样式 */
 | 
						|
.permissions-container {
 | 
						|
    max-height: 350px;
 | 
						|
    overflow-y: auto;
 | 
						|
    border: 1px solid #e9ecef;
 | 
						|
    border-radius: 4px;
 | 
						|
    padding: 15px;
 | 
						|
    background-color: #f8f9fa;
 | 
						|
}
 | 
						|
 | 
						|
.permission-group {
 | 
						|
    margin-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
.permission-group:last-child {
 | 
						|
    margin-bottom: 0;
 | 
						|
}
 | 
						|
 | 
						|
.permission-group-title {
 | 
						|
    font-weight: 600;
 | 
						|
    color: #495057;
 | 
						|
    margin-bottom: 10px;
 | 
						|
    padding-bottom: 5px;
 | 
						|
    border-bottom: 1px solid #dee2e6;
 | 
						|
}
 | 
						|
 | 
						|
.permission-items {
 | 
						|
    display: grid;
 | 
						|
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
 | 
						|
    gap: 10px;
 | 
						|
}
 | 
						|
 | 
						|
.permission-item {
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
}
 | 
						|
 | 
						|
.permission-checkbox {
 | 
						|
    margin-right: 8px;
 | 
						|
}
 | 
						|
 | 
						|
.permission-name {
 | 
						|
    font-weight: 500;
 | 
						|
    margin-bottom: 5px;
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.permission-description {
 | 
						|
    font-size: 0.85rem;
 | 
						|
    color: #6c757d;
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.loading-permissions {
 | 
						|
    grid-column: 1 / -1;
 | 
						|
    text-align: center;
 | 
						|
    padding: 20px;
 | 
						|
    color: #6c757d;
 | 
						|
}
 | 
						|
 | 
						|
/* 将模态框调整为大一点 */
 | 
						|
.modal-lg {
 | 
						|
    max-width: 800px;
 | 
						|
}
 | 
						|
 | 
						|
/* 权限项样式 */
 | 
						|
.permission-item {
 | 
						|
    position: relative;
 | 
						|
    padding: 8px 12px;
 | 
						|
    border-radius: 4px;
 | 
						|
    transition: background-color 0.2s;
 | 
						|
}
 | 
						|
 | 
						|
.permission-item:hover {
 | 
						|
    background-color: #e9ecef;
 | 
						|
}
 | 
						|
 | 
						|
.permission-item label {
 | 
						|
    display: flex;
 | 
						|
    flex-direction: column;
 | 
						|
    cursor: pointer;
 | 
						|
    margin-bottom: 0;
 | 
						|
    padding-left: 25px;
 | 
						|
}
 | 
						|
 | 
						|
.permission-item input[type="checkbox"] {
 | 
						|
    position: absolute;
 | 
						|
    left: 12px;
 | 
						|
    top: 12px;
 | 
						|
}
 |