Projet

Général

Profil

0001-scss-move-pk-budget-table-declaration-to-library-fil.patch

Frédéric Péters, 19 juin 2020 14:52

Télécharger (1,27 ko)

Voir les différences:

Subject: [PATCH] scss: move pk-budget-table declaration to library file
 (#44272)

 static/includes/_library.scss | 14 ++++++++++++++
 static/includes/_misc.scss    | 14 --------------
 2 files changed, 14 insertions(+), 14 deletions(-)
static/includes/_library.scss
102 102
		font-weight: bold;
103 103
	}
104 104
}
105

  
106
.pk-budget-table,
107
.budget-table {
108
	table {
109
		width: 100%;
110
	}
111
	th {
112
		text-align: left;
113
		font-weight: normal;
114
	}
115
	tbody td:last-child {
116
		width: 30%;
117
	}
118
}
static/includes/_misc.scss
695 695
	}
696 696
}
697 697

  
698
.pk-budget-table,
699
.budget-table {
700
	table {
701
		width: 100%;
702
	}
703
	th {
704
		text-align: left;
705
		font-weight: normal;
706
	}
707
	tbody td:last-child {
708
		width: 30%;
709
	}
710
}
711

  
712 698
#fc-linking {
713 699
	padding: 0 1rem;
714 700
	&.no-account {
715
-