Skip to content

Commit 80ac2a9

Browse files
committed
fix styles for budget components
1 parent db7edb0 commit 80ac2a9

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

app/budget/budget.css

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
top: 115px;
1212
left: 200px;
1313
width: calc(100% - 200px);
14+
z-index: 10;
1415
}
1516

1617
.budget-view__menu--collapsed {

app/budget/directives/budgetCosts/addInstructorCost/addInstructorCost.css

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.add-instructor-cost__row {
2+
height: 100%;
3+
}
4+
15
.add-instructor-cost__none-assigned {
26
font-style: italic;
37
color: #b1b1b1;

app/budget/directives/budgetCosts/addInstructorCost/addInstructorCost.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<tr>
1+
<tr class="add-instructor-cost__row">
22
<!-- Instructor of record -->
33
<td class="instructor-costs__table-cell" ng-class="{ 'instructor-costs-row__divider' : divider }" ng-show="!isLiveData && !isBudgetRequest">
44
<div class="budget-costs__label">

app/budget/directives/budgetCosts/courseCostsRow/courseCostsRow.css

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
}
66

77
.course-costs__table-cell-sequence {
8+
height: 100%;
89
padding-left: 20px;
910
}
1011

app/budget/directives/modals/addExpenseItem/addExpenseItem.css

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
.add-expense-item .dropdown-menu {
2525
width: 325px;
26+
height: 20vh;
27+
overflow-y: auto;
2628
}
2729

2830
.add-expense-item .type-item {

0 commit comments

Comments
 (0)