Projet

Général

Profil

0001-css-style-for-link-button-in-section-titles-47901.patch

Frédéric Péters, 20 octobre 2020 19:56

Télécharger (1,01 ko)

Voir les différences:

Subject: [PATCH] css: style for link/button in section titles (#47901)

 gadjo/static/css/gadjo.scss | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
gadjo/static/css/gadjo.scss
1187 1187
		background: $primary-color;
1188 1188
		background: linear-gradient(to right, $primary-color 30%, $secondary-color 100%);
1189 1189
		color: white;
1190
		a {
1190
		a:not(.button) {
1191 1191
			color: white;
1192 1192
			border-bottom: 1px dotted white;
1193 1193
			&:hover {
1194 1194
				border-style: solid;
1195 1195
			}
1196 1196
		}
1197
		display: flex;
1198
		align-items: baseline;
1199
		justify-content: space-between;
1200
		a.button {
1201
			margin: 0;
1202
			line-height: 100%;
1203
			font-weight: normal;
1204
		}
1197 1205
	}
1198 1206
	> div, > dl {
1199 1207
		padding: 1rem;
1200
-