Projet

Général

Profil

0001-scss-underline-links-on-hover-by-default-40406.patch

Frédéric Péters, 04 mars 2020 14:36

Télécharger (2 ko)

Voir les différences:

Subject: [PATCH] scss: underline links on hover by default (#40406)

 static/includes/_cells.scss   | 2 ++
 static/includes/_forms.scss   | 1 +
 static/includes/_general.scss | 3 +++
 static/toodego/_tiles.scss    | 3 +++
 4 files changed, 9 insertions(+)
static/includes/_cells.scss
167 167
		position: relative;
168 168

  
169 169
		&:hover {
170
			text-decoration: none;
170 171
			color: $cell-entry-hover-color;
171 172
			@if $cell-entry-hover-effect != none {
172 173
				&:after {
......
733 734
			color: text-color($footer-background);
734 735
			padding: 0.5rem 1rem;
735 736
			&:hover {
737
				text-decoration: underline;
736 738
				background: none;
737 739
				&::after {
738 740
					content: none;
static/includes/_forms.scss
117 117
		box-shadow: 0px 0px 5px #777;
118 118
		background: $button-hover-background;
119 119
		color: $button-hover-color;
120
		text-decoration: none;
120 121
	}
121 122

  
122 123
	&:disabled {
static/includes/_general.scss
19 19
a {
20 20
	color: $link-color;
21 21
	text-decoration: none;
22
	&:hover {
23
		text-decoration: underline;
24
	}
22 25
}
23 26

  
24 27
a > img {
static/toodego/_tiles.scss
149 149
		outline: 2px solid $red;
150 150
		outline-offset: 1px;
151 151
	}
152
	&:hover {
153
		text-decoration: none;
154
	}
152 155
}
153 156

  
154 157
.dashboard-cell-icons {
155
-