Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Styling #595

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/components/DisplayTable.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-container fluid>
<!-- User Interface controls -->
<v-row>
<v-row class="mt-n16">
<slot name="create"></slot>
<v-row v-if="showFilter" id="filter">
<v-col lg="8" class="px-0 float-left"></v-col>
<v-col sm="12" lg="4" class="my-1 table-filter p-0">
<v-col sm="12" lg="4" class="my-1 pr-3 table-filter p-0">
<v-row>
<v-col cols="12">
<v-form>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/AlgorithmRules.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="algorithm-rules">
<h3>Algorithm Rules</h3>
<h3 class="ml-3 mt-5">Algorithm Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="optional-graduation-program-rules">
<h3>Optional Program Rules</h3>
<h3 class="ml-3 mt-5">Optional Program Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Optional Programs</h3>
<h3 class="ml-3 mt-5">Optional Programs</h3>
<DisplayTable
v-bind:items="graduationOptionalPrograms"
v-bind:fields="graduationOptionalProgramsFields"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="graduation-program-rules">
<h3>Program Rules</h3>
<h3 class="ml-3 mt-5">Program Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="transcript-message">
<h3>Transcript Messaging</h3>
<h3 class="ml-3 mt-5">Transcript Messaging</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/GraduationPrograms.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="graduation-programs">
<h3>Programs</h3>
<h3 class="ml-3 mt-5">Programs</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/LetterGrades.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Letter Grades</h3>
<h3 class="ml-3 mt-5">Letter Grades</h3>
<DisplayTable
v-bind:items="letterGrades"
v-bind:filterOn="toFilterItem"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Programs/RequirementTypes.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<h3>Requirement Type Codes</h3>
<p>
<h3 class="ml-3 mt-5">Requirement Type Codes</h3>
<p class="ml-3">
Requirement type codes support how the algorithm runs program rules and
optional program rules.
</p>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/SpecialCases.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Assessment Special Case Codes</h3>
<h3 class="ml-3 mt-5">Assessment Special Case Codes</h3>
<DisplayTable
v-bind:items="specialCases"
v-bind:filterOn="toFilterItem"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/Courses.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
></DisplayTable>
</v-window-item>
<v-window-item value="courseRestrictionsTab">
<v-card-text>
<v-card-text class="mt-12">
<DisplayTable
title="Course restrictions"
v-bind:items="courseRestrictions"
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/Login.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<v-container class="d-flex justify-center">
<v-row>
<v-spacer />
<v-col cols="12" md="4" lg="4">
<v-card class="pt-3 pb-4">
<v-card-title>
Expand All @@ -17,6 +18,7 @@
</v-card-actions>
</v-card>
</v-col>
<v-spacer />
</v-row>
</v-container>
</template>
Expand Down
Loading