Projet

Général

Profil

0001-css-prefix-expression-field-with-a-particular-icon-1.patch

Frédéric Péters, 25 mai 2016 11:45

Télécharger (1,16 ko)

Voir les différences:

Subject: [PATCH] css: prefix expression field with a particular icon (#11042)

 wcs/qommon/static/css/dc2/admin.css | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
wcs/qommon/static/css/dc2/admin.css
1181 1181
	width: calc(100% - 1em);
1182 1182
}
1183 1183

  
1184
div.ComputedExpressionWidget div.content {
1185
	position: relative;
1186
}
1187

  
1188
div.ComputedExpressionWidget div.content input,
1189
div.ComputedExpressionWidget div.content input:focus {
1190
	border-left-width: 3ex;
1191
}
1192

  
1193
div.ComputedExpressionWidget div.content::before {
1194
	font-family: FontAwesome;
1195
	content: "\f1b2";
1196
	position: absolute;
1197
	bottom: 8px;
1198
	left: 6px;
1199
	box-sizing: border-box;
1200
	border: 1px solid transparent;
1201
}
1202

  
1184 1203
div.admin-permissions thead th {
1185 1204
	transform: rotate(-45deg);
1186 1205
	transform-origin: 10% 0;
1187
-