Projet

Général

Profil

0001-scss-give-card-data-same-style-as-profile-data-49581.patch

Frédéric Péters, 17 décembre 2020 16:53

Télécharger (1,1 ko)

Voir les différences:

Subject: [PATCH] scss: give card data same style as profile data (#49581)

 static/includes/_misc.scss | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)
static/includes/_misc.scss
145 145
	}
146 146
}
147 147

  
148
#profile span.label {
149
	color: lighten($font-color, 20%);
150
	font-size: 90%;
151
	display: block;
148
div.card,
149
#profile {
150
	span.label {
151
		color: lighten($font-color, 20%);
152
		font-size: 90%;
153
		display: block;
154
	}
155

  
156
	.value {
157
		display: block;
158
		margin-left: 0;
159
		margin-bottom: 0.7em;
160
		span.nodata {
161
			font-style: italic;
162
		}
163
	}
152 164
}
153 165

  
154
#profile div.value {
155
	margin-left: 0;
156
	margin-bottom: 0.7em;
157
	span.nodata {
158
		font-style: italic;
166
div.card {
167
	p {
168
		margin-top: 0;
169
		margin-bottom: 0;
159 170
	}
160 171
}
161 172

  
162
-