Projet

Général

Profil

0001-scss-distinguish-titles-of-disabled-sections-47902.patch

Serghei Mihai (congés, retour 15/05), 20 octobre 2020 20:22

Télécharger (906 octets)

Voir les différences:

Subject: [PATCH] scss: distinguish titles of disabled sections (#47902)

 gadjo/static/css/gadjo.scss | 10 ++++++++++
 1 file changed, 10 insertions(+)
gadjo/static/css/gadjo.scss
1188 1188
				border-style: solid;
1189 1189
			}
1190 1190
		}
1191
		&.disabled {
1192
			background: #ccc;;
1193
			background: linear-gradient(to right, #666 30%, #bbb 100%);
1194
		}
1191 1195
	}
1192 1196
	> div, > dl {
1193 1197
		padding: 1rem;
......
1227 1231
			}
1228 1232
		}
1229 1233
	}
1234
	&.disabled {
1235
		> h2, > h3 {
1236
			background: #ccc;;
1237
			background: linear-gradient(to right, #666 30%, #bbb 100%);
1238
		}
1239
	}
1230 1240
}
1231 1241

  
1232 1242
.varname {
1233
-