Projet

Général

Profil

0001-scss-style-the-remove-buttons-from-drafts-cell.patch

Frédéric Péters, 19 février 2016 17:10

Télécharger (1,14 ko)

Voir les différences:

Subject: [PATCH] scss: style the remove buttons from drafts cell

 static/includes/_cells.scss | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
static/includes/_cells.scss
147 147
	font-size: 90%;
148 148
}
149 149

  
150
div.wcscurrentdraftscell li {
151
	position: relative;
152
}
153

  
154
div#content div.wcscurrentdraftscell button.remove-draft {
155
	color: $button-background;
156
	text-indent: -10000px;
157
	position: absolute;
158
	right: 0;
159
	top: 0;
160
	width: 4ex;
161
	margin: 0;
162
	background: transparent;
163
	height: 100%;
164
	box-shadow: none;
165
	padding: 0;
166
}
167

  
168
div.wcscurrentdraftscell button.remove-draft::before {
169
	font-family: FontAwesome;
170
	content: "\f057";
171
	display: block;
172
	left: 0;
173
	right: 0;
174
	position: absolute;
175
	text-indent: 0;
176
}
177

  
150 178
div.wcs-tracking-code-input form {
151 179
	margin: 1em;
152 180
}
153
-