Projet

Général

Profil

0001-portal-agent-add-weight-to-link-list-intertitles-296.patch

Frédéric Péters, 14 janvier 2019 15:58

Télécharger (1,41 ko)

Voir les différences:

Subject: [PATCH] portal agent: add weight to link list intertitles (#29655)

+ category icon on backoffice submission intertitles
 data/themes/gadjo/static/css/agent-portal.scss | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)
data/themes/gadjo/static/css/agent-portal.scss
1
$primary-color: #386ede;
2
$secondary-color: #00d6eb;
3

  
1 4
$cell-entry-color: #333;
2 5
$cell-entry-border-color: #ccc;
3 6
$cell-entry-hover-color: $cell-entry-color;
......
162 165

  
163 166
			> h4 { // group titles
164 167
				margin: 0;
165
				font-size: 100%;
168
				font-size: 110%;
166 169
				font-weight: normal;
170
				color: $primary-color;
171
				font-weight: bold;
167 172
				padding: 1rem;
173
				border-bottom: 1px solid $primary-color;
168 174
			}
169 175
			> a {
170 176
				display: block;
......
191 197
	}
192 198
}
193 199

  
200
div.backofficesubmissioncell div.links-list h4 {
201
	background: url(/static/css/icons/categories.small.386ede.png) 5px center no-repeat;
202
	padding-left: 35px;
203
}
204

  
194 205
/* support foldable cells */
195 206
div.cell {
196 207
	&.foldable {
197
-