Projet

Général

Profil

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

Frédéric Péters, 25 mai 2016 10:49

Télécharger (1,24 ko)

Voir les différences:

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

 wcs/qommon/static/css/dc2/admin.css | 23 +++++++++++++++++++++++
 1 file changed, 23 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
	padding-left: 3ex;
1191
}
1192

  
1193
div.ComputedExpressionWidget div.content::before {
1194
	font-family: FontAwesome;
1195
	content: "\f1b2";
1196
	position: absolute;
1197
	top: 1px;
1198
	left: 1px;
1199
	background: #bbb;
1200
	height: calc(100% - 2px);
1201
	line-height: 2.5em;
1202
	box-sizing: border-box;
1203
	border: 1px solid transparent;
1204
	padding: 0 3px;
1205
}
1206

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