Projet

Général

Profil

0001-style-adjust-color-of-links-on-blue-backgrounds-2881.patch

Frédéric Péters, 10 décembre 2018 13:28

Télécharger (848 octets)

Voir les différences:

Subject: [PATCH] 	style: adjust color of links on blue backgrounds
 (#28815)

 gadjo/static/css/gadjo.scss | 7 +++++++
 1 file changed, 7 insertions(+)
gadjo/static/css/gadjo.scss
1087 1087
		background: $primary-color;
1088 1088
		background: linear-gradient(to right, $primary-color 30%, $secondary-color 100%);
1089 1089
		color: white;
1090
		a {
1091
			color: white;
1092
			border-bottom: 1px dotted white;
1093
			&:hover {
1094
				border-style: solid;
1095
			}
1096
		}
1090 1097
	}
1091 1098
	> div, > dl {
1092 1099
		padding: 1rem;
1093
-